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