]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - import.php
72e3eac7696974177e765211d3aadfee25c5c282
3 * poche, a read it later open source system
6 * @author Nicolas Lœuillet <support@inthepoche.com>
8 * @license http://www.wtfpl.net/ see COPYING file
13 include dirname(__FILE__
).'/inc/config.php';
14 include dirname(__FILE__
).'/inc/simple_html_dom.php';
16 if (!isset($_GET['start'])) {
17 echo 'Please execute the import script locally, it can take a very long time. <br /><a href="import.php?start">Bye bye Pocket, let\'s go !</a>';
20 $html = new simple_html_dom();
21 $html->load_file('ril_export.html');
25 foreach($html->find('ul') as $ul)
27 foreach($ul->find('li') as $li)
33 action_to_do('add', $url);
35 $last_id = $db->getHandle()->lastInsertId();
36 $sql_update = "UPDATE entries SET is_read=~is_read WHERE id=?";
37 $params_update = array($last_id);
38 $query_update = $db->getHandle()->prepare($sql_update);
39 $query_update->execute($params_update);
42 # Pocket génère un fichier HTML avec deux <ul>
43 # Le premier concerne les éléments non lus
44 # Le second concerne les éléments archivés
48 echo 'Import from Pocket completed. <a href="index.php">Welcome to #poche !</a>';
49 logm('import from pocket completed');