X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FImportBundle%2FImport%2FWallabagV1Import.php;h=b9bb525ab5f20422f388370fe1b44b8bca9d228c;hb=2a1ceb67b4400f46f4d3067e887ff54aa906f0a2;hp=1d773d3bb58e2094ac057c490121c5dc9883479d;hpb=fe8b37c137adbe036f58616c15dbcffd07dd2cd4;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php index 1d773d3b..b9bb525a 100644 --- a/src/Wallabag/ImportBundle/Import/WallabagV1Import.php +++ b/src/Wallabag/ImportBundle/Import/WallabagV1Import.php @@ -2,48 +2,17 @@ namespace Wallabag\ImportBundle\Import; -use Psr\Log\LoggerInterface; -use Psr\Log\NullLogger; -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 +class WallabagV1Import extends WallabagImport { - protected $user; - protected $em; - protected $logger; - protected $contentProxy; - protected $skippedEntries = 0; - protected $importedEntries = 0; - protected $filepath; - protected $markAsRead; + protected $fetchingErrorMessage; + protected $fetchingErrorMessageTitle; - public function __construct(EntityManager $em, ContentProxy $contentProxy) + public function __construct($em, $contentProxy, $tagsAssigner, $eventDispatcher, $fetchingErrorMessageTitle, $fetchingErrorMessage) { - $this->em = $em; - $this->logger = new NullLogger(); - $this->contentProxy = $contentProxy; - } + $this->fetchingErrorMessageTitle = $fetchingErrorMessageTitle; + $this->fetchingErrorMessage = $fetchingErrorMessage; - public function setLogger(LoggerInterface $logger) - { - $this->logger = $logger; - } - - /** - * We define the user in a custom call because on the import command there is no logged in user. - * So we can't retrieve user from the `security.token_storage` service. - * - * @param User $user - */ - public function setUser(User $user) - { - $this->user = $user; - - return $this; + parent::__construct($em, $contentProxy, $tagsAssigner, $eventDispatcher); } /** @@ -67,125 +36,45 @@ class WallabagV1Import implements ImportInterface */ public function getDescription() { - return 'This importer will import all your wallabag v1 articles. On your config page, click on "JSON export" in the "Export your wallabag data" section. You will have a "wallabag-export-1-xxxx-xx-xx.json" file.'; + return 'import.wallabag_v1.description'; } /** * {@inheritdoc} */ - public function import() + protected function prepareEntry($entry = []) { - if (!$this->user) { - $this->logger->error('WallabagImport: user is not defined'); - - return false; - } - - if (!file_exists($this->filepath) || !is_readable($this->filepath)) { - $this->logger->error('WallabagImport: unable to read file', array('filepath' => $this->filepath)); + $data = [ + 'title' => $entry['title'], + 'html' => $entry['content'], + 'url' => $entry['url'], + 'is_archived' => $entry['is_read'] || $this->markAsRead, + 'is_starred' => $entry['is_fav'], + 'tags' => '', + 'created_at' => '', + ]; - return false; + // In case of a bad fetch in v1, replace title and content with v2 error strings + // If fetching fails again, they will get this instead of the v1 strings + if (\in_array($entry['title'], $this->untitled, true)) { + $data['title'] = $this->fetchingErrorMessageTitle; + $data['html'] = $this->fetchingErrorMessage; } - $data = json_decode(file_get_contents($this->filepath), true); - - if (empty($data)) { - return false; + if (array_key_exists('tags', $entry) && '' !== $entry['tags']) { + $data['tags'] = $entry['tags']; } - $this->parseEntries($data); - - return true; + return $data; } /** * {@inheritdoc} */ - public function getSummary() + protected function setEntryAsRead(array $importedEntry) { - return [ - 'skipped' => $this->skippedEntries, - 'imported' => $this->importedEntries, - ]; - } - - /** - * Set file path to the json file. - * - * @param string $filepath - */ - public function setFilepath($filepath) - { - $this->filepath = $filepath; - - return $this; - } - - /** - * Set whether articles must be all marked as read. - * - * @param bool $markAsRead - */ - public function setMarkAsRead($markAsRead) - { - $this->markAsRead = $markAsRead; - - return $this; - } - - /** - * @param $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') - ->findByUrlAndUserId($importedEntry['url'], $this->user->getId()); - - if (false !== $existingEntry) { - ++$this->skippedEntries; - continue; - } - - // @see ContentProxy->updateEntry - $entry = new Entry($this->user); - $entry->setUrl($importedEntry['url']); - - 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']); - - $this->em->persist($entry); - ++$this->importedEntries; - - // flush every 20 entries - if (($i % 20) === 0) { - $this->em->flush(); - } - ++$i; - } + $importedEntry['is_read'] = 1; - $this->em->flush(); + return $importedEntry; } }