2016-01-20 13:37:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Wallabag\ImportBundle\Import;
|
|
|
|
|
|
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
|
|
|
|
|
|
|
class WallabagV2Import extends WallabagV1Import implements ImportInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getName()
|
|
|
|
{
|
|
|
|
return 'wallabag v2';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getUrl()
|
|
|
|
{
|
|
|
|
return 'import_wallabag_v2';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getDescription()
|
|
|
|
{
|
2016-03-09 07:59:08 +00:00
|
|
|
return 'import.wallabag_v2.description';
|
2016-01-20 13:37:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $entries
|
|
|
|
*/
|
|
|
|
protected function parseEntries($entries)
|
|
|
|
{
|
|
|
|
$i = 1;
|
|
|
|
|
|
|
|
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']);
|
|
|
|
$entry->setTitle($importedEntry['title']);
|
2016-02-12 14:59:13 +00:00
|
|
|
$entry->setArchived($importedEntry['is_archived'] || $this->markAsRead);
|
2016-01-20 13:37:01 +00:00
|
|
|
$entry->setStarred($importedEntry['is_starred']);
|
|
|
|
$entry->setContent($importedEntry['content']);
|
|
|
|
$entry->setReadingTime($importedEntry['reading_time']);
|
|
|
|
$entry->setDomainName($importedEntry['domain_name']);
|
2016-02-05 12:50:16 +00:00
|
|
|
if (isset($importedEntry['mimetype'])) {
|
|
|
|
$entry->setMimetype($importedEntry['mimetype']);
|
|
|
|
}
|
|
|
|
if (isset($importedEntry['language'])) {
|
|
|
|
$entry->setLanguage($importedEntry['language']);
|
|
|
|
}
|
|
|
|
if (isset($importedEntry['preview_picture'])) {
|
|
|
|
$entry->setPreviewPicture($importedEntry['preview_picture']);
|
|
|
|
}
|
2016-01-20 13:37:01 +00:00
|
|
|
|
|
|
|
$this->em->persist($entry);
|
|
|
|
++$this->importedEntries;
|
|
|
|
|
|
|
|
// flush every 20 entries
|
|
|
|
if (($i % 20) === 0) {
|
|
|
|
$this->em->flush();
|
|
|
|
}
|
|
|
|
++$i;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->em->flush();
|
|
|
|
}
|
|
|
|
}
|