wallabag/src/Import/FirefoxImport.php

52 lines
1 KiB
PHP
Raw Permalink Normal View History

<?php
2024-02-19 00:30:12 +00:00
namespace Wallabag\Import;
class FirefoxImport extends BrowserImport
{
protected $filepath;
public function getName()
{
return 'Firefox';
}
public function getUrl()
{
return 'import_firefox';
}
public function getDescription()
{
return 'import.firefox.description';
}
public function validateEntry(array $importedEntry)
{
if (empty($importedEntry['uri'])) {
return false;
}
return true;
}
protected function prepareEntry(array $entry = [])
{
$data = [
'title' => $entry['title'],
'html' => false,
'url' => $entry['uri'],
'is_archived' => (int) $this->markAsRead,
'is_starred' => false,
'tags' => '',
'created_at' => substr($entry['dateAdded'], 0, 10),
];
2019-02-11 10:50:24 +00:00
if (\array_key_exists('tags', $entry) && '' !== $entry['tags']) {
$data['tags'] = $entry['tags'];
}
return $data;
}
}