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