2013-04-17 10:35:50 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* poche, a read it later open source system
|
|
|
|
*
|
|
|
|
* @category poche
|
|
|
|
* @author Nicolas Lœuillet <support@inthepoche.com>
|
|
|
|
* @copyright 2013
|
|
|
|
* @license http://www.wtfpl.net/ see COPYING file
|
|
|
|
*/
|
|
|
|
|
|
|
|
set_time_limit(0);
|
|
|
|
|
|
|
|
include dirname(__FILE__).'/inc/config.php';
|
|
|
|
include dirname(__FILE__).'/inc/simple_html_dom.php';
|
|
|
|
|
|
|
|
if (!isset($_GET['start'])) {
|
|
|
|
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>';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$html = new simple_html_dom();
|
|
|
|
$html->load_file('ril_export.html');
|
|
|
|
|
|
|
|
$read = '0';
|
|
|
|
$errors = array();
|
|
|
|
foreach($html->find('ul') as $ul)
|
|
|
|
{
|
|
|
|
foreach($ul->find('li') as $li)
|
|
|
|
{
|
|
|
|
$a = $li->find('a');
|
|
|
|
$url = $a[0]->href;
|
2013-04-18 08:25:15 +02:00
|
|
|
|
|
|
|
|
2013-04-18 10:15:46 +02:00
|
|
|
action_to_do('add', $url, $token);
|
2013-04-17 10:35:50 +02:00
|
|
|
}
|
|
|
|
# Pocket génère un fichier HTML avec deux <ul>
|
|
|
|
# Le premier concerne les éléments non lus
|
|
|
|
# Le second concerne les éléments archivés
|
|
|
|
$read = '-1';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo 'Import from Pocket completed. <a href="index.php">Welcome to #poche !</a>';
|
2013-04-17 13:38:12 +02:00
|
|
|
logm('import from pocket completed');
|
2013-04-17 10:35:50 +02:00
|
|
|
}
|