diff options
author | Nicolas Lœuillet <nicolas.loeuillet@gmail.com> | 2013-08-05 10:32:15 +0200 |
---|---|---|
committer | Nicolas Lœuillet <nicolas.loeuillet@gmail.com> | 2013-08-05 10:32:15 +0200 |
commit | 7f959169b7220b4ed3e083cb2a545fe2c5400f9c (patch) | |
tree | 8b095a693b2ab306d6b83b46de1936ff88e9a350 /inc/poche/Poche.class.php | |
parent | e4ed594d8246ba5877b86e61f7f85c1b3010f62c (diff) | |
download | wallabag-7f959169b7220b4ed3e083cb2a545fe2c5400f9c.tar.gz wallabag-7f959169b7220b4ed3e083cb2a545fe2c5400f9c.tar.zst wallabag-7f959169b7220b4ed3e083cb2a545fe2c5400f9c.zip |
copy of poche.sqlite
Diffstat (limited to 'inc/poche/Poche.class.php')
-rw-r--r-- | inc/poche/Poche.class.php | 29 |
1 files changed, 18 insertions, 11 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index 0d37e3c2..12cb1b42 100644 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -212,6 +212,7 @@ class Poche | |||
212 | 212 | ||
213 | private function importFromInstapaper() | 213 | private function importFromInstapaper() |
214 | { | 214 | { |
215 | # TODO gestion des articles favs | ||
215 | $html = new simple_html_dom(); | 216 | $html = new simple_html_dom(); |
216 | $html->load_file('./instapaper-export.html'); | 217 | $html->load_file('./instapaper-export.html'); |
217 | 218 | ||
@@ -229,9 +230,8 @@ class Poche | |||
229 | $this->store->archiveById($last_id); | 230 | $this->store->archiveById($last_id); |
230 | } | 231 | } |
231 | } | 232 | } |
232 | # Instapaper génère un fichier HTML avec deux <ol> | 233 | |
233 | # Le premier concerne les éléments non lus | 234 | # the second <ol> is for read links |
234 | # Le second concerne les éléments archivés | ||
235 | $read = 1; | 235 | $read = 1; |
236 | } | 236 | } |
237 | Tools::logm('import from instapaper completed'); | 237 | Tools::logm('import from instapaper completed'); |
@@ -240,6 +240,7 @@ class Poche | |||
240 | 240 | ||
241 | private function importFromPocket() | 241 | private function importFromPocket() |
242 | { | 242 | { |
243 | # TODO gestion des articles favs | ||
243 | $html = new simple_html_dom(); | 244 | $html = new simple_html_dom(); |
244 | $html->load_file('./ril_export.html'); | 245 | $html->load_file('./ril_export.html'); |
245 | 246 | ||
@@ -257,9 +258,8 @@ class Poche | |||
257 | $this->store->archiveById($last_id); | 258 | $this->store->archiveById($last_id); |
258 | } | 259 | } |
259 | } | 260 | } |
260 | # Pocket génère un fichier HTML avec deux <ul> | 261 | |
261 | # Le premier concerne les éléments non lus | 262 | # the second <ul> is for read links |
262 | # Le second concerne les éléments archivés | ||
263 | $read = 1; | 263 | $read = 1; |
264 | } | 264 | } |
265 | Tools::logm('import from pocket completed'); | 265 | Tools::logm('import from pocket completed'); |
@@ -268,17 +268,24 @@ class Poche | |||
268 | 268 | ||
269 | private function importFromReadability() | 269 | private function importFromReadability() |
270 | { | 270 | { |
271 | # TODO finaliser tout ça ici | 271 | # TODO gestion des articles lus / favs |
272 | # noms des variables + gestion des articles lus | ||
273 | $str_data = file_get_contents("./readability"); | 272 | $str_data = file_get_contents("./readability"); |
274 | $data = json_decode($str_data,true); | 273 | $data = json_decode($str_data,true); |
275 | 274 | ||
276 | foreach ($data as $key => $value) { | 275 | foreach ($data as $key => $value) { |
277 | $url = ''; | 276 | $url = ''; |
278 | foreach ($value as $key2 => $value2) { | 277 | foreach ($value as $attr => $attr_value) { |
279 | if ($key2 == 'article__url') { | 278 | if ($attr == 'article__url') { |
280 | $url = new Url(base64_encode($value2)); | 279 | $url = new Url(base64_encode($attr_value)); |
281 | } | 280 | } |
281 | // if ($attr_value == 'favorite' && $attr_value == 'true') { | ||
282 | // $last_id = $this->store->getLastId(); | ||
283 | // $this->store->favoriteById($last_id); | ||
284 | // } | ||
285 | // if ($attr_value == 'archive' && $attr_value == 'true') { | ||
286 | // $last_id = $this->store->getLastId(); | ||
287 | // $this->store->archiveById($last_id); | ||
288 | // } | ||
282 | } | 289 | } |
283 | if ($url->isCorrect()) | 290 | if ($url->isCorrect()) |
284 | $this->action('add', $url); | 291 | $this->action('add', $url); |