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