X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FImportBundle%2FImport%2FWallabagV1Import.php;h=0dac6203e6b0d0aacbd3354b1d075933afd8d13d;hb=85ad629a3ca209907effd75f5fd7f384f42361bc;hp=393089d63f1e6f6c4ad3ff9d305ad44b575498a0;hpb=b88cf91fc8371194df78e690983c61ea94f266cd;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php index 393089d6..0dac6203 100644 --- a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php +++ b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php @@ -11,12 +11,12 @@ use Wallabag\CoreBundle\Tools\Utils; class WallabagV1Import implements ImportInterface { - private $user; - private $em; - private $logger; - private $skippedEntries = 0; - private $importedEntries = 0; - private $filepath; + protected $user; + protected $em; + protected $logger; + protected $skippedEntries = 0; + protected $importedEntries = 0; + protected $filepath; public function __construct(EntityManager $em) { @@ -72,13 +72,13 @@ class WallabagV1Import implements ImportInterface public function import() { if (!$this->user) { - $this->logger->error('WallabagV1Import: user is not defined'); + $this->logger->error('WallabagImport: user is not defined'); return false; } if (!file_exists($this->filepath) || !is_readable($this->filepath)) { - $this->logger->error('WallabagV1Import: unable to read file', array('filepath' => $this->filepath)); + $this->logger->error('WallabagImport: unable to read file', array('filepath' => $this->filepath)); return false; } @@ -120,14 +120,14 @@ class WallabagV1Import implements ImportInterface /** * @param $entries */ - private function parseEntries($entries) + protected function parseEntries($entries) { $i = 1; foreach ($entries as $importedEntry) { $existingEntry = $this->em ->getRepository('WallabagCoreBundle:Entry') - ->existByUrlAndUserId($importedEntry['url'], $this->user->getId()); + ->findByUrlAndUserId($importedEntry['url'], $this->user->getId()); if (false !== $existingEntry) { ++$this->skippedEntries;