X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FImportBundle%2FImport%2FWallabagV1Import.php;h=9ea698f969fc5b52d931e317b5f64eb4ba0d5364;hb=c10fcb3bbbd4ef14edd9a862ee18c895d92e30ae;hp=6f8feaf36b2924c0bc2ea717103bfa59689ef5d7;hpb=78833672469f7beb0c4a195aa0a76f7ca4133057;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php index 6f8feaf3..9ea698f9 100644 --- a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php +++ b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php @@ -8,20 +8,24 @@ use Doctrine\ORM\EntityManager; use Wallabag\CoreBundle\Entity\Entry; use Wallabag\UserBundle\Entity\User; use Wallabag\CoreBundle\Tools\Utils; +use Wallabag\CoreBundle\Helper\ContentProxy; class WallabagV1Import implements ImportInterface { - private $user; - private $em; - private $logger; - private $skippedEntries = 0; - private $importedEntries = 0; - private $filepath; - - public function __construct(EntityManager $em) + protected $user; + protected $em; + protected $logger; + protected $contentProxy; + protected $skippedEntries = 0; + protected $importedEntries = 0; + protected $filepath; + protected $markAsRead; + + public function __construct(EntityManager $em, ContentProxy $contentProxy) { $this->em = $em; $this->logger = new NullLogger(); + $this->contentProxy = $contentProxy; } public function setLogger(LoggerInterface $logger) @@ -72,13 +76,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; } @@ -117,13 +121,29 @@ class WallabagV1Import implements ImportInterface return $this; } + /** + * Set whether articles must be all marked as read. + * + * @param bool $markAsRead + */ + public function setMarkAsRead($markAsRead) + { + var_dump($markAsRead); + $this->markAsRead = $markAsRead; + + return $this; + } + /** * @param $entries */ - private function parseEntries($entries) + protected function parseEntries($entries) { $i = 1; + //Untitled in all languages from v1. This should never have been translated + $untitled = array('Untitled', 'Sans titre', 'podle nadpisu', 'Sin título', 'با عنوان', 'per titolo', 'Sem título', 'Без названия', 'po naslovu', 'Без назви', 'No title found', ''); + foreach ($entries as $importedEntry) { $existingEntry = $this->em ->getRepository('WallabagCoreBundle:Entry') @@ -137,12 +157,25 @@ class WallabagV1Import implements ImportInterface // @see ContentProxy->updateEntry $entry = new Entry($this->user); $entry->setUrl($importedEntry['url']); - $entry->setTitle($importedEntry['title']); - $entry->setArchived($importedEntry['is_read']); + + if (in_array($importedEntry['title'], $untitled)) { + $entry = $this->contentProxy->updateEntry($entry, $importedEntry['url']); + } else { + $entry->setContent($importedEntry['content']); + $entry->setTitle($importedEntry['title']); + $entry->setReadingTime(Utils::getReadingTime($importedEntry['content'])); + $entry->setDomainName(parse_url($importedEntry['url'], PHP_URL_HOST)); + } + + if (array_key_exists('tags', $importedEntry) && $importedEntry['tags'] != '') { + $this->contentProxy->assignTagsToEntry( + $entry, + $importedEntry['tags'] + ); + } + + $entry->setArchived($importedEntry['is_read'] || $this->markAsRead); $entry->setStarred($importedEntry['is_fav']); - $entry->setContent($importedEntry['content']); - $entry->setReadingTime(Utils::getReadingTime($importedEntry['content'])); - $entry->setDomainName(parse_url($importedEntry['url'], PHP_URL_HOST)); $this->em->persist($entry); ++$this->importedEntries;