]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/Poche.class.php
duplicate check added. fix of issue #400
[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. You can also download <a href="http://wllbg.org/vendor">vendor.zip</a> and extract it in your wallabag folder.';
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
233 private function install()
234 {
235 Tools::logm('poche still not installed');
236 echo $this->tpl->render('install.twig', array(
237 'token' => Session::getToken(),
238 'theme' => $this->getTheme(),
239 'poche_url' => Tools::getPocheUrl()
240 ));
241 if (isset($_GET['install'])) {
242 if (($_POST['password'] == $_POST['password_repeat'])
243 && $_POST['password'] != "" && $_POST['login'] != "") {
244 # let's rock, install poche baby !
245 if ($this->store->install($_POST['login'], Tools::encodeString($_POST['password'] . $_POST['login'])))
246 {
247 Session::logout();
248 Tools::logm('poche is now installed');
249 Tools::redirect();
250 }
251 }
252 else {
253 Tools::logm('error during installation');
254 Tools::redirect();
255 }
256 }
257 exit();
258 }
259
260 public function getTheme() {
261 return $this->currentTheme;
262 }
263
264 /**
265 * Provides theme information by parsing theme.ini file if present in the theme's root directory.
266 * In all cases, the following data will be returned:
267 * - name: theme's name, or key if the theme is unnamed,
268 * - current: boolean informing if the theme is the current user theme.
269 *
270 * @param string $theme Theme key (directory name)
271 * @return array|boolean Theme information, or false if the theme doesn't exist.
272 */
273 public function getThemeInfo($theme) {
274 if (!is_dir(THEME . '/' . $theme)) {
275 return false;
276 }
277
278 $themeIniFile = THEME . '/' . $theme . '/theme.ini';
279 $themeInfo = array();
280
281 if (is_file($themeIniFile) && is_readable($themeIniFile)) {
282 $themeInfo = parse_ini_file($themeIniFile);
283 }
284
285 if ($themeInfo === false) {
286 $themeInfo = array();
287 }
288 if (!isset($themeInfo['name'])) {
289 $themeInfo['name'] = $theme;
290 }
291 $themeInfo['current'] = ($theme === $this->getTheme());
292
293 return $themeInfo;
294 }
295
296 public function getInstalledThemes() {
297 $handle = opendir(THEME);
298 $themes = array();
299
300 while (($theme = readdir($handle)) !== false) {
301 # Themes are stored in a directory, so all directory names are themes
302 # @todo move theme installation data to database
303 if (!is_dir(THEME . '/' . $theme) || in_array($theme, array('.', '..'))) {
304 continue;
305 }
306
307 $themes[$theme] = $this->getThemeInfo($theme);
308 }
309
310 return $themes;
311 }
312
313 public function getLanguage() {
314 return $this->currentLanguage;
315 }
316
317 public function getInstalledLanguages() {
318 $handle = opendir(LOCALE);
319 $languages = array();
320
321 while (($language = readdir($handle)) !== false) {
322 # Languages are stored in a directory, so all directory names are languages
323 # @todo move language installation data to database
324 if (! is_dir(LOCALE . '/' . $language) || in_array($language, array('..', '.'))) {
325 continue;
326 }
327
328 $current = false;
329
330 if ($language === $this->getLanguage()) {
331 $current = true;
332 }
333
334 $languages[] = array('name' => $language, 'current' => $current);
335 }
336
337 return $languages;
338 }
339
340 public function getDefaultConfig()
341 {
342 return array(
343 'pager' => PAGINATION,
344 'language' => LANG,
345 'theme' => DEFAULT_THEME
346 );
347 }
348
349 protected function getPageContent(Url $url)
350 {
351 $options = array('http' => array('user_agent' => 'poche'));
352 if (isset($_SERVER['AUTH_TYPE']) && "basic" === strtolower($_SERVER['AUTH_TYPE'])) {
353 $options['http']['header'] = sprintf(
354 "Authorization: Basic %s",
355 base64_encode(
356 sprintf('%s:%s', $_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW'])
357 )
358 );
359 }
360 $context = stream_context_create($options);
361 $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);
362 return json_decode($json, true);
363 }
364
365 /**
366 * Call action (mark as fav, archive, delete, etc.)
367 */
368 public function action($action, Url $url, $id = 0, $import = FALSE, $autoclose = FALSE)
369 {
370 switch ($action)
371 {
372 case 'add':
373 $content = $this->getPageContent($url);
374 $title = ($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled');
375 $body = $content['rss']['channel']['item']['description'];
376
377 //search for possible duplicate if not in import mode
378 if (!$import) {
379 $duplicate = $this->store->retrieveOneByURL($url->getUrl(), $this->user->getId());
380 }
381
382 if ($this->store->add($url->getUrl(), $title, $body, $this->user->getId())) {
383 Tools::logm('add link ' . $url->getUrl());
384 $sequence = '';
385 if (STORAGE == 'postgres') {
386 $sequence = 'entries_id_seq';
387 }
388 $last_id = $this->store->getLastId($sequence);
389 if (DOWNLOAD_PICTURES) {
390 $content = filtre_picture($body, $url->getUrl(), $last_id);
391 Tools::logm('updating content article');
392 $this->store->updateContent($last_id, $content, $this->user->getId());
393 }
394
395 if ($duplicate != NULL) {
396 // duplicate exists, so, older entry needs to be deleted (as new entry should go to the top of list), BUT favorite mark and tags should be preserved
397 Tools::logm('link ' . $url->getUrl() . ' is a duplicate');
398 // 1) - preserve tags and favorite, then drop old entry
399 $this->store->reassignTags($duplicate['id'], $last_id);
400 if ($duplicate['is_fav']) {
401 $this->store->favoriteById($last_id, $this->user->getId());
402 }
403 if ($this->store->deleteById($duplicate['id'], $this->user->getId())) {
404 Tools::logm('previous link ' . $url->getUrl() .' entry deleted');
405 }
406 }
407
408 if (!$import) {
409 $this->messages->add('s', _('the link has been added successfully'));
410 }
411 }
412 else {
413 if (!$import) {
414 $this->messages->add('e', _('error during insertion : the link wasn\'t added'));
415 Tools::logm('error during insertion : the link wasn\'t added ' . $url->getUrl());
416 }
417 }
418
419 if (!$import) {
420 if ($autoclose == TRUE) {
421 Tools::redirect('?view=home');
422 } else {
423 Tools::redirect('?view=home&closewin=true');
424 }
425 }
426 break;
427 case 'delete':
428 $msg = 'delete link #' . $id;
429 if ($this->store->deleteById($id, $this->user->getId())) {
430 if (DOWNLOAD_PICTURES) {
431 remove_directory(ABS_PATH . $id);
432 }
433 $this->messages->add('s', _('the link has been deleted successfully'));
434 }
435 else {
436 $this->messages->add('e', _('the link wasn\'t deleted'));
437 $msg = 'error : can\'t delete link #' . $id;
438 }
439 Tools::logm($msg);
440 Tools::redirect('?');
441 break;
442 case 'toggle_fav' :
443 $this->store->favoriteById($id, $this->user->getId());
444 Tools::logm('mark as favorite link #' . $id);
445 if (!$import) {
446 Tools::redirect();
447 }
448 break;
449 case 'toggle_archive' :
450 $this->store->archiveById($id, $this->user->getId());
451 Tools::logm('archive link #' . $id);
452 if (!$import) {
453 Tools::redirect();
454 }
455 break;
456 case 'archive_all' :
457 $this->store->archiveAll($this->user->getId());
458 Tools::logm('archive all links');
459 if (!$import) {
460 Tools::redirect();
461 }
462 break;
463 case 'add_tag' :
464 $tags = explode(',', $_POST['value']);
465 $entry_id = $_POST['entry_id'];
466 foreach($tags as $key => $tag_value) {
467 $value = trim($tag_value);
468 $tag = $this->store->retrieveTagByValue($value);
469
470 if (is_null($tag)) {
471 # we create the tag
472 $tag = $this->store->createTag($value);
473 $sequence = '';
474 if (STORAGE == 'postgres') {
475 $sequence = 'tags_id_seq';
476 }
477 $tag_id = $this->store->getLastId($sequence);
478 }
479 else {
480 $tag_id = $tag['id'];
481 }
482
483 # we assign the tag to the article
484 $this->store->setTagToEntry($tag_id, $entry_id);
485 }
486 Tools::redirect();
487 break;
488 case 'remove_tag' :
489 $tag_id = $_GET['tag_id'];
490 $this->store->removeTagForEntry($id, $tag_id);
491 Tools::redirect();
492 break;
493 default:
494 break;
495 }
496 }
497
498 function displayView($view, $id = 0)
499 {
500 $tpl_vars = array();
501
502 switch ($view)
503 {
504 case 'config':
505 $dev = trim($this->getPocheVersion('dev'));
506 $prod = trim($this->getPocheVersion('prod'));
507 $compare_dev = version_compare(POCHE, $dev);
508 $compare_prod = version_compare(POCHE, $prod);
509 $themes = $this->getInstalledThemes();
510 $languages = $this->getInstalledLanguages();
511 $token = $this->user->getConfigValue('token');
512 $http_auth = (isset($_SERVER['PHP_AUTH_USER']) || isset($_SERVER['REMOTE_USER'])) ? true : false;
513 $tpl_vars = array(
514 'themes' => $themes,
515 'languages' => $languages,
516 'dev' => $dev,
517 'prod' => $prod,
518 'compare_dev' => $compare_dev,
519 'compare_prod' => $compare_prod,
520 'token' => $token,
521 'user_id' => $this->user->getId(),
522 'http_auth' => $http_auth,
523 );
524 Tools::logm('config view');
525 break;
526 case 'edit-tags':
527 # tags
528 $tags = $this->store->retrieveTagsByEntry($id);
529 $tpl_vars = array(
530 'entry_id' => $id,
531 'tags' => $tags,
532 );
533 break;
534 case 'tag':
535 $entries = $this->store->retrieveEntriesByTag($id);
536 $tag = $this->store->retrieveTag($id);
537 $tpl_vars = array(
538 'tag' => $tag,
539 'entries' => $entries,
540 );
541 break;
542 case 'tags':
543 $token = $this->user->getConfigValue('token');
544 $tags = $this->store->retrieveAllTags();
545 $tpl_vars = array(
546 'token' => $token,
547 'user_id' => $this->user->getId(),
548 'tags' => $tags,
549 );
550 break;
551 case 'view':
552 $entry = $this->store->retrieveOneById($id, $this->user->getId());
553 if ($entry != NULL) {
554 Tools::logm('view link #' . $id);
555 $content = $entry['content'];
556 if (function_exists('tidy_parse_string')) {
557 $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
558 $tidy->cleanRepair();
559 $content = $tidy->value;
560 }
561
562 # flattr checking
563 $flattr = new FlattrItem();
564 $flattr->checkItem($entry['url'], $entry['id']);
565
566 # tags
567 $tags = $this->store->retrieveTagsByEntry($entry['id']);
568
569 $tpl_vars = array(
570 'entry' => $entry,
571 'content' => $content,
572 'flattr' => $flattr,
573 'tags' => $tags
574 );
575 }
576 else {
577 Tools::logm('error in view call : entry is null');
578 }
579 break;
580 default: # home, favorites and archive views
581 $entries = $this->store->getEntriesByView($view, $this->user->getId());
582 $tpl_vars = array(
583 'entries' => '',
584 'page_links' => '',
585 'nb_results' => '',
586 );
587
588 if (count($entries) > 0) {
589 $this->pagination->set_total(count($entries));
590 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
591 $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . '&'));
592 $datas = $this->store->getEntriesByView($view, $this->user->getId(), $this->pagination->get_limit());
593 $tpl_vars['entries'] = $datas;
594 $tpl_vars['page_links'] = $page_links;
595 $tpl_vars['nb_results'] = count($entries);
596 }
597 Tools::logm('display ' . $view . ' view');
598 break;
599 }
600
601 return $tpl_vars;
602 }
603
604 /**
605 * update the password of the current user.
606 * if MODE_DEMO is TRUE, the password can't be updated.
607 * @todo add the return value
608 * @todo set the new password in function header like this updatePassword($newPassword)
609 * @return boolean
610 */
611 public function updatePassword()
612 {
613 if (MODE_DEMO) {
614 $this->messages->add('i', _('in demo mode, you can\'t update your password'));
615 Tools::logm('in demo mode, you can\'t do this');
616 Tools::redirect('?view=config');
617 }
618 else {
619 if (isset($_POST['password']) && isset($_POST['password_repeat'])) {
620 if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") {
621 $this->messages->add('s', _('your password has been updated'));
622 $this->store->updatePassword($this->user->getId(), Tools::encodeString($_POST['password'] . $this->user->getUsername()));
623 Session::logout();
624 Tools::logm('password updated');
625 Tools::redirect();
626 }
627 else {
628 $this->messages->add('e', _('the two fields have to be filled & the password must be the same in the two fields'));
629 Tools::redirect('?view=config');
630 }
631 }
632 }
633 }
634
635 public function updateTheme()
636 {
637 # no data
638 if (empty($_POST['theme'])) {
639 }
640
641 # we are not going to change it to the current theme...
642 if ($_POST['theme'] == $this->getTheme()) {
643 $this->messages->add('w', _('still using the "' . $this->getTheme() . '" theme!'));
644 Tools::redirect('?view=config');
645 }
646
647 $themes = $this->getInstalledThemes();
648 $actualTheme = false;
649
650 foreach (array_keys($themes) as $theme) {
651 if ($theme == $_POST['theme']) {
652 $actualTheme = true;
653 break;
654 }
655 }
656
657 if (! $actualTheme) {
658 $this->messages->add('e', _('that theme does not seem to be installed'));
659 Tools::redirect('?view=config');
660 }
661
662 $this->store->updateUserConfig($this->user->getId(), 'theme', $_POST['theme']);
663 $this->messages->add('s', _('you have changed your theme preferences'));
664
665 $currentConfig = $_SESSION['poche_user']->config;
666 $currentConfig['theme'] = $_POST['theme'];
667
668 $_SESSION['poche_user']->setConfig($currentConfig);
669
670 Tools::redirect('?view=config');
671 }
672
673 public function updateLanguage()
674 {
675 # no data
676 if (empty($_POST['language'])) {
677 }
678
679 # we are not going to change it to the current language...
680 if ($_POST['language'] == $this->getLanguage()) {
681 $this->messages->add('w', _('still using the "' . $this->getLanguage() . '" language!'));
682 Tools::redirect('?view=config');
683 }
684
685 $languages = $this->getInstalledLanguages();
686 $actualLanguage = false;
687
688 foreach ($languages as $language) {
689 if ($language['name'] == $_POST['language']) {
690 $actualLanguage = true;
691 break;
692 }
693 }
694
695 if (! $actualLanguage) {
696 $this->messages->add('e', _('that language does not seem to be installed'));
697 Tools::redirect('?view=config');
698 }
699
700 $this->store->updateUserConfig($this->user->getId(), 'language', $_POST['language']);
701 $this->messages->add('s', _('you have changed your language preferences'));
702
703 $currentConfig = $_SESSION['poche_user']->config;
704 $currentConfig['language'] = $_POST['language'];
705
706 $_SESSION['poche_user']->setConfig($currentConfig);
707
708 Tools::redirect('?view=config');
709 }
710
711 /**
712 * get credentials from differents sources
713 * it redirects the user to the $referer link
714 * @return array
715 */
716 private function credentials() {
717 if(isset($_SERVER['PHP_AUTH_USER'])) {
718 return array($_SERVER['PHP_AUTH_USER'],'php_auth',true);
719 }
720 if(!empty($_POST['login']) && !empty($_POST['password'])) {
721 return array($_POST['login'],$_POST['password'],false);
722 }
723 if(isset($_SERVER['REMOTE_USER'])) {
724 return array($_SERVER['REMOTE_USER'],'http_auth',true);
725 }
726
727 return array(false,false,false);
728 }
729
730 /**
731 * checks if login & password are correct and save the user in session.
732 * it redirects the user to the $referer link
733 * @param string $referer the url to redirect after login
734 * @todo add the return value
735 * @return boolean
736 */
737 public function login($referer)
738 {
739 list($login,$password,$isauthenticated)=$this->credentials();
740 if($login === false || $password === false) {
741 $this->messages->add('e', _('login failed: you have to fill all fields'));
742 Tools::logm('login failed');
743 Tools::redirect();
744 }
745 if (!empty($login) && !empty($password)) {
746 $user = $this->store->login($login, Tools::encodeString($password . $login), $isauthenticated);
747 if ($user != array()) {
748 # Save login into Session
749 $longlastingsession = isset($_POST['longlastingsession']);
750 $passwordTest = ($isauthenticated) ? $user['password'] : Tools::encodeString($password . $login);
751 Session::login($user['username'], $user['password'], $login, $passwordTest, $longlastingsession, array('poche_user' => new User($user)));
752 $this->messages->add('s', _('welcome to your wallabag'));
753 Tools::logm('login successful');
754 Tools::redirect($referer);
755 }
756 $this->messages->add('e', _('login failed: bad login or password'));
757 Tools::logm('login failed');
758 Tools::redirect();
759 }
760 }
761
762 /**
763 * log out the poche user. It cleans the session.
764 * @todo add the return value
765 * @return boolean
766 */
767 public function logout()
768 {
769 $this->user = array();
770 Session::logout();
771 Tools::logm('logout');
772 Tools::redirect();
773 }
774
775 /**
776 * import from Instapaper. poche needs a ./instapaper-export.html file
777 * @todo add the return value
778 * @param string $targetFile the file used for importing
779 * @return boolean
780 */
781 private function importFromInstapaper($targetFile)
782 {
783 # TODO gestion des articles favs
784 $html = new simple_html_dom();
785 $html->load_file($targetFile);
786 Tools::logm('starting import from instapaper');
787
788 $read = 0;
789 $errors = array();
790 foreach($html->find('ol') as $ul)
791 {
792 foreach($ul->find('li') as $li)
793 {
794 $a = $li->find('a');
795 $url = new Url(base64_encode($a[0]->href));
796 $this->action('add', $url, 0, TRUE);
797 if ($read == '1') {
798 $sequence = '';
799 if (STORAGE == 'postgres') {
800 $sequence = 'entries_id_seq';
801 }
802 $last_id = $this->store->getLastId($sequence);
803 $this->action('toggle_archive', $url, $last_id, TRUE);
804 }
805 }
806
807 # the second <ol> is for read links
808 $read = 1;
809 }
810 $this->messages->add('s', _('import from instapaper completed'));
811 Tools::logm('import from instapaper completed');
812 Tools::redirect();
813 }
814
815 /**
816 * import from Pocket. poche needs a ./ril_export.html file
817 * @todo add the return value
818 * @param string $targetFile the file used for importing
819 * @return boolean
820 */
821 private function importFromPocket($targetFile)
822 {
823 # TODO gestion des articles favs
824 $html = new simple_html_dom();
825 $html->load_file($targetFile);
826 Tools::logm('starting import from pocket');
827
828 $read = 0;
829 $errors = array();
830 foreach($html->find('ul') as $ul)
831 {
832 foreach($ul->find('li') as $li)
833 {
834 $a = $li->find('a');
835 $url = new Url(base64_encode($a[0]->href));
836 $this->action('add', $url, 0, TRUE);
837 if ($read == '1') {
838 $sequence = '';
839 if (STORAGE == 'postgres') {
840 $sequence = 'entries_id_seq';
841 }
842 $last_id = $this->store->getLastId($sequence);
843 $this->action('toggle_archive', $url, $last_id, TRUE);
844 }
845 }
846
847 # the second <ul> is for read links
848 $read = 1;
849 }
850 $this->messages->add('s', _('import from pocket completed'));
851 Tools::logm('import from pocket completed');
852 Tools::redirect();
853 }
854
855 /**
856 * import from Readability. poche needs a ./readability file
857 * @todo add the return value
858 * @param string $targetFile the file used for importing
859 * @return boolean
860 */
861 private function importFromReadability($targetFile)
862 {
863 # TODO gestion des articles lus / favs
864 $str_data = file_get_contents($targetFile);
865 $data = json_decode($str_data,true);
866 Tools::logm('starting import from Readability');
867 $count = 0;
868 foreach ($data as $key => $value) {
869 $url = NULL;
870 $favorite = FALSE;
871 $archive = FALSE;
872 foreach ($value as $item) {
873 foreach ($item as $attr => $value) {
874 if ($attr == 'article__url') {
875 $url = new Url(base64_encode($value));
876 }
877 $sequence = '';
878 if (STORAGE == 'postgres') {
879 $sequence = 'entries_id_seq';
880 }
881 if ($value == 'true') {
882 if ($attr == 'favorite') {
883 $favorite = TRUE;
884 }
885 if ($attr == 'archive') {
886 $archive = TRUE;
887 }
888 }
889 }
890
891 # we can add the url
892 if (!is_null($url) && $url->isCorrect()) {
893 $this->action('add', $url, 0, TRUE);
894 $count++;
895 if ($favorite) {
896 $last_id = $this->store->getLastId($sequence);
897 $this->action('toggle_fav', $url, $last_id, TRUE);
898 }
899 if ($archive) {
900 $last_id = $this->store->getLastId($sequence);
901 $this->action('toggle_archive', $url, $last_id, TRUE);
902 }
903 }
904 }
905 }
906 $this->messages->add('s', _('import from Readability completed. ' . $count . ' new links.'));
907 Tools::logm('import from Readability completed');
908 Tools::redirect();
909 }
910
911 /**
912 * import from Poche exported file
913 * @param string $targetFile the file used for importing
914 * @return boolean
915 */
916 private function importFromPoche($targetFile)
917 {
918 $str_data = file_get_contents($targetFile);
919 $data = json_decode($str_data,true);
920 Tools::logm('starting import from Poche');
921
922
923 $sequence = '';
924 if (STORAGE == 'postgres') {
925 $sequence = 'entries_id_seq';
926 }
927
928 $count = 0;
929 foreach ($data as $value) {
930
931 $url = new Url(base64_encode($value['url']));
932 $favorite = ($value['is_fav'] == -1);
933 $archive = ($value['is_read'] == -1);
934
935 # we can add the url
936 if (!is_null($url) && $url->isCorrect()) {
937
938 $this->action('add', $url, 0, TRUE);
939
940 $count++;
941 if ($favorite) {
942 $last_id = $this->store->getLastId($sequence);
943 $this->action('toggle_fav', $url, $last_id, TRUE);
944 }
945 if ($archive) {
946 $last_id = $this->store->getLastId($sequence);
947 $this->action('toggle_archive', $url, $last_id, TRUE);
948 }
949 }
950
951 }
952 $this->messages->add('s', _('import from Poche completed. ' . $count . ' new links.'));
953 Tools::logm('import from Poche completed');
954 Tools::redirect();
955 }
956
957 /**
958 * import datas into your poche
959 * @param string $from name of the service to import : pocket, instapaper or readability
960 * @todo add the return value
961 * @return boolean
962 */
963 public function import($from)
964 {
965 $providers = array(
966 'pocket' => 'importFromPocket',
967 'readability' => 'importFromReadability',
968 'instapaper' => 'importFromInstapaper',
969 'poche' => 'importFromPoche',
970 );
971
972 if (! isset($providers[$from])) {
973 $this->messages->add('e', _('Unknown import provider.'));
974 Tools::redirect();
975 }
976
977 $targetDefinition = 'IMPORT_' . strtoupper($from) . '_FILE';
978 $targetFile = constant($targetDefinition);
979
980 if (! defined($targetDefinition)) {
981 $this->messages->add('e', _('Incomplete inc/poche/define.inc.php file, please define "' . $targetDefinition . '".'));
982 Tools::redirect();
983 }
984
985 if (! file_exists($targetFile)) {
986 $this->messages->add('e', _('Could not find required "' . $targetFile . '" import file.'));
987 Tools::redirect();
988 }
989
990 $this->$providers[$from]($targetFile);
991 }
992
993 /**
994 * export poche entries in json
995 * @return json all poche entries
996 */
997 public function export()
998 {
999 $entries = $this->store->retrieveAll($this->user->getId());
1000 echo $this->tpl->render('export.twig', array(
1001 'export' => Tools::renderJson($entries),
1002 ));
1003 Tools::logm('export view');
1004 }
1005
1006 /**
1007 * Checks online the latest version of poche and cache it
1008 * @param string $which 'prod' or 'dev'
1009 * @return string latest $which version
1010 */
1011 private function getPocheVersion($which = 'prod')
1012 {
1013 $cache_file = CACHE . '/' . $which;
1014
1015 # checks if the cached version file exists
1016 if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) {
1017 $version = file_get_contents($cache_file);
1018 } else {
1019 $version = file_get_contents('http://static.wallabag.org/versions/' . $which);
1020 file_put_contents($cache_file, $version, LOCK_EX);
1021 }
1022 return $version;
1023 }
1024
1025 public function generateToken()
1026 {
1027 if (ini_get('open_basedir') === '') {
1028 $token = substr(base64_encode(file_get_contents('/dev/urandom', false, null, 0, 20)), 0, 15);
1029 }
1030 else {
1031 $token = substr(base64_encode(uniqid(mt_rand(), true)), 0, 20);
1032 }
1033
1034 $token = str_replace('+', '', $token);
1035 $this->store->updateUserConfig($this->user->getId(), 'token', $token);
1036 $currentConfig = $_SESSION['poche_user']->config;
1037 $currentConfig['token'] = $token;
1038 $_SESSION['poche_user']->setConfig($currentConfig);
1039 }
1040
1041 public function generateFeeds($token, $user_id, $tag_id, $type = 'home')
1042 {
1043 $allowed_types = array('home', 'fav', 'archive', 'tag');
1044 $config = $this->store->getConfigUser($user_id);
1045
1046 if (!in_array($type, $allowed_types) ||
1047 $token != $config['token']) {
1048 die(_('Uh, there is a problem while generating feeds.'));
1049 }
1050 // Check the token
1051
1052 $feed = new FeedWriter(RSS2);
1053 $feed->setTitle('wallabag — ' . $type . ' feed');
1054 $feed->setLink(Tools::getPocheUrl());
1055 $feed->setChannelElement('updated', date(DATE_RSS , time()));
1056 $feed->setChannelElement('author', 'wallabag');
1057
1058 if ($type == 'tag') {
1059 $entries = $this->store->retrieveEntriesByTag($tag_id);
1060 }
1061 else {
1062 $entries = $this->store->getEntriesByView($type, $user_id);
1063 }
1064
1065 if (count($entries) > 0) {
1066 foreach ($entries as $entry) {
1067 $newItem = $feed->createNewItem();
1068 $newItem->setTitle($entry['title']);
1069 $newItem->setLink(Tools::getPocheUrl() . '?view=view&amp;id=' . $entry['id']);
1070 $newItem->setDate(time());
1071 $newItem->setDescription($entry['content']);
1072 $feed->addItem($newItem);
1073 }
1074 }
1075
1076 $feed->genarateFeed();
1077 exit;
1078 }
1079
1080 public function emptyCache() {
1081 $files = new RecursiveIteratorIterator(
1082 new RecursiveDirectoryIterator(CACHE, RecursiveDirectoryIterator::SKIP_DOTS),
1083 RecursiveIteratorIterator::CHILD_FIRST
1084 );
1085
1086 foreach ($files as $fileinfo) {
1087 $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
1088 $todo($fileinfo->getRealPath());
1089 }
1090
1091 Tools::logm('empty cache');
1092 $this->messages->add('s', _('Cache deleted.'));
1093 Tools::redirect();
1094 }
1095 }