]>
Commit | Line | Data |
---|---|---|
b1d05721 JB |
1 | <?php |
2 | ||
3 | namespace Wallabag\ImportBundle\Import; | |
4 | ||
b787a775 | 5 | class WallabagV1Import extends WallabagImport |
b1d05721 | 6 | { |
b1d05721 JB |
7 | /** |
8 | * {@inheritdoc} | |
9 | */ | |
10 | public function getName() | |
11 | { | |
d1af8ad4 | 12 | return 'wallabag v1'; |
b1d05721 JB |
13 | } |
14 | ||
7019c7cf JB |
15 | /** |
16 | * {@inheritdoc} | |
17 | */ | |
18 | public function getUrl() | |
19 | { | |
20 | return 'import_wallabag_v1'; | |
21 | } | |
22 | ||
b1d05721 JB |
23 | /** |
24 | * {@inheritdoc} | |
25 | */ | |
26 | public function getDescription() | |
27 | { | |
0d42217e | 28 | return 'import.wallabag_v1.description'; |
b1d05721 JB |
29 | } |
30 | ||
31 | /** | |
32 | * {@inheritdoc} | |
33 | */ | |
c98db1b6 | 34 | protected function prepareEntry($entry = []) |
b787a775 JB |
35 | { |
36 | $data = [ | |
37 | 'title' => $entry['title'], | |
38 | 'html' => $entry['content'], | |
39 | 'url' => $entry['url'], | |
40 | 'content_type' => '', | |
41 | 'language' => '', | |
c98db1b6 | 42 | 'is_archived' => $entry['is_read'] || $this->markAsRead, |
b787a775 JB |
43 | 'is_starred' => $entry['is_fav'], |
44 | 'tags' => '', | |
6d65c0a8 | 45 | 'created_at' => '', |
b1d05721 | 46 | ]; |
b1d05721 | 47 | |
b787a775 JB |
48 | // force content to be refreshed in case on bad fetch in the v1 installation |
49 | if (in_array($entry['title'], $this->untitled)) { | |
50 | $data['title'] = ''; | |
51 | $data['html'] = ''; | |
52 | } | |
7019c7cf | 53 | |
b787a775 JB |
54 | if (array_key_exists('tags', $entry) && $entry['tags'] != '') { |
55 | $data['tags'] = $entry['tags']; | |
b1d05721 JB |
56 | } |
57 | ||
b787a775 | 58 | return $data; |
b1d05721 | 59 | } |
c98db1b6 | 60 | |
3849a9f3 JB |
61 | /** |
62 | * {@inheritdoc} | |
63 | */ | |
64 | protected function setEntryAsRead(array $importedEntry) | |
c98db1b6 | 65 | { |
3849a9f3 | 66 | $importedEntry['is_read'] = 1; |
c98db1b6 | 67 | |
3849a9f3 | 68 | return $importedEntry; |
c98db1b6 | 69 | } |
b1d05721 | 70 | } |