]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/Poche.class.php
bug fix #278: mysql collation not UTF8
[github/wallabag/wallabag.git] / inc / poche / Poche.class.php
CommitLineData
eb1af592
NL
1<?php
2/**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas Lœuillet <support@inthepoche.com>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11class Poche
12{
00dbaf90
NL
13 public static $canRenderTemplates = true;
14 public static $configFileAvailable = true;
15
7ce7ec4c 16 public $user;
eb1af592
NL
17 public $store;
18 public $tpl;
55821e04 19 public $messages;
6a361945 20 public $pagination;
00dbaf90
NL
21
22 private $currentTheme = '';
5011388f 23 private $currentLanguage = '';
9d3b88b3 24 private $notInstalledMessage = array();
00dbaf90
NL
25
26 # @todo make this dynamic (actually install themes and save them in the database including author information et cetera)
27 private $installedThemes = array(
28 'default' => array('requires' => array()),
29 'dark' => array('requires' => array('default')),
30 'dmagenta' => array('requires' => array('default')),
31 'solarized' => array('requires' => array('default')),
32 'solarized-dark' => array('requires' => array('default'))
33 );
eb1af592 34
00dbaf90 35 public function __construct()
eb1af592 36 {
9d3b88b3
NL
37 if ($this->configFileIsAvailable()) {
38 $this->init();
00dbaf90
NL
39 }
40
9d3b88b3
NL
41 if ($this->themeIsInstalled()) {
42 $this->initTpl();
00dbaf90
NL
43 }
44
9d3b88b3
NL
45 if ($this->systemIsInstalled()) {
46 $this->store = new Database();
47 $this->messages = new Messages();
48 # installation
49 if (! $this->store->isInstalled()) {
50 $this->install();
51 }
eb1af592 52 }
eb1af592 53 }
00dbaf90
NL
54
55 private function init()
56 {
57 Tools::initPhp();
58 Session::$sessionName = 'poche';
59 Session::init();
eb1af592 60
00dbaf90
NL
61 if (isset($_SESSION['poche_user']) && $_SESSION['poche_user'] != array()) {
62 $this->user = $_SESSION['poche_user'];
63 } else {
64 # fake user, just for install & login screens
65 $this->user = new User();
66 $this->user->setConfig($this->getDefaultConfig());
67 }
68
69 # l10n
70 $language = $this->user->getConfigValue('language');
71 putenv('LC_ALL=' . $language);
72 setlocale(LC_ALL, $language);
73 bindtextdomain($language, LOCALE);
74 textdomain($language);
75
76 # Pagination
77 $this->pagination = new Paginator($this->user->getConfigValue('pager'), 'p');
78
79 # Set up theme
80 $themeDirectory = $this->user->getConfigValue('theme');
81
82 if ($themeDirectory === false) {
83 $themeDirectory = DEFAULT_THEME;
84 }
85
86 $this->currentTheme = $themeDirectory;
5011388f
NL
87
88 # Set up language
89 $languageDirectory = $this->user->getConfigValue('language');
90
91 if ($languageDirectory === false) {
92 $languageDirectory = DEFAULT_THEME;
93 }
94
95 $this->currentLanguage = $languageDirectory;
00dbaf90
NL
96 }
97
98 public function configFileIsAvailable() {
99 if (! self::$configFileAvailable) {
9d3b88b3 100 $this->notInstalledMessage[] = 'You have to rename inc/poche/config.inc.php.new to inc/poche/config.inc.php.';
00dbaf90
NL
101
102 return false;
103 }
104
105 return true;
106 }
107
108 public function themeIsInstalled() {
9d3b88b3 109 $passTheme = TRUE;
00dbaf90
NL
110 # Twig is an absolute requirement for Poche to function. Abort immediately if the Composer installer hasn't been run yet
111 if (! self::$canRenderTemplates) {
9d3b88b3
NL
112 $this->notInstalledMessage[] = 'Twig does not seem to be installed. Please initialize the Composer installation to automatically fetch dependencies. Have a look at <a href="http://doc.inthepoche.com/doku.php?id=users:begin:install">the documentation.</a>';
113 $passTheme = FALSE;
00dbaf90 114 }
7f17a38d
NL
115
116 if (! is_writable(CACHE)) {
9d3b88b3 117 $this->notInstalledMessage[] = 'You don\'t have write access on cache directory.';
7f17a38d
NL
118
119 self::$canRenderTemplates = false;
120
9d3b88b3 121 $passTheme = FALSE;
7f17a38d 122 }
00dbaf90
NL
123
124 # Check if the selected theme and its requirements are present
9d3b88b3
NL
125 if ($this->getTheme() != '' && ! is_dir(THEME . '/' . $this->getTheme())) {
126 $this->notInstalledMessage[] = 'The currently selected theme (' . $this->getTheme() . ') does not seem to be properly installed (Missing directory: ' . THEME . '/' . $this->getTheme() . ')';
00dbaf90
NL
127
128 self::$canRenderTemplates = false;
129
9d3b88b3 130 $passTheme = FALSE;
00dbaf90
NL
131 }
132
133 foreach ($this->installedThemes[$this->getTheme()]['requires'] as $requiredTheme) {
134 if (! is_dir(THEME . '/' . $requiredTheme)) {
9d3b88b3 135 $this->notInstalledMessage[] = 'The required "' . $requiredTheme . '" theme is missing for the current theme (' . $this->getTheme() . ')';
00dbaf90
NL
136
137 self::$canRenderTemplates = false;
138
9d3b88b3 139 $passTheme = FALSE;
00dbaf90
NL
140 }
141 }
9d3b88b3
NL
142
143 if (!$passTheme) {
144 return FALSE;
145 }
146
00dbaf90
NL
147
148 return true;
149 }
150
4a291288
NL
151 /**
152 * all checks before installation.
00dbaf90 153 * @todo move HTML to template
4a291288
NL
154 * @return boolean
155 */
00dbaf90 156 public function systemIsInstalled()
eb1af592 157 {
9d3b88b3 158 $msg = TRUE;
00dbaf90
NL
159
160 $configSalt = defined('SALT') ? constant('SALT') : '';
161
162 if (empty($configSalt)) {
9d3b88b3
NL
163 $this->notInstalledMessage[] = 'You have not yet filled in the SALT value in the config.inc.php file.';
164 $msg = FALSE;
165 }
166 if (STORAGE == 'sqlite' && ! file_exists(STORAGE_SQLITE)) {
00dbaf90 167 Tools::logm('sqlite file doesn\'t exist');
9d3b88b3
NL
168 $this->notInstalledMessage[] = 'sqlite file doesn\'t exist, you can find it in install folder. Copy it in /db folder.';
169 $msg = FALSE;
170 }
171 if (is_dir(ROOT . '/install') && ! DEBUG_POCHE) {
172 $this->notInstalledMessage[] = 'you have to delete the /install folder before using poche.';
173 $msg = FALSE;
174 }
175 if (STORAGE == 'sqlite' && ! is_writable(STORAGE_SQLITE)) {
bb5a7d9e 176 Tools::logm('you don\'t have write access on sqlite file');
9d3b88b3
NL
177 $this->notInstalledMessage[] = 'You don\'t have write access on sqlite file.';
178 $msg = FALSE;
bb5a7d9e 179 }
00dbaf90 180
9d3b88b3 181 if (! $msg) {
00dbaf90 182 return false;
8d3275be 183 }
7ce7ec4c 184
00dbaf90
NL
185 return true;
186 }
187
188 public function getNotInstalledMessage() {
189 return $this->notInstalledMessage;
4a291288 190 }
eb1af592 191
4a291288
NL
192 private function initTpl()
193 {
00dbaf90
NL
194 $loaderChain = new Twig_Loader_Chain();
195
196 # add the current theme as first to the loader chain so Twig will look there first for overridden template files
197 try {
198 $loaderChain->addLoader(new Twig_Loader_Filesystem(THEME . '/' . $this->getTheme()));
199 } catch (Twig_Error_Loader $e) {
200 # @todo isInstalled() should catch this, inject Twig later
201 die('The currently selected theme (' . $this->getTheme() . ') does not seem to be properly installed (' . THEME . '/' . $this->getTheme() .' is missing)');
202 }
203
204 # add all required themes to the loader chain
205 foreach ($this->installedThemes[$this->getTheme()]['requires'] as $requiredTheme) {
206 try {
207 $loaderChain->addLoader(new Twig_Loader_Filesystem(THEME . '/' . DEFAULT_THEME));
208 } catch (Twig_Error_Loader $e) {
209 # @todo isInstalled() should catch this, inject Twig later
210 die('The required "' . $requiredTheme . '" theme is missing for the current theme (' . $this->getTheme() . ')');
211 }
212 }
213
bc1ee852
NL
214 if (DEBUG_POCHE) {
215 $twig_params = array();
00dbaf90 216 } else {
bc1ee852
NL
217 $twig_params = array('cache' => CACHE);
218 }
00dbaf90
NL
219
220 $this->tpl = new Twig_Environment($loaderChain, $twig_params);
eb1af592 221 $this->tpl->addExtension(new Twig_Extensions_Extension_I18n());
00dbaf90 222
55821e04
NL
223 # filter to display domain name of an url
224 $filter = new Twig_SimpleFilter('getDomain', 'Tools::getDomain');
225 $this->tpl->addFilter($filter);
eb1af592 226
d9178758
NL
227 # filter for reading time
228 $filter = new Twig_SimpleFilter('getReadingTime', 'Tools::getReadingTime');
229 $this->tpl->addFilter($filter);
00dbaf90
NL
230
231 # filter for simple filenames in config view
232 $filter = new Twig_SimpleFilter('getPrettyFilename', function($string) { return str_replace(ROOT, '', $string); });
233 $this->tpl->addFilter($filter);
eb1af592
NL
234 }
235
236 private function install()
237 {
238 Tools::logm('poche still not installed');
239 echo $this->tpl->render('install.twig', array(
00dbaf90
NL
240 'token' => Session::getToken(),
241 'theme' => $this->getTheme(),
242 'poche_url' => Tools::getPocheUrl()
eb1af592
NL
243 ));
244 if (isset($_GET['install'])) {
245 if (($_POST['password'] == $_POST['password_repeat'])
246 && $_POST['password'] != "" && $_POST['login'] != "") {
247 # let's rock, install poche baby !
bb5a7d9e
NL
248 if ($this->store->install($_POST['login'], Tools::encodeString($_POST['password'] . $_POST['login'])))
249 {
250 Session::logout();
251 Tools::logm('poche is now installed');
252 Tools::redirect();
253 }
6a361945
NL
254 }
255 else {
256 Tools::logm('error during installation');
eb1af592
NL
257 Tools::redirect();
258 }
259 }
260 exit();
261 }
00dbaf90
NL
262
263 public function getTheme() {
264 return $this->currentTheme;
265 }
5011388f
NL
266
267 public function getLanguage() {
268 return $this->currentLanguage;
269 }
00dbaf90
NL
270
271 public function getInstalledThemes() {
272 $handle = opendir(THEME);
273 $themes = array();
274
275 while (($theme = readdir($handle)) !== false) {
276 # Themes are stored in a directory, so all directory names are themes
277 # @todo move theme installation data to database
89812ec8 278 if (! is_dir(THEME . '/' . $theme) || in_array($theme, array('..', '.'))) {
00dbaf90
NL
279 continue;
280 }
281
282 $current = false;
283
284 if ($theme === $this->getTheme()) {
285 $current = true;
286 }
287
288 $themes[] = array('name' => $theme, 'current' => $current);
289 }
290
2287bf06 291 sort($themes);
00dbaf90
NL
292 return $themes;
293 }
eb1af592 294
5011388f
NL
295 public function getInstalledLanguages() {
296 $handle = opendir(LOCALE);
297 $languages = array();
298
299 while (($language = readdir($handle)) !== false) {
300 # Languages are stored in a directory, so all directory names are languages
301 # @todo move language installation data to database
302 if (! is_dir(LOCALE . '/' . $language) || in_array($language, array('..', '.'))) {
303 continue;
304 }
305
306 $current = false;
307
308 if ($language === $this->getLanguage()) {
309 $current = true;
310 }
311
312 $languages[] = array('name' => $language, 'current' => $current);
313 }
314
315 return $languages;
316 }
317
8d3275be 318 public function getDefaultConfig()
00dbaf90 319 {
8d3275be
NL
320 return array(
321 'pager' => PAGINATION,
322 'language' => LANG,
00dbaf90
NL
323 'theme' => DEFAULT_THEME
324 );
8d3275be
NL
325 }
326
eb1af592
NL
327 /**
328 * Call action (mark as fav, archive, delete, etc.)
329 */
b916bcfc 330 public function action($action, Url $url, $id = 0, $import = FALSE)
eb1af592
NL
331 {
332 switch ($action)
333 {
334 case 'add':
ec397236
NL
335 $content = $url->extract();
336
337 if ($this->store->add($url->getUrl(), $content['title'], $content['body'], $this->user->getId())) {
338 Tools::logm('add link ' . $url->getUrl());
339 $sequence = '';
340 if (STORAGE == 'postgres') {
341 $sequence = 'entries_id_seq';
eb1af592 342 }
ec397236
NL
343 $last_id = $this->store->getLastId($sequence);
344 if (DOWNLOAD_PICTURES) {
6fb46003 345 $content = filtre_picture($content['body'], $url->getUrl(), $last_id);
ec397236
NL
346 Tools::logm('updating content article');
347 $this->store->updateContent($last_id, $content, $this->user->getId());
348 }
349 if (!$import) {
350 $this->messages->add('s', _('the link has been added successfully'));
eb1af592
NL
351 }
352 }
353 else {
b916bcfc 354 if (!$import) {
ec397236
NL
355 $this->messages->add('e', _('error during insertion : the link wasn\'t added'));
356 Tools::logm('error during insertion : the link wasn\'t added ' . $url->getUrl());
b916bcfc
NL
357 }
358 }
ec397236 359
b916bcfc 360 if (!$import) {
ce4a1dcc 361 Tools::redirect('?view=home');
eb1af592
NL
362 }
363 break;
364 case 'delete':
bc1ee852 365 $msg = 'delete link #' . $id;
8d3275be 366 if ($this->store->deleteById($id, $this->user->getId())) {
eb1af592
NL
367 if (DOWNLOAD_PICTURES) {
368 remove_directory(ABS_PATH . $id);
369 }
6a361945 370 $this->messages->add('s', _('the link has been deleted successfully'));
eb1af592
NL
371 }
372 else {
6a361945 373 $this->messages->add('e', _('the link wasn\'t deleted'));
bc1ee852 374 $msg = 'error : can\'t delete link #' . $id;
eb1af592 375 }
bc1ee852 376 Tools::logm($msg);
6cd8af85 377 Tools::redirect();
eb1af592
NL
378 break;
379 case 'toggle_fav' :
8d3275be 380 $this->store->favoriteById($id, $this->user->getId());
eb1af592 381 Tools::logm('mark as favorite link #' . $id);
b916bcfc
NL
382 if (!$import) {
383 Tools::redirect();
384 }
eb1af592
NL
385 break;
386 case 'toggle_archive' :
8d3275be 387 $this->store->archiveById($id, $this->user->getId());
eb1af592 388 Tools::logm('archive link #' . $id);
b916bcfc
NL
389 if (!$import) {
390 Tools::redirect();
391 }
eb1af592
NL
392 break;
393 default:
394 break;
395 }
396 }
397
398 function displayView($view, $id = 0)
399 {
400 $tpl_vars = array();
401
402 switch ($view)
403 {
eb1af592 404 case 'config':
32520785
NL
405 $dev = $this->getPocheVersion('dev');
406 $prod = $this->getPocheVersion('prod');
031df528
NL
407 $compare_dev = version_compare(POCHE, $dev);
408 $compare_prod = version_compare(POCHE, $prod);
00dbaf90 409 $themes = $this->getInstalledThemes();
5011388f 410 $languages = $this->getInstalledLanguages();
df6afaf0 411 $http_auth = (isset($_SERVER['PHP_AUTH_USER']))?true:false;
32520785 412 $tpl_vars = array(
00dbaf90 413 'themes' => $themes,
5011388f 414 'languages' => $languages,
32520785
NL
415 'dev' => $dev,
416 'prod' => $prod,
417 'compare_dev' => $compare_dev,
418 'compare_prod' => $compare_prod,
df6afaf0 419 'http_auth' => $http_auth,
32520785 420 );
eb1af592
NL
421 Tools::logm('config view');
422 break;
423 case 'view':
8d3275be 424 $entry = $this->store->retrieveOneById($id, $this->user->getId());
eb1af592
NL
425 if ($entry != NULL) {
426 Tools::logm('view link #' . $id);
427 $content = $entry['content'];
428 if (function_exists('tidy_parse_string')) {
429 $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
430 $tidy->cleanRepair();
431 $content = $tidy->value;
3408ed48 432 }
a3223127 433
3408ed48
NL
434 # flattr checking
435 $flattr = new FlattrItem();
4e5b0411 436 $flattr->checkItem($entry['url'],$entry['id']);
a3223127 437
3408ed48
NL
438 $tpl_vars = array(
439 'entry' => $entry,
440 'content' => $content,
441 'flattr' => $flattr
442 );
eb1af592
NL
443 }
444 else {
d8d1542e 445 Tools::logm('error in view call : entry is null');
eb1af592
NL
446 }
447 break;
12d9cfbc 448 default: # home, favorites and archive views
8d3275be 449 $entries = $this->store->getEntriesByView($view, $this->user->getId());
eb1af592 450 $tpl_vars = array(
3eb04903
N
451 'entries' => '',
452 'page_links' => '',
7f9f5281 453 'nb_results' => '',
eb1af592 454 );
34d67c83 455
3eb04903
N
456 if (count($entries) > 0) {
457 $this->pagination->set_total(count($entries));
458 $page_links = $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . '&');
459 $datas = $this->store->getEntriesByView($view, $this->user->getId(), $this->pagination->get_limit());
460 $tpl_vars['entries'] = $datas;
461 $tpl_vars['page_links'] = $page_links;
7f9f5281 462 $tpl_vars['nb_results'] = count($entries);
3eb04903 463 }
6a361945 464 Tools::logm('display ' . $view . ' view');
eb1af592
NL
465 break;
466 }
467
468 return $tpl_vars;
469 }
c765c367 470
07ee09f4
NL
471 /**
472 * update the password of the current user.
473 * if MODE_DEMO is TRUE, the password can't be updated.
474 * @todo add the return value
475 * @todo set the new password in function header like this updatePassword($newPassword)
476 * @return boolean
477 */
c765c367
NL
478 public function updatePassword()
479 {
55821e04 480 if (MODE_DEMO) {
8d3275be 481 $this->messages->add('i', _('in demo mode, you can\'t update your password'));
55821e04 482 Tools::logm('in demo mode, you can\'t do this');
6a361945 483 Tools::redirect('?view=config');
55821e04
NL
484 }
485 else {
486 if (isset($_POST['password']) && isset($_POST['password_repeat'])) {
487 if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") {
8d3275be
NL
488 $this->messages->add('s', _('your password has been updated'));
489 $this->store->updatePassword($this->user->getId(), Tools::encodeString($_POST['password'] . $this->user->getUsername()));
c765c367 490 Session::logout();
8d3275be 491 Tools::logm('password updated');
c765c367
NL
492 Tools::redirect();
493 }
494 else {
8d3275be 495 $this->messages->add('e', _('the two fields have to be filled & the password must be the same in the two fields'));
6a361945 496 Tools::redirect('?view=config');
c765c367
NL
497 }
498 }
499 }
500 }
00dbaf90
NL
501
502 public function updateTheme()
503 {
504 # no data
505 if (empty($_POST['theme'])) {
506 }
507
508 # we are not going to change it to the current theme...
509 if ($_POST['theme'] == $this->getTheme()) {
510 $this->messages->add('w', _('still using the "' . $this->getTheme() . '" theme!'));
511 Tools::redirect('?view=config');
512 }
513
514 $themes = $this->getInstalledThemes();
515 $actualTheme = false;
516
517 foreach ($themes as $theme) {
518 if ($theme['name'] == $_POST['theme']) {
519 $actualTheme = true;
520 break;
521 }
522 }
523
524 if (! $actualTheme) {
525 $this->messages->add('e', _('that theme does not seem to be installed'));
526 Tools::redirect('?view=config');
527 }
528
529 $this->store->updateUserConfig($this->user->getId(), 'theme', $_POST['theme']);
530 $this->messages->add('s', _('you have changed your theme preferences'));
531
532 $currentConfig = $_SESSION['poche_user']->config;
533 $currentConfig['theme'] = $_POST['theme'];
534
535 $_SESSION['poche_user']->setConfig($currentConfig);
536
537 Tools::redirect('?view=config');
538 }
c765c367 539
5011388f
NL
540 public function updateLanguage()
541 {
542 # no data
543 if (empty($_POST['language'])) {
544 }
545
546 # we are not going to change it to the current language...
547 if ($_POST['language'] == $this->getLanguage()) {
548 $this->messages->add('w', _('still using the "' . $this->getLanguage() . '" language!'));
549 Tools::redirect('?view=config');
550 }
551
552 $languages = $this->getInstalledLanguages();
553 $actualLanguage = false;
554
555 foreach ($languages as $language) {
556 if ($language['name'] == $_POST['language']) {
557 $actualLanguage = true;
558 break;
559 }
560 }
561
562 if (! $actualLanguage) {
563 $this->messages->add('e', _('that language does not seem to be installed'));
564 Tools::redirect('?view=config');
565 }
566
567 $this->store->updateUserConfig($this->user->getId(), 'language', $_POST['language']);
568 $this->messages->add('s', _('you have changed your language preferences'));
569
570 $currentConfig = $_SESSION['poche_user']->config;
571 $currentConfig['language'] = $_POST['language'];
572
573 $_SESSION['poche_user']->setConfig($currentConfig);
574
575 Tools::redirect('?view=config');
576 }
577
df6afaf0
DS
578 /**
579 * get credentials from differents sources
580 * it redirects the user to the $referer link
581 * @return array
582 */
583 private function credentials() {
584 if(isset($_SERVER['PHP_AUTH_USER'])) {
585 return array($_SERVER['PHP_AUTH_USER'],'php_auth');
586 }
587 if(!empty($_POST['login']) && !empty($_POST['password'])) {
588 return array($_POST['login'],$_POST['password']);
589 }
590 return array(false,false);
591 }
592
07ee09f4
NL
593 /**
594 * checks if login & password are correct and save the user in session.
595 * it redirects the user to the $referer link
596 * @param string $referer the url to redirect after login
597 * @todo add the return value
598 * @return boolean
599 */
c765c367
NL
600 public function login($referer)
601 {
df6afaf0
DS
602 list($login,$password)=$this->credentials();
603 if($login === false || $password === false) {
604 $this->messages->add('e', _('login failed: you have to fill all fields'));
605 Tools::logm('login failed');
606 Tools::redirect();
607 }
608 if (!empty($login) && !empty($password)) {
609 $user = $this->store->login($login, Tools::encodeString($password . $login));
7ce7ec4c
NL
610 if ($user != array()) {
611 # Save login into Session
df6afaf0 612 Session::login($user['username'], $user['password'], $login, Tools::encodeString($password . $login), array('poche_user' => new User($user)));
8d3275be 613 $this->messages->add('s', _('welcome to your poche'));
8d3275be 614 Tools::logm('login successful');
c765c367
NL
615 Tools::redirect($referer);
616 }
8d3275be 617 $this->messages->add('e', _('login failed: bad login or password'));
c765c367
NL
618 Tools::logm('login failed');
619 Tools::redirect();
c765c367
NL
620 }
621 }
622
07ee09f4
NL
623 /**
624 * log out the poche user. It cleans the session.
625 * @todo add the return value
626 * @return boolean
627 */
c765c367
NL
628 public function logout()
629 {
7ce7ec4c 630 $this->user = array();
c765c367 631 Session::logout();
b916bcfc
NL
632 $this->messages->add('s', _('see you soon!'));
633 Tools::logm('logout');
c765c367
NL
634 Tools::redirect();
635 }
636
07ee09f4
NL
637 /**
638 * import from Instapaper. poche needs a ./instapaper-export.html file
639 * @todo add the return value
66b6a3b5 640 * @param string $targetFile the file used for importing
07ee09f4
NL
641 * @return boolean
642 */
66b6a3b5 643 private function importFromInstapaper($targetFile)
c765c367 644 {
7f959169 645 # TODO gestion des articles favs
a62788c6 646 $html = new simple_html_dom();
66b6a3b5 647 $html->load_file($targetFile);
b916bcfc 648 Tools::logm('starting import from instapaper');
a62788c6
NL
649
650 $read = 0;
651 $errors = array();
652 foreach($html->find('ol') as $ul)
653 {
654 foreach($ul->find('li') as $li)
655 {
656 $a = $li->find('a');
657 $url = new Url(base64_encode($a[0]->href));
b916bcfc 658 $this->action('add', $url, 0, TRUE);
a62788c6 659 if ($read == '1') {
b916bcfc
NL
660 $sequence = '';
661 if (STORAGE == 'postgres') {
662 $sequence = 'entries_id_seq';
663 }
664 $last_id = $this->store->getLastId($sequence);
665 $this->action('toggle_archive', $url, $last_id, TRUE);
a62788c6
NL
666 }
667 }
7f959169
NL
668
669 # the second <ol> is for read links
a62788c6
NL
670 $read = 1;
671 }
8d3275be 672 $this->messages->add('s', _('import from instapaper completed'));
63c35580
NL
673 Tools::logm('import from instapaper completed');
674 Tools::redirect();
675 }
c765c367 676
07ee09f4
NL
677 /**
678 * import from Pocket. poche needs a ./ril_export.html file
679 * @todo add the return value
66b6a3b5 680 * @param string $targetFile the file used for importing
07ee09f4
NL
681 * @return boolean
682 */
66b6a3b5 683 private function importFromPocket($targetFile)
63c35580 684 {
7f959169 685 # TODO gestion des articles favs
63c35580 686 $html = new simple_html_dom();
66b6a3b5 687 $html->load_file($targetFile);
b916bcfc 688 Tools::logm('starting import from pocket');
63c35580
NL
689
690 $read = 0;
691 $errors = array();
692 foreach($html->find('ul') as $ul)
693 {
694 foreach($ul->find('li') as $li)
c765c367 695 {
63c35580
NL
696 $a = $li->find('a');
697 $url = new Url(base64_encode($a[0]->href));
b916bcfc 698 $this->action('add', $url, 0, TRUE);
63c35580 699 if ($read == '1') {
b916bcfc
NL
700 $sequence = '';
701 if (STORAGE == 'postgres') {
702 $sequence = 'entries_id_seq';
703 }
704 $last_id = $this->store->getLastId($sequence);
705 $this->action('toggle_archive', $url, $last_id, TRUE);
c765c367 706 }
c765c367 707 }
7f959169
NL
708
709 # the second <ul> is for read links
63c35580 710 $read = 1;
c765c367 711 }
8d3275be 712 $this->messages->add('s', _('import from pocket completed'));
63c35580
NL
713 Tools::logm('import from pocket completed');
714 Tools::redirect();
715 }
c765c367 716
07ee09f4
NL
717 /**
718 * import from Readability. poche needs a ./readability file
719 * @todo add the return value
66b6a3b5 720 * @param string $targetFile the file used for importing
07ee09f4
NL
721 * @return boolean
722 */
66b6a3b5 723 private function importFromReadability($targetFile)
63c35580 724 {
7f959169 725 # TODO gestion des articles lus / favs
66b6a3b5 726 $str_data = file_get_contents($targetFile);
63c35580 727 $data = json_decode($str_data,true);
b916bcfc 728 Tools::logm('starting import from Readability');
c0d321c1 729 $count = 0;
63c35580 730 foreach ($data as $key => $value) {
c0d321c1
NL
731 $url = NULL;
732 $favorite = FALSE;
733 $archive = FALSE;
7f959169
NL
734 foreach ($value as $attr => $attr_value) {
735 if ($attr == 'article__url') {
736 $url = new Url(base64_encode($attr_value));
c765c367 737 }
b916bcfc
NL
738 $sequence = '';
739 if (STORAGE == 'postgres') {
740 $sequence = 'entries_id_seq';
741 }
c0d321c1
NL
742 if ($attr_value == 'true') {
743 if ($attr == 'favorite') {
744 $favorite = TRUE;
745 }
746 if ($attr == 'archive') {
747 $archive = TRUE;
748 }
749 }
750 }
751 # we can add the url
752 if (!is_null($url) && $url->isCorrect()) {
753 $this->action('add', $url, 0, TRUE);
754 $count++;
755 if ($favorite) {
756 $last_id = $this->store->getLastId($sequence);
757 $this->action('toggle_fav', $url, $last_id, TRUE);
758 }
759 if ($archive) {
b916bcfc
NL
760 $last_id = $this->store->getLastId($sequence);
761 $this->action('toggle_archive', $url, $last_id, TRUE);
762 }
c765c367 763 }
c765c367 764 }
c0d321c1 765 $this->messages->add('s', _('import from Readability completed. ' . $count . ' new links.'));
63c35580
NL
766 Tools::logm('import from Readability completed');
767 Tools::redirect();
c765c367
NL
768 }
769
07ee09f4
NL
770 /**
771 * import datas into your poche
772 * @param string $from name of the service to import : pocket, instapaper or readability
773 * @todo add the return value
774 * @return boolean
775 */
63c35580 776 public function import($from)
c765c367 777 {
66b6a3b5
E
778 $providers = array(
779 'pocket' => 'importFromPocket',
780 'readability' => 'importFromReadability',
781 'instapaper' => 'importFromInstapaper'
782 );
783
784 if (! isset($providers[$from])) {
785 $this->messages->add('e', _('Unknown import provider.'));
786 Tools::redirect();
63c35580 787 }
66b6a3b5
E
788
789 $targetDefinition = 'IMPORT_' . strtoupper($from) . '_FILE';
790 $targetFile = constant($targetDefinition);
791
792 if (! defined($targetDefinition)) {
793 $this->messages->add('e', _('Incomplete inc/poche/define.inc.php file, please define "' . $targetDefinition . '".'));
794 Tools::redirect();
63c35580 795 }
66b6a3b5
E
796
797 if (! file_exists($targetFile)) {
798 $this->messages->add('e', _('Could not find required "' . $targetFile . '" import file.'));
799 Tools::redirect();
63c35580 800 }
66b6a3b5
E
801
802 $this->$providers[$from]($targetFile);
63c35580 803 }
c765c367 804
07ee09f4
NL
805 /**
806 * export poche entries in json
807 * @return json all poche entries
808 */
63c35580
NL
809 public function export()
810 {
8d3275be 811 $entries = $this->store->retrieveAll($this->user->getId());
63c35580
NL
812 echo $this->tpl->render('export.twig', array(
813 'export' => Tools::renderJson($entries),
814 ));
815 Tools::logm('export view');
c765c367 816 }
32520785 817
07ee09f4 818 /**
a3436d4c 819 * Checks online the latest version of poche and cache it
07ee09f4
NL
820 * @param string $which 'prod' or 'dev'
821 * @return string latest $which version
822 */
32520785
NL
823 private function getPocheVersion($which = 'prod')
824 {
825 $cache_file = CACHE . '/' . $which;
a3436d4c
NL
826
827 # checks if the cached version file exists
32520785
NL
828 if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) {
829 $version = file_get_contents($cache_file);
830 } else {
bc1ee852 831 $version = file_get_contents('http://static.inthepoche.com/versions/' . $which);
32520785
NL
832 file_put_contents($cache_file, $version, LOCK_EX);
833 }
834 return $version;
835 }
df6afaf0 836}