]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ImportBundle/Import/ChromeImport.php
cs & fixes
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Import / ChromeImport.php
1 <?php
2
3 namespace Wallabag\ImportBundle\Import;
4
5 class ChromeImport extends BrowserImport
6 {
7 protected $filepath;
8
9 /**
10 * {@inheritdoc}
11 */
12 public function getName()
13 {
14 return 'Chrome';
15 }
16
17 /**
18 * {@inheritdoc}
19 */
20 public function getUrl()
21 {
22 return 'import_chrome';
23 }
24
25 /**
26 * {@inheritdoc}
27 */
28 public function getDescription()
29 {
30 return 'import.chrome.description';
31 }
32
33 /**
34 * {@inheritdoc}
35 */
36 protected function prepareEntry($entry = [])
37 {
38 $data = [
39 'title' => $entry['name'],
40 'html' => '',
41 'url' => $entry['url'],
42 'is_archived' => $this->markAsRead,
43 'tags' => '',
44 'created_at' => $entry['date_added'],
45 ];
46
47 if (array_key_exists('tags', $entry) && $entry['tags'] != '') {
48 $data['tags'] = $entry['tags'];
49 }
50
51 return $data;
52 }
53
54 /**
55 * {@inheritdoc}
56 */
57 protected function setEntryAsRead(array $importedEntry)
58 {
59 $importedEntry['is_archived'] = 1;
60
61 return $importedEntry;
62 }
63 }