1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-10 18:51:02 +00:00
wallabag/src/Import/FirefoxImport.php

52 lines
1 KiB
PHP
Raw Normal View History

<?php
2024-02-19 01:30:12 +01: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' => '',
2025-04-05 14:01:48 +02:00
'created_at' => substr((string) $entry['dateAdded'], 0, 10),
];
2019-02-11 11:50:24 +01:00
if (\array_key_exists('tags', $entry) && '' !== $entry['tags']) {
$data['tags'] = $entry['tags'];
}
return $data;
}
}