]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/Poche.class.php
some fix to courgette theme
[github/wallabag/wallabag.git] / inc / poche / Poche.class.php
1 <?php
2 /**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11 class Poche
12 {
13 public static $canRenderTemplates = true;
14 public static $configFileAvailable = true;
15
16 public $user;
17 public $store;
18 public $tpl;
19 public $messages;
20 public $pagination;
21
22 private $currentTheme = '';
23 private $currentLanguage = '';
24 private $notInstalledMessage = array();
25
26 public function __construct()
27 {
28 if ($this->configFileIsAvailable()) {
29 $this->init();
30 }
31
32 if ($this->themeIsInstalled()) {
33 $this->initTpl();
34 }
35
36 if ($this->systemIsInstalled()) {
37 $this->store = new Database();
38 $this->messages = new Messages();
39 # installation
40 if (! $this->store->isInstalled()) {
41 $this->install();
42 }
43 $this->store->checkTags();
44 }
45 }
46
47 private function init()
48 {
49 Tools::initPhp();
50 Session::$sessionName = 'poche';
51 Session::init();
52
53 if (isset($_SESSION['poche_user']) && $_SESSION['poche_user'] != array()) {
54 $this->user = $_SESSION['poche_user'];
55 } else {
56 # fake user, just for install & login screens
57 $this->user = new User();
58 $this->user->setConfig($this->getDefaultConfig());
59 }
60
61 # l10n
62 $language = $this->user->getConfigValue('language');
63 putenv('LC_ALL=' . $language);
64 setlocale(LC_ALL, $language);
65 bindtextdomain($language, LOCALE);
66 textdomain($language);
67
68 # Pagination
69 $this->pagination = new Paginator($this->user->getConfigValue('pager'), 'p');
70
71 # Set up theme
72 $themeDirectory = $this->user->getConfigValue('theme');
73
74 if ($themeDirectory === false) {
75 $themeDirectory = DEFAULT_THEME;
76 }
77
78 $this->currentTheme = $themeDirectory;
79
80 # Set up language
81 $languageDirectory = $this->user->getConfigValue('language');
82
83 if ($languageDirectory === false) {
84 $languageDirectory = DEFAULT_THEME;
85 }
86
87 $this->currentLanguage = $languageDirectory;
88 }
89
90 public function configFileIsAvailable() {
91 if (! self::$configFileAvailable) {
92 $this->notInstalledMessage[] = 'You have to rename inc/poche/config.inc.php.new to inc/poche/config.inc.php.';
93
94 return false;
95 }
96
97 return true;
98 }
99
100 public function themeIsInstalled() {
101 $passTheme = TRUE;
102 # Twig is an absolute requirement for Poche to function. Abort immediately if the Composer installer hasn't been run yet
103 if (! self::$canRenderTemplates) {
104 $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.wallabag.org/doku.php?id=users:begin:install">the documentation.</a>';
105 $passTheme = FALSE;
106 }
107
108 if (! is_writable(CACHE)) {
109 $this->notInstalledMessage[] = 'You don\'t have write access on cache directory.';
110
111 self::$canRenderTemplates = false;
112
113 $passTheme = FALSE;
114 }
115
116 # Check if the selected theme and its requirements are present
117 $theme = $this->getTheme();
118
119 if ($theme != '' && ! is_dir(THEME . '/' . $theme)) {
120 $this->notInstalledMessage[] = 'The currently selected theme (' . $theme . ') does not seem to be properly installed (Missing directory: ' . THEME . '/' . $theme . ')';
121
122 self::$canRenderTemplates = false;
123
124 $passTheme = FALSE;
125 }
126
127 $themeInfo = $this->getThemeInfo($theme);
128 if (isset($themeInfo['requirements']) && is_array($themeInfo['requirements'])) {
129 foreach ($themeInfo['requirements'] as $requiredTheme) {
130 if (! is_dir(THEME . '/' . $requiredTheme)) {
131 $this->notInstalledMessage[] = 'The required "' . $requiredTheme . '" theme is missing for the current theme (' . $theme . ')';
132
133 self::$canRenderTemplates = false;
134
135 $passTheme = FALSE;
136 }
137 }
138 }
139
140 if (!$passTheme) {
141 return FALSE;
142 }
143
144
145 return true;
146 }
147
148 /**
149 * all checks before installation.
150 * @todo move HTML to template
151 * @return boolean
152 */
153 public function systemIsInstalled()
154 {
155 $msg = TRUE;
156
157 $configSalt = defined('SALT') ? constant('SALT') : '';
158
159 if (empty($configSalt)) {
160 $this->notInstalledMessage[] = 'You have not yet filled in the SALT value in the config.inc.php file.';
161 $msg = FALSE;
162 }
163 if (STORAGE == 'sqlite' && ! file_exists(STORAGE_SQLITE)) {
164 Tools::logm('sqlite file doesn\'t exist');
165 $this->notInstalledMessage[] = 'sqlite file doesn\'t exist, you can find it in install folder. Copy it in /db folder.';
166 $msg = FALSE;
167 }
168 if (is_dir(ROOT . '/install') && ! DEBUG_POCHE) {
169 $this->notInstalledMessage[] = 'you have to delete the /install folder before using poche.';
170 $msg = FALSE;
171 }
172 if (STORAGE == 'sqlite' && ! is_writable(STORAGE_SQLITE)) {
173 Tools::logm('you don\'t have write access on sqlite file');
174 $this->notInstalledMessage[] = 'You don\'t have write access on sqlite file.';
175 $msg = FALSE;
176 }
177
178 if (! $msg) {
179 return false;
180 }
181
182 return true;
183 }
184
185 public function getNotInstalledMessage() {
186 return $this->notInstalledMessage;
187 }
188
189 private function initTpl()
190 {
191 $loaderChain = new Twig_Loader_Chain();
192 $theme = $this->getTheme();
193
194 # add the current theme as first to the loader chain so Twig will look there first for overridden template files
195 try {
196 $loaderChain->addLoader(new Twig_Loader_Filesystem(THEME . '/' . $theme));
197 } catch (Twig_Error_Loader $e) {
198 # @todo isInstalled() should catch this, inject Twig later
199 die('The currently selected theme (' . $theme . ') does not seem to be properly installed (' . THEME . '/' . $theme .' is missing)');
200 }
201
202 # add all required themes to the loader chain
203 $themeInfo = $this->getThemeInfo($theme);
204 if (isset($themeInfo['requirements']) && is_array($themeInfo['requirements'])) {
205 foreach ($themeInfo['requirements'] as $requiredTheme) {
206 try {
207 $loaderChain->addLoader(new Twig_Loader_Filesystem(THEME . '/' . $requiredTheme));
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 (' . $theme . ')');
211 }
212 }
213 }
214
215 if (DEBUG_POCHE) {
216 $twigParams = array();
217 } else {
218 $twigParams = array('cache' => CACHE);
219 }
220
221 $this->tpl = new Twig_Environment($loaderChain, $twigParams);
222 $this->tpl->addExtension(new Twig_Extensions_Extension_I18n());
223
224 # filter to display domain name of an url
225 $filter = new Twig_SimpleFilter('getDomain', 'Tools::getDomain');
226 $this->tpl->addFilter($filter);
227
228 # filter for reading time
229 $filter = new Twig_SimpleFilter('getReadingTime', 'Tools::getReadingTime');
230 $this->tpl->addFilter($filter);
231
232 # filter for simple filenames in config view
233 $filter = new Twig_SimpleFilter('getPrettyFilename', function($string) { return str_replace(ROOT, '', $string); });
234 $this->tpl->addFilter($filter);
235 }
236
237 private function install()
238 {
239 Tools::logm('poche still not installed');
240 echo $this->tpl->render('install.twig', array(
241 'token' => Session::getToken(),
242 'theme' => $this->getTheme(),
243 'poche_url' => Tools::getPocheUrl()
244 ));
245 if (isset($_GET['install'])) {
246 if (($_POST['password'] == $_POST['password_repeat'])
247 && $_POST['password'] != "" && $_POST['login'] != "") {
248 # let's rock, install poche baby !
249 if ($this->store->install($_POST['login'], Tools::encodeString($_POST['password'] . $_POST['login'])))
250 {
251 Session::logout();
252 Tools::logm('poche is now installed');
253 Tools::redirect();
254 }
255 }
256 else {
257 Tools::logm('error during installation');
258 Tools::redirect();
259 }
260 }
261 exit();
262 }
263
264 public function getTheme() {
265 return $this->currentTheme;
266 }
267
268 /**
269 * Provides theme information by parsing theme.ini file if present in the theme's root directory.
270 * In all cases, the following data will be returned:
271 * - name: theme's name, or key if the theme is unnamed,
272 * - current: boolean informing if the theme is the current user theme.
273 *
274 * @param string $theme Theme key (directory name)
275 * @return array|boolean Theme information, or false if the theme doesn't exist.
276 */
277 public function getThemeInfo($theme) {
278 if (!is_dir(THEME . '/' . $theme)) {
279 return false;
280 }
281
282 $themeIniFile = THEME . '/' . $theme . '/theme.ini';
283 $themeInfo = array();
284
285 if (is_file($themeIniFile) && is_readable($themeIniFile)) {
286 $themeInfo = parse_ini_file($themeIniFile);
287 }
288
289 if ($themeInfo === false) {
290 $themeInfo = array();
291 }
292 if (!isset($themeInfo['name'])) {
293 $themeInfo['name'] = $theme;
294 }
295 $themeInfo['current'] = ($theme === $this->getTheme());
296
297 return $themeInfo;
298 }
299
300 public function getInstalledThemes() {
301 $handle = opendir(THEME);
302 $themes = array();
303
304 while (($theme = readdir($handle)) !== false) {
305 # Themes are stored in a directory, so all directory names are themes
306 # @todo move theme installation data to database
307 if (!is_dir(THEME . '/' . $theme) || in_array($theme, array('.', '..'))) {
308 continue;
309 }
310
311 $themes[$theme] = $this->getThemeInfo($theme);
312 }
313
314 return $themes;
315 }
316
317 public function getLanguage() {
318 return $this->currentLanguage;
319 }
320
321 public function getInstalledLanguages() {
322 $handle = opendir(LOCALE);
323 $languages = array();
324
325 while (($language = readdir($handle)) !== false) {
326 # Languages are stored in a directory, so all directory names are languages
327 # @todo move language installation data to database
328 if (! is_dir(LOCALE . '/' . $language) || in_array($language, array('..', '.'))) {
329 continue;
330 }
331
332 $current = false;
333
334 if ($language === $this->getLanguage()) {
335 $current = true;
336 }
337
338 $languages[] = array('name' => $language, 'current' => $current);
339 }
340
341 return $languages;
342 }
343
344 public function getDefaultConfig()
345 {
346 return array(
347 'pager' => PAGINATION,
348 'language' => LANG,
349 'theme' => DEFAULT_THEME
350 );
351 }
352
353 protected function getPageContent(Url $url)
354 {
355 $options = array('http' => array('user_agent' => 'poche'));
356 if (isset($_SERVER['AUTH_TYPE']) && "basic" === strtolower($_SERVER['AUTH_TYPE'])) {
357 $options['http']['header'] = sprintf(
358 "Authorization: Basic %s",
359 base64_encode(
360 sprintf('%s:%s', $_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW'])
361 )
362 );
363 }
364 $context = stream_context_create($options);
365 $json = file_get_contents(Tools::getPocheUrl() . '/inc/3rdparty/makefulltextfeed.php?url='.urlencode($url->getUrl()).'&max=5&links=preserve&exc=&format=json&submit=Create+Feed', false, $context);
366 return json_decode($json, true);
367 }
368
369 /**
370 * Call action (mark as fav, archive, delete, etc.)
371 */
372 public function action($action, Url $url, $id = 0, $import = FALSE, $autoclose = FALSE)
373 {
374 switch ($action)
375 {
376 case 'add':
377 $content = $this->getPageContent($url);
378 $title = $content['rss']['channel']['item']['title'];
379 $body = $content['rss']['channel']['item']['description'];
380
381 if ($this->store->add($url->getUrl(), $title, $body, $this->user->getId())) {
382 Tools::logm('add link ' . $url->getUrl());
383 $sequence = '';
384 if (STORAGE == 'postgres') {
385 $sequence = 'entries_id_seq';
386 }
387 $last_id = $this->store->getLastId($sequence);
388 if (DOWNLOAD_PICTURES) {
389 $content = filtre_picture($body, $url->getUrl(), $last_id);
390 Tools::logm('updating content article');
391 $this->store->updateContent($last_id, $content, $this->user->getId());
392 }
393 if (!$import) {
394 $this->messages->add('s', _('the link has been added successfully'));
395 }
396 }
397 else {
398 if (!$import) {
399 $this->messages->add('e', _('error during insertion : the link wasn\'t added'));
400 Tools::logm('error during insertion : the link wasn\'t added ' . $url->getUrl());
401 }
402 }
403
404 if (!$import) {
405 if ($autoclose == TRUE) {
406 Tools::redirect('?view=home');
407 } else {
408 Tools::redirect('?view=home&closewin=true');
409 }
410 }
411 break;
412 case 'delete':
413 $msg = 'delete link #' . $id;
414 if ($this->store->deleteById($id, $this->user->getId())) {
415 if (DOWNLOAD_PICTURES) {
416 remove_directory(ABS_PATH . $id);
417 }
418 $this->messages->add('s', _('the link has been deleted successfully'));
419 }
420 else {
421 $this->messages->add('e', _('the link wasn\'t deleted'));
422 $msg = 'error : can\'t delete link #' . $id;
423 }
424 Tools::logm($msg);
425 Tools::redirect('?');
426 break;
427 case 'toggle_fav' :
428 $this->store->favoriteById($id, $this->user->getId());
429 Tools::logm('mark as favorite link #' . $id);
430 if (!$import) {
431 Tools::redirect();
432 }
433 break;
434 case 'toggle_archive' :
435 $this->store->archiveById($id, $this->user->getId());
436 Tools::logm('archive link #' . $id);
437 if (!$import) {
438 Tools::redirect();
439 }
440 break;
441 case 'add_tag' :
442 $tags = explode(',', $_POST['value']);
443 $entry_id = $_POST['entry_id'];
444 foreach($tags as $key => $tag_value) {
445 $value = trim($tag_value);
446 $tag = $this->store->retrieveTagByValue($value);
447
448 if (is_null($tag)) {
449 # we create the tag
450 $tag = $this->store->createTag($value);
451 $sequence = '';
452 if (STORAGE == 'postgres') {
453 $sequence = 'tags_id_seq';
454 }
455 $tag_id = $this->store->getLastId($sequence);
456 }
457 else {
458 $tag_id = $tag['id'];
459 }
460
461 # we assign the tag to the article
462 $this->store->setTagToEntry($tag_id, $entry_id);
463 }
464 Tools::redirect();
465 break;
466 case 'remove_tag' :
467 $tag_id = $_GET['tag_id'];
468 $this->store->removeTagForEntry($id, $tag_id);
469 Tools::redirect();
470 break;
471 default:
472 break;
473 }
474 }
475
476 function displayView($view, $id = 0)
477 {
478 $tpl_vars = array();
479
480 switch ($view)
481 {
482 case 'config':
483 $dev = $this->getPocheVersion('dev');
484 $prod = $this->getPocheVersion('prod');
485 $compare_dev = version_compare(POCHE, $dev);
486 $compare_prod = version_compare(POCHE, $prod);
487 $themes = $this->getInstalledThemes();
488 $languages = $this->getInstalledLanguages();
489 $token = $this->user->getConfigValue('token');
490 $http_auth = (isset($_SERVER['PHP_AUTH_USER']) || isset($_SERVER['REMOTE_USER'])) ? true : false;
491 $tpl_vars = array(
492 'themes' => $themes,
493 'languages' => $languages,
494 'dev' => $dev,
495 'prod' => $prod,
496 'compare_dev' => $compare_dev,
497 'compare_prod' => $compare_prod,
498 'token' => $token,
499 'user_id' => $this->user->getId(),
500 'http_auth' => $http_auth,
501 );
502 Tools::logm('config view');
503 break;
504 case 'edit-tags':
505 # tags
506 $tags = $this->store->retrieveTagsByEntry($id);
507 $tpl_vars = array(
508 'entry_id' => $id,
509 'tags' => $tags,
510 );
511 break;
512 case 'tag':
513 $entries = $this->store->retrieveEntriesByTag($id);
514 $tag = $this->store->retrieveTag($id);
515 $tpl_vars = array(
516 'tag' => $tag,
517 'entries' => $entries,
518 );
519 break;
520 case 'tags':
521 $token = $this->user->getConfigValue('token');
522 $tags = $this->store->retrieveAllTags();
523 $tpl_vars = array(
524 'token' => $token,
525 'user_id' => $this->user->getId(),
526 'tags' => $tags,
527 );
528 break;
529 case 'view':
530 $entry = $this->store->retrieveOneById($id, $this->user->getId());
531 if ($entry != NULL) {
532 Tools::logm('view link #' . $id);
533 $content = $entry['content'];
534 if (function_exists('tidy_parse_string')) {
535 $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
536 $tidy->cleanRepair();
537 $content = $tidy->value;
538 }
539
540 # flattr checking
541 $flattr = new FlattrItem();
542 $flattr->checkItem($entry['url'], $entry['id']);
543
544 # tags
545 $tags = $this->store->retrieveTagsByEntry($entry['id']);
546
547 $tpl_vars = array(
548 'entry' => $entry,
549 'content' => $content,
550 'flattr' => $flattr,
551 'tags' => $tags
552 );
553 }
554 else {
555 Tools::logm('error in view call : entry is null');
556 }
557 break;
558 default: # home, favorites and archive views
559 $entries = $this->store->getEntriesByView($view, $this->user->getId());
560 $tpl_vars = array(
561 'entries' => '',
562 'page_links' => '',
563 'nb_results' => '',
564 );
565
566 if (count($entries) > 0) {
567 $this->pagination->set_total(count($entries));
568 $page_links = $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . '&');
569 $datas = $this->store->getEntriesByView($view, $this->user->getId(), $this->pagination->get_limit());
570 $tpl_vars['entries'] = $datas;
571 $tpl_vars['page_links'] = $page_links;
572 $tpl_vars['nb_results'] = count($entries);
573 }
574 Tools::logm('display ' . $view . ' view');
575 break;
576 }
577
578 return $tpl_vars;
579 }
580
581 /**
582 * update the password of the current user.
583 * if MODE_DEMO is TRUE, the password can't be updated.
584 * @todo add the return value
585 * @todo set the new password in function header like this updatePassword($newPassword)
586 * @return boolean
587 */
588 public function updatePassword()
589 {
590 if (MODE_DEMO) {
591 $this->messages->add('i', _('in demo mode, you can\'t update your password'));
592 Tools::logm('in demo mode, you can\'t do this');
593 Tools::redirect('?view=config');
594 }
595 else {
596 if (isset($_POST['password']) && isset($_POST['password_repeat'])) {
597 if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") {
598 $this->messages->add('s', _('your password has been updated'));
599 $this->store->updatePassword($this->user->getId(), Tools::encodeString($_POST['password'] . $this->user->getUsername()));
600 Session::logout();
601 Tools::logm('password updated');
602 Tools::redirect();
603 }
604 else {
605 $this->messages->add('e', _('the two fields have to be filled & the password must be the same in the two fields'));
606 Tools::redirect('?view=config');
607 }
608 }
609 }
610 }
611
612 public function updateTheme()
613 {
614 # no data
615 if (empty($_POST['theme'])) {
616 }
617
618 # we are not going to change it to the current theme...
619 if ($_POST['theme'] == $this->getTheme()) {
620 $this->messages->add('w', _('still using the "' . $this->getTheme() . '" theme!'));
621 Tools::redirect('?view=config');
622 }
623
624 $themes = $this->getInstalledThemes();
625 $actualTheme = false;
626
627 foreach (array_keys($themes) as $theme) {
628 if ($theme == $_POST['theme']) {
629 $actualTheme = true;
630 break;
631 }
632 }
633
634 if (! $actualTheme) {
635 $this->messages->add('e', _('that theme does not seem to be installed'));
636 Tools::redirect('?view=config');
637 }
638
639 $this->store->updateUserConfig($this->user->getId(), 'theme', $_POST['theme']);
640 $this->messages->add('s', _('you have changed your theme preferences'));
641
642 $currentConfig = $_SESSION['poche_user']->config;
643 $currentConfig['theme'] = $_POST['theme'];
644
645 $_SESSION['poche_user']->setConfig($currentConfig);
646
647 Tools::redirect('?view=config');
648 }
649
650 public function updateLanguage()
651 {
652 # no data
653 if (empty($_POST['language'])) {
654 }
655
656 # we are not going to change it to the current language...
657 if ($_POST['language'] == $this->getLanguage()) {
658 $this->messages->add('w', _('still using the "' . $this->getLanguage() . '" language!'));
659 Tools::redirect('?view=config');
660 }
661
662 $languages = $this->getInstalledLanguages();
663 $actualLanguage = false;
664
665 foreach ($languages as $language) {
666 if ($language['name'] == $_POST['language']) {
667 $actualLanguage = true;
668 break;
669 }
670 }
671
672 if (! $actualLanguage) {
673 $this->messages->add('e', _('that language does not seem to be installed'));
674 Tools::redirect('?view=config');
675 }
676
677 $this->store->updateUserConfig($this->user->getId(), 'language', $_POST['language']);
678 $this->messages->add('s', _('you have changed your language preferences'));
679
680 $currentConfig = $_SESSION['poche_user']->config;
681 $currentConfig['language'] = $_POST['language'];
682
683 $_SESSION['poche_user']->setConfig($currentConfig);
684
685 Tools::redirect('?view=config');
686 }
687
688 /**
689 * get credentials from differents sources
690 * it redirects the user to the $referer link
691 * @return array
692 */
693 private function credentials() {
694 if(isset($_SERVER['PHP_AUTH_USER'])) {
695 return array($_SERVER['PHP_AUTH_USER'],'php_auth');
696 }
697 if(!empty($_POST['login']) && !empty($_POST['password'])) {
698 return array($_POST['login'],$_POST['password']);
699 }
700 if(isset($_SERVER['REMOTE_USER'])) {
701 return array($_SERVER['REMOTE_USER'],'http_auth');
702 }
703
704 return array(false,false);
705 }
706
707 /**
708 * checks if login & password are correct and save the user in session.
709 * it redirects the user to the $referer link
710 * @param string $referer the url to redirect after login
711 * @todo add the return value
712 * @return boolean
713 */
714 public function login($referer)
715 {
716 list($login,$password)=$this->credentials();
717 if($login === false || $password === false) {
718 $this->messages->add('e', _('login failed: you have to fill all fields'));
719 Tools::logm('login failed');
720 Tools::redirect();
721 }
722 if (!empty($login) && !empty($password)) {
723 $user = $this->store->login($login, Tools::encodeString($password . $login));
724 if ($user != array()) {
725 # Save login into Session
726 $longlastingsession = isset($_POST['longlastingsession']);
727 Session::login($user['username'], $user['password'], $login, Tools::encodeString($password . $login), $longlastingsession, array('poche_user' => new User($user)));
728 $this->messages->add('s', _('welcome to your poche'));
729 Tools::logm('login successful');
730 Tools::redirect($referer);
731 }
732 $this->messages->add('e', _('login failed: bad login or password'));
733 Tools::logm('login failed');
734 Tools::redirect();
735 }
736 }
737
738 /**
739 * log out the poche user. It cleans the session.
740 * @todo add the return value
741 * @return boolean
742 */
743 public function logout()
744 {
745 $this->user = array();
746 Session::logout();
747 $this->messages->add('s', _('see you soon!'));
748 Tools::logm('logout');
749 Tools::redirect();
750 }
751
752 /**
753 * import from Instapaper. poche needs a ./instapaper-export.html file
754 * @todo add the return value
755 * @param string $targetFile the file used for importing
756 * @return boolean
757 */
758 private function importFromInstapaper($targetFile)
759 {
760 # TODO gestion des articles favs
761 $html = new simple_html_dom();
762 $html->load_file($targetFile);
763 Tools::logm('starting import from instapaper');
764
765 $read = 0;
766 $errors = array();
767 foreach($html->find('ol') as $ul)
768 {
769 foreach($ul->find('li') as $li)
770 {
771 $a = $li->find('a');
772 $url = new Url(base64_encode($a[0]->href));
773 $this->action('add', $url, 0, TRUE);
774 if ($read == '1') {
775 $sequence = '';
776 if (STORAGE == 'postgres') {
777 $sequence = 'entries_id_seq';
778 }
779 $last_id = $this->store->getLastId($sequence);
780 $this->action('toggle_archive', $url, $last_id, TRUE);
781 }
782 }
783
784 # the second <ol> is for read links
785 $read = 1;
786 }
787 $this->messages->add('s', _('import from instapaper completed'));
788 Tools::logm('import from instapaper completed');
789 Tools::redirect();
790 }
791
792 /**
793 * import from Pocket. poche needs a ./ril_export.html file
794 * @todo add the return value
795 * @param string $targetFile the file used for importing
796 * @return boolean
797 */
798 private function importFromPocket($targetFile)
799 {
800 # TODO gestion des articles favs
801 $html = new simple_html_dom();
802 $html->load_file($targetFile);
803 Tools::logm('starting import from pocket');
804
805 $read = 0;
806 $errors = array();
807 foreach($html->find('ul') as $ul)
808 {
809 foreach($ul->find('li') as $li)
810 {
811 $a = $li->find('a');
812 $url = new Url(base64_encode($a[0]->href));
813 $this->action('add', $url, 0, TRUE);
814 if ($read == '1') {
815 $sequence = '';
816 if (STORAGE == 'postgres') {
817 $sequence = 'entries_id_seq';
818 }
819 $last_id = $this->store->getLastId($sequence);
820 $this->action('toggle_archive', $url, $last_id, TRUE);
821 }
822 }
823
824 # the second <ul> is for read links
825 $read = 1;
826 }
827 $this->messages->add('s', _('import from pocket completed'));
828 Tools::logm('import from pocket completed');
829 Tools::redirect();
830 }
831
832 /**
833 * import from Readability. poche needs a ./readability file
834 * @todo add the return value
835 * @param string $targetFile the file used for importing
836 * @return boolean
837 */
838 private function importFromReadability($targetFile)
839 {
840 # TODO gestion des articles lus / favs
841 $str_data = file_get_contents($targetFile);
842 $data = json_decode($str_data,true);
843 Tools::logm('starting import from Readability');
844 $count = 0;
845 foreach ($data as $key => $value) {
846 $url = NULL;
847 $favorite = FALSE;
848 $archive = FALSE;
849 foreach ($value as $item) {
850 foreach ($item as $attr => $value) {
851 if ($attr == 'article__url') {
852 $url = new Url(base64_encode($value));
853 }
854 $sequence = '';
855 if (STORAGE == 'postgres') {
856 $sequence = 'entries_id_seq';
857 }
858 if ($value == 'true') {
859 if ($attr == 'favorite') {
860 $favorite = TRUE;
861 }
862 if ($attr == 'archive') {
863 $archive = TRUE;
864 }
865 }
866 }
867
868 # we can add the url
869 if (!is_null($url) && $url->isCorrect()) {
870 $this->action('add', $url, 0, TRUE);
871 $count++;
872 if ($favorite) {
873 $last_id = $this->store->getLastId($sequence);
874 $this->action('toggle_fav', $url, $last_id, TRUE);
875 }
876 if ($archive) {
877 $last_id = $this->store->getLastId($sequence);
878 $this->action('toggle_archive', $url, $last_id, TRUE);
879 }
880 }
881 }
882 }
883 $this->messages->add('s', _('import from Readability completed. ' . $count . ' new links.'));
884 Tools::logm('import from Readability completed');
885 Tools::redirect();
886 }
887
888 /**
889 * import from Poche exported file
890 * @param string $targetFile the file used for importing
891 * @return boolean
892 */
893 private function importFromPoche($targetFile)
894 {
895 $str_data = file_get_contents($targetFile);
896 $data = json_decode($str_data,true);
897 Tools::logm('starting import from Poche');
898
899
900 $sequence = '';
901 if (STORAGE == 'postgres') {
902 $sequence = 'entries_id_seq';
903 }
904
905 $count = 0;
906 foreach ($data as $value) {
907
908 $url = new Url(base64_encode($value['url']));
909 $favorite = ($value['is_fav'] == -1);
910 $archive = ($value['is_read'] == -1);
911
912 # we can add the url
913 if (!is_null($url) && $url->isCorrect()) {
914
915 $this->action('add', $url, 0, TRUE);
916
917 $count++;
918 if ($favorite) {
919 $last_id = $this->store->getLastId($sequence);
920 $this->action('toggle_fav', $url, $last_id, TRUE);
921 }
922 if ($archive) {
923 $last_id = $this->store->getLastId($sequence);
924 $this->action('toggle_archive', $url, $last_id, TRUE);
925 }
926 }
927
928 }
929 $this->messages->add('s', _('import from Poche completed. ' . $count . ' new links.'));
930 Tools::logm('import from Poche completed');
931 Tools::redirect();
932 }
933
934 /**
935 * import datas into your poche
936 * @param string $from name of the service to import : pocket, instapaper or readability
937 * @todo add the return value
938 * @return boolean
939 */
940 public function import($from)
941 {
942 $providers = array(
943 'pocket' => 'importFromPocket',
944 'readability' => 'importFromReadability',
945 'instapaper' => 'importFromInstapaper',
946 'poche' => 'importFromPoche',
947 );
948
949 if (! isset($providers[$from])) {
950 $this->messages->add('e', _('Unknown import provider.'));
951 Tools::redirect();
952 }
953
954 $targetDefinition = 'IMPORT_' . strtoupper($from) . '_FILE';
955 $targetFile = constant($targetDefinition);
956
957 if (! defined($targetDefinition)) {
958 $this->messages->add('e', _('Incomplete inc/poche/define.inc.php file, please define "' . $targetDefinition . '".'));
959 Tools::redirect();
960 }
961
962 if (! file_exists($targetFile)) {
963 $this->messages->add('e', _('Could not find required "' . $targetFile . '" import file.'));
964 Tools::redirect();
965 }
966
967 $this->$providers[$from]($targetFile);
968 }
969
970 /**
971 * export poche entries in json
972 * @return json all poche entries
973 */
974 public function export()
975 {
976 $entries = $this->store->retrieveAll($this->user->getId());
977 echo $this->tpl->render('export.twig', array(
978 'export' => Tools::renderJson($entries),
979 ));
980 Tools::logm('export view');
981 }
982
983 /**
984 * Checks online the latest version of poche and cache it
985 * @param string $which 'prod' or 'dev'
986 * @return string latest $which version
987 */
988 private function getPocheVersion($which = 'prod')
989 {
990 $cache_file = CACHE . '/' . $which;
991
992 # checks if the cached version file exists
993 if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) {
994 $version = file_get_contents($cache_file);
995 } else {
996 $version = file_get_contents('http://static.wallabag.org/versions/' . $which);
997 file_put_contents($cache_file, $version, LOCK_EX);
998 }
999 return $version;
1000 }
1001
1002 public function generateToken()
1003 {
1004 if (ini_get('open_basedir') === '') {
1005 $token = substr(base64_encode(file_get_contents('/dev/urandom', false, null, 0, 20)), 0, 15);
1006 }
1007 else {
1008 $token = substr(base64_encode(uniqid(mt_rand(), true)), 0, 20);
1009 }
1010
1011 $this->store->updateUserConfig($this->user->getId(), 'token', $token);
1012 $currentConfig = $_SESSION['poche_user']->config;
1013 $currentConfig['token'] = $token;
1014 $_SESSION['poche_user']->setConfig($currentConfig);
1015 }
1016
1017 public function generateFeeds($token, $user_id, $tag_id, $type = 'home')
1018 {
1019 $allowed_types = array('home', 'fav', 'archive', 'tag');
1020 $config = $this->store->getConfigUser($user_id);
1021
1022 if (!in_array($type, $allowed_types) ||
1023 $token != $config['token']) {
1024 die(_('Uh, there is a problem while generating feeds.'));
1025 }
1026 // Check the token
1027
1028 $feed = new FeedWriter(RSS2);
1029 $feed->setTitle('poche - ' . $type . ' feed');
1030 $feed->setLink(Tools::getPocheUrl());
1031 $feed->setChannelElement('updated', date(DATE_RSS , time()));
1032 $feed->setChannelElement('author', 'poche');
1033
1034 if ($type == 'tag') {
1035 $entries = $this->store->retrieveEntriesByTag($tag_id);
1036 }
1037 else {
1038 $entries = $this->store->getEntriesByView($type, $user_id);
1039 }
1040
1041 if (count($entries) > 0) {
1042 foreach ($entries as $entry) {
1043 $newItem = $feed->createNewItem();
1044 $newItem->setTitle($entry['title']);
1045 $newItem->setLink(Tools::getPocheUrl() . '?view=view&amp;id=' . $entry['id']);
1046 $newItem->setDate(time());
1047 $newItem->setDescription($entry['content']);
1048 $feed->addItem($newItem);
1049 }
1050 }
1051
1052 $feed->genarateFeed();
1053 exit;
1054 }
1055 }