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

70 lines
1.4 KiB
PHP
Raw Normal View History

2015-12-30 12:26:30 +00:00
<?php
namespace Wallabag\ImportBundle\Import;
class WallabagV1Import extends WallabagImport
2015-12-30 12:26:30 +00:00
{
/**
* {@inheritdoc}
*/
public function getName()
{
2016-01-05 21:38:09 +00:00
return 'wallabag v1';
2015-12-30 12:26:30 +00:00
}
/**
* {@inheritdoc}
*/
public function getUrl()
{
return 'import_wallabag_v1';
}
2015-12-30 12:26:30 +00:00
/**
* {@inheritdoc}
*/
public function getDescription()
{
return 'import.wallabag_v1.description';
2015-12-30 12:26:30 +00:00
}
/**
* {@inheritdoc}
*/
2016-09-04 19:49:21 +00:00
protected function prepareEntry($entry = [])
{
$data = [
'title' => $entry['title'],
'html' => $entry['content'],
'url' => $entry['url'],
'content_type' => '',
'language' => '',
2016-09-04 19:49:21 +00:00
'is_archived' => $entry['is_read'] || $this->markAsRead,
'is_starred' => $entry['is_fav'],
'tags' => '',
2015-12-30 12:26:30 +00:00
];
// force content to be refreshed in case on bad fetch in the v1 installation
if (in_array($entry['title'], $this->untitled)) {
$data['title'] = '';
$data['html'] = '';
}
if (array_key_exists('tags', $entry) && $entry['tags'] != '') {
$data['tags'] = $entry['tags'];
2015-12-30 12:26:30 +00:00
}
return $data;
2015-12-30 12:26:30 +00:00
}
2016-09-04 19:49:21 +00:00
2016-09-05 05:50:10 +00:00
/**
* {@inheritdoc}
*/
protected function setEntryAsRead(array $importedEntry)
2016-09-04 19:49:21 +00:00
{
2016-09-05 05:50:10 +00:00
$importedEntry['is_read'] = 1;
2016-09-04 19:49:21 +00:00
2016-09-05 05:50:10 +00:00
return $importedEntry;
2016-09-04 19:49:21 +00:00
}
2015-12-30 12:26:30 +00:00
}