Files
wallabag/src/Wallabag/ImportBundle/Import/WallabagV1Import.php

81 lines
1.9 KiB
PHP
Raw Normal View History

2015-12-30 13:26:30 +01:00
<?php
namespace Wallabag\ImportBundle\Import;
class WallabagV1Import extends WallabagImport
2015-12-30 13:26:30 +01:00
{
protected $fetchingErrorMessage;
protected $fetchingErrorMessageTitle;
public function __construct($em, $contentProxy, $eventDispatcher, $fetchingErrorMessageTitle, $fetchingErrorMessage)
{
$this->fetchingErrorMessageTitle = $fetchingErrorMessageTitle;
$this->fetchingErrorMessage = $fetchingErrorMessage;
parent::__construct($em, $contentProxy, $eventDispatcher);
}
2015-12-30 13:26:30 +01:00
/**
* {@inheritdoc}
*/
public function getName()
{
2016-01-05 22:38:09 +01:00
return 'wallabag v1';
2015-12-30 13:26:30 +01:00
}
/**
* {@inheritdoc}
*/
public function getUrl()
{
return 'import_wallabag_v1';
}
2015-12-30 13:26:30 +01:00
/**
* {@inheritdoc}
*/
public function getDescription()
{
return 'import.wallabag_v1.description';
2015-12-30 13:26:30 +01:00
}
/**
* {@inheritdoc}
*/
2016-09-04 21:49:21 +02:00
protected function prepareEntry($entry = [])
{
$data = [
'title' => $entry['title'],
'html' => $entry['content'],
'url' => $entry['url'],
2016-09-04 21:49:21 +02:00
'is_archived' => $entry['is_read'] || $this->markAsRead,
'is_starred' => $entry['is_fav'],
'tags' => '',
'created_at' => '',
2015-12-30 13:26:30 +01:00
];
// 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)) {
$data['title'] = $this->fetchingErrorMessageTitle;
$data['html'] = $this->fetchingErrorMessage;
}
if (array_key_exists('tags', $entry) && $entry['tags'] != '') {
$data['tags'] = $entry['tags'];
2015-12-30 13:26:30 +01:00
}
return $data;
2015-12-30 13:26:30 +01:00
}
2016-09-04 21:49:21 +02:00
2016-09-05 07:50:10 +02:00
/**
* {@inheritdoc}
*/
protected function setEntryAsRead(array $importedEntry)
2016-09-04 21:49:21 +02:00
{
2016-09-05 07:50:10 +02:00
$importedEntry['is_read'] = 1;
2016-09-04 21:49:21 +02:00
2016-09-05 07:50:10 +02:00
return $importedEntry;
2016-09-04 21:49:21 +02:00
}
2015-12-30 13:26:30 +01:00
}