3 * wallabag, self hostable application allowing you to not miss any content anymore
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
8 * @license http://www.wtfpl.net/ see COPYING file
13 public static $canRenderTemplates = true;
14 public static $configFileAvailable = true;
22 private $currentTheme = '';
23 private $currentLanguage = '';
24 private $notInstalledMessage = array();
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',
35 'pt_BR.utf8' => 'Português (Brasil)',
36 'ru_RU.utf8' => 'Pусский',
37 'sl_SI.utf8' => 'Slovenščina',
38 'uk_UA.utf8' => 'Українська',
40 public function __construct()
42 if ($this->configFileIsAvailable()) {
46 if ($this->themeIsInstalled()) {
50 if ($this->systemIsInstalled()) {
51 $this->store
= new Database();
52 $this->messages
= new Messages();
54 if (! $this->store
->isInstalled()) {
57 $this->store
->checkTags();
61 private function init()
65 if (isset($_SESSION['poche_user']) && $_SESSION['poche_user'] != array()) {
66 $this->user
= $_SESSION['poche_user'];
68 # fake user, just for install & login screens
69 $this->user
= new User();
70 $this->user
->setConfig($this->getDefaultConfig());
74 $language = $this->user
->getConfigValue('language');
75 putenv('LC_ALL=' . $language);
76 setlocale(LC_ALL
, $language);
77 bindtextdomain($language, LOCALE
);
78 textdomain($language);
81 $this->pagination
= new Paginator($this->user
->getConfigValue('pager'), 'p');
84 $themeDirectory = $this->user
->getConfigValue('theme');
86 if ($themeDirectory === false) {
87 $themeDirectory = DEFAULT_THEME
;
90 $this->currentTheme
= $themeDirectory;
93 $languageDirectory = $this->user
->getConfigValue('language');
95 if ($languageDirectory === false) {
96 $languageDirectory = DEFAULT_THEME
;
99 $this->currentLanguage
= $languageDirectory;
102 public function configFileIsAvailable() {
103 if (! self
::$configFileAvailable) {
104 $this->notInstalledMessage
[] = 'You have to rename inc/poche/config.inc.php.new to inc/poche/config.inc.php.';
112 public function themeIsInstalled() {
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) {
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.';
120 if (! is_writable(CACHE
)) {
121 $this->notInstalledMessage
[] = 'You don\'t have write access on cache directory.';
123 self
::$canRenderTemplates = false;
128 # Check if the selected theme and its requirements are present
129 $theme = $this->getTheme();
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 . ')';
134 self
::$canRenderTemplates = false;
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 . ')';
145 self
::$canRenderTemplates = false;
161 * all checks before installation.
162 * @todo move HTML to template
165 public function systemIsInstalled()
169 $configSalt = defined('SALT') ? constant('SALT') : '';
171 if (empty($configSalt)) {
172 $this->notInstalledMessage
[] = 'You have not yet filled in the SALT value in the config.inc.php file.';
175 if (STORAGE
== 'sqlite' && ! file_exists(STORAGE_SQLITE
)) {
176 Tools
::logm('sqlite file doesn\'t exist');
177 $this->notInstalledMessage
[] = 'sqlite file doesn\'t exist, you can find it in install folder. Copy it in /db folder.';
180 if (is_dir(ROOT
. '/install') && ! DEBUG_POCHE
) {
181 $this->notInstalledMessage
[] = 'you have to delete the /install folder before using poche.';
184 if (STORAGE
== 'sqlite' && ! is_writable(STORAGE_SQLITE
)) {
185 Tools
::logm('you don\'t have write access on sqlite file');
186 $this->notInstalledMessage
[] = 'You don\'t have write access on sqlite file.';
197 public function getNotInstalledMessage() {
198 return $this->notInstalledMessage
;
201 private function initTpl()
203 $loaderChain = new Twig_Loader_Chain();
204 $theme = $this->getTheme();
206 # add the current theme as first to the loader chain so Twig will look there first for overridden template files
208 $loaderChain->addLoader(new Twig_Loader_Filesystem(THEME
. '/' . $theme));
209 } catch (Twig_Error_Loader
$e) {
210 # @todo isInstalled() should catch this, inject Twig later
211 die('The currently selected theme (' . $theme . ') does not seem to be properly installed (' . THEME
. '/' . $theme .' is missing)');
214 # add all required themes to the loader chain
215 $themeInfo = $this->getThemeInfo($theme);
216 if (isset($themeInfo['requirements']) && is_array($themeInfo['requirements'])) {
217 foreach ($themeInfo['requirements'] as $requiredTheme) {
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 . ')');
228 $twigParams = array();
230 $twigParams = array('cache' => CACHE
);
233 $this->tpl
= new Twig_Environment($loaderChain, $twigParams);
234 $this->tpl
->addExtension(new Twig_Extensions_Extension_I18n());
236 # filter to display domain name of an url
237 $filter = new Twig_SimpleFilter('getDomain', 'Tools::getDomain');
238 $this->tpl
->addFilter($filter);
240 # filter for reading time
241 $filter = new Twig_SimpleFilter('getReadingTime', 'Tools::getReadingTime');
242 $this->tpl
->addFilter($filter);
245 private function install()
247 Tools
::logm('poche still not installed');
248 echo $this->tpl
->render('install.twig', array(
249 'token' => Session
::getToken(),
250 'theme' => $this->getTheme(),
251 'poche_url' => Tools
::getPocheUrl()
253 if (isset($_GET['install'])) {
254 if (($_POST['password'] == $_POST['password_repeat'])
255 && $_POST['password'] != "" && $_POST['login'] != "") {
256 # let's rock, install poche baby !
257 if ($this->store
->install($_POST['login'], Tools
::encodeString($_POST['password'] . $_POST['login'])))
260 Tools
::logm('poche is now installed');
265 Tools
::logm('error during installation');
272 public function getTheme() {
273 return $this->currentTheme
;
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.
282 * @param string $theme Theme key (directory name)
283 * @return array|boolean Theme information, or false if the theme doesn't exist.
285 public function getThemeInfo($theme) {
286 if (!is_dir(THEME
. '/' . $theme)) {
290 $themeIniFile = THEME
. '/' . $theme . '/theme.ini';
291 $themeInfo = array();
293 if (is_file($themeIniFile) && is_readable($themeIniFile)) {
294 $themeInfo = parse_ini_file($themeIniFile);
297 if ($themeInfo === false) {
298 $themeInfo = array();
300 if (!isset($themeInfo['name'])) {
301 $themeInfo['name'] = $theme;
303 $themeInfo['current'] = ($theme === $this->getTheme());
308 public function getInstalledThemes() {
309 $handle = opendir(THEME
);
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
315 if (!is_dir(THEME
. '/' . $theme) || in_array($theme, array('.', '..'))) {
319 $themes[$theme] = $this->getThemeInfo($theme);
327 public function getLanguage() {
328 return $this->currentLanguage
;
331 public function getInstalledLanguages() {
332 $handle = opendir(LOCALE
);
333 $languages = array();
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
338 if (! is_dir(LOCALE
. '/' . $language) || in_array($language, array('..', '.', 'tools'))) {
344 if ($language === $this->getLanguage()) {
348 $languages[] = array('name' => (isset($this->language_names
[$language]) ? $this->language_names
[$language] : $language), 'value' => $language, 'current' => $current);
354 public function getDefaultConfig()
357 'pager' => PAGINATION
,
359 'theme' => DEFAULT_THEME
364 * Call action (mark as fav, archive, delete, etc.)
366 public function action($action, Url
$url, $id = 0, $import = FALSE, $autoclose = FALSE, $tags = null)
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'];
375 // clean content from prevent xss attack
376 $purifier = $this->getPurifier();
377 $title = $purifier->purify($title);
378 $body = $purifier->purify($body);
380 //search for possible duplicate
382 $duplicate = $this->store
->retrieveOneByURL($url->getUrl(), $this->user
->getId());
384 $last_id = $this->store
->add($url->getUrl(), $title, $body, $this->user
->getId());
386 Tools
::logm('add link ' . $url->getUrl());
387 if (DOWNLOAD_PICTURES
) {
388 $content = filtre_picture($body, $url->getUrl(), $last_id);
389 Tools
::logm('updating content article');
390 $this->store
->updateContent($last_id, $content, $this->user
->getId());
393 if ($duplicate != NULL) {
394 // 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
395 Tools
::logm('link ' . $url->getUrl() . ' is a duplicate');
396 // 1) - preserve tags and favorite, then drop old entry
397 $this->store
->reassignTags($duplicate['id'], $last_id);
398 if ($duplicate['is_fav']) {
399 $this->store
->favoriteById($last_id, $this->user
->getId());
401 if ($this->store
->deleteById($duplicate['id'], $this->user
->getId())) {
402 Tools
::logm('previous link ' . $url->getUrl() .' entry deleted');
406 $this->messages
->add('s', _('the link has been added successfully'));
409 $this->messages
->add('e', _('error during insertion : the link wasn\'t added'));
410 Tools
::logm('error during insertion : the link wasn\'t added ' . $url->getUrl());
413 if ($autoclose == TRUE) {
414 Tools
::redirect('?view=home');
416 Tools
::redirect('?view=home&closewin=true');
420 $msg = 'delete link #' . $id;
421 if ($this->store
->deleteById($id, $this->user
->getId())) {
422 if (DOWNLOAD_PICTURES
) {
423 remove_directory(ABS_PATH
. $id);
425 $this->messages
->add('s', _('the link has been deleted successfully'));
428 $this->messages
->add('e', _('the link wasn\'t deleted'));
429 $msg = 'error : can\'t delete link #' . $id;
432 Tools
::redirect('?');
435 $this->store
->favoriteById($id, $this->user
->getId());
436 Tools
::logm('mark as favorite link #' . $id);
437 if ( Tools
::isAjaxRequest() ) {
445 case 'toggle_archive' :
446 $this->store
->archiveById($id, $this->user
->getId());
447 Tools
::logm('archive link #' . $id);
448 if ( Tools
::isAjaxRequest() ) {
457 $this->store
->archiveAll($this->user
->getId());
458 Tools
::logm('archive all links');
462 $tags = explode(',', $_POST['value']);
463 $entry_id = $_POST['entry_id'];
464 $entry = $this->store
->retrieveOneById($entry_id, $this->user
->getId());
466 $this->messages
->add('e', _('Article not found!'));
467 Tools
::logm('error : article not found');
470 //get all already set tags to preven duplicates
471 $already_set_tags = array();
472 $entry_tags = $this->store
->retrieveTagsByEntry($entry_id);
473 foreach ($entry_tags as $tag) {
474 $already_set_tags[] = $tag['value'];
476 foreach($tags as $key => $tag_value) {
477 $value = trim($tag_value);
478 if ($value && !in_array($value, $already_set_tags)) {
479 $tag = $this->store
->retrieveTagByValue($value);
483 $tag = $this->store
->createTag($value);
485 if (STORAGE
== 'postgres') {
486 $sequence = 'tags_id_seq';
488 $tag_id = $this->store
->getLastId($sequence);
491 $tag_id = $tag['id'];
494 # we assign the tag to the article
495 $this->store
->setTagToEntry($tag_id, $entry_id);
501 $tag_id = $_GET['tag_id'];
502 $entry = $this->store
->retrieveOneById($id, $this->user
->getId());
504 $this->messages
->add('e', _('Article not found!'));
505 Tools
::logm('error : article not found');
508 $this->store
->removeTagForEntry($id, $tag_id);
516 function displayView($view, $id = 0)
523 $dev_infos = $this->getPocheVersion('dev');
524 $dev = trim($dev_infos[0]);
525 $check_time_dev = date('d-M-Y H:i', $dev_infos[1]);
526 $prod_infos = $this->getPocheVersion('prod');
527 $prod = trim($prod_infos[0]);
528 $check_time_prod = date('d-M-Y H:i', $prod_infos[1]);
529 $compare_dev = version_compare(POCHE
, $dev);
530 $compare_prod = version_compare(POCHE
, $prod);
531 $themes = $this->getInstalledThemes();
532 $languages = $this->getInstalledLanguages();
533 $token = $this->user
->getConfigValue('token');
534 $http_auth = (isset($_SERVER['PHP_AUTH_USER']) || isset($_SERVER['REMOTE_USER'])) ? true : false;
537 'languages' => $languages,
540 'check_time_dev' => $check_time_dev,
541 'check_time_prod' => $check_time_prod,
542 'compare_dev' => $compare_dev,
543 'compare_prod' => $compare_prod,
545 'user_id' => $this->user
->getId(),
546 'http_auth' => $http_auth,
548 Tools
::logm('config view');
552 $entry = $this->store
->retrieveOneById($id, $this->user
->getId());
554 $this->messages
->add('e', _('Article not found!'));
555 Tools
::logm('error : article not found');
558 $tags = $this->store
->retrieveTagsByEntry($id);
566 $token = $this->user
->getConfigValue('token');
567 //if term is set - search tags for this term
568 $term = Tools
::checkVar('term');
569 $tags = $this->store
->retrieveAllTags($this->user
->getId(), $term);
570 if (Tools
::isAjaxRequest()) {
572 foreach ($tags as $tag) {
573 $result[] = $tag['value'];
575 echo json_encode($result);
580 'user_id' => $this->user
->getId(),
585 if (isset($_GET['search'])) {
586 $search = filter_var($_GET['search'], FILTER_SANITIZE_STRING
);
587 $tpl_vars['entries'] = $this->store
->search($search, $this->user
->getId());
588 $count = count($tpl_vars['entries']);
589 $this->pagination
->set_total($count);
590 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
591 $this->pagination
->page_links('?view=' . $view . '?search=' . $search . '&sort=' . $_SESSION['sort'] . '&' ));
592 $tpl_vars['page_links'] = $page_links;
593 $tpl_vars['nb_results'] = $count;
594 $tpl_vars['search_term'] = $search;
598 $entry = $this->store
->retrieveOneById($id, $this->user
->getId());
599 if ($entry != NULL) {
600 Tools
::logm('view link #' . $id);
601 $content = $entry['content'];
602 if (function_exists('tidy_parse_string')) {
603 $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
604 $tidy->cleanRepair();
605 $content = $tidy->value
;
609 $flattr = new FlattrItem();
610 $flattr->checkItem($entry['url'], $entry['id']);
613 $tags = $this->store
->retrieveTagsByEntry($entry['id']);
617 'content' => $content,
623 Tools
::logm('error in view call : entry is null');
626 default: # home, favorites, archive and tag views
631 'listmode' => (isset($_COOKIE['listmode']) ? true : false),
634 //if id is given - we retrive entries by tag: id is tag id
636 $tpl_vars['tag'] = $this->store
->retrieveTag($id, $this->user
->getId());
637 $tpl_vars['id'] = intval($id);
640 $count = $this->store
->getEntriesByViewCount($view, $this->user
->getId(), $id);
643 $this->pagination
->set_total($count);
644 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
645 $this->pagination
->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . (($id)?'&id='.$id:'') . '&' ));
646 $tpl_vars['entries'] = $this->store
->getEntriesByView($view, $this->user
->getId(), $this->pagination
->get_limit(), $id);
647 $tpl_vars['page_links'] = $page_links;
648 $tpl_vars['nb_results'] = $count;
650 Tools
::logm('display ' . $view . ' view');
658 * update the password of the current user.
659 * if MODE_DEMO is TRUE, the password can't be updated.
660 * @todo add the return value
661 * @todo set the new password in function header like this updatePassword($newPassword)
664 public function updatePassword()
667 $this->messages
->add('i', _('in demo mode, you can\'t update your password'));
668 Tools
::logm('in demo mode, you can\'t do this');
669 Tools
::redirect('?view=config');
672 if (isset($_POST['password']) && isset($_POST['password_repeat'])) {
673 if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") {
674 $this->messages
->add('s', _('your password has been updated'));
675 $this->store
->updatePassword($this->user
->getId(), Tools
::encodeString($_POST['password'] . $this->user
->getUsername()));
677 Tools
::logm('password updated');
681 $this->messages
->add('e', _('the two fields have to be filled & the password must be the same in the two fields'));
682 Tools
::redirect('?view=config');
688 public function updateTheme()
691 if (empty($_POST['theme'])) {
694 # we are not going to change it to the current theme...
695 if ($_POST['theme'] == $this->getTheme()) {
696 $this->messages
->add('w', _('still using the "' . $this->getTheme() . '" theme!'));
697 Tools
::redirect('?view=config');
700 $themes = $this->getInstalledThemes();
701 $actualTheme = false;
703 foreach (array_keys($themes) as $theme) {
704 if ($theme == $_POST['theme']) {
710 if (! $actualTheme) {
711 $this->messages
->add('e', _('that theme does not seem to be installed'));
712 Tools
::redirect('?view=config');
715 $this->store
->updateUserConfig($this->user
->getId(), 'theme', $_POST['theme']);
716 $this->messages
->add('s', _('you have changed your theme preferences'));
718 $currentConfig = $_SESSION['poche_user']->config
;
719 $currentConfig['theme'] = $_POST['theme'];
721 $_SESSION['poche_user']->setConfig($currentConfig);
725 Tools
::redirect('?view=config');
728 public function updateLanguage()
731 if (empty($_POST['language'])) {
734 # we are not going to change it to the current language...
735 if ($_POST['language'] == $this->getLanguage()) {
736 $this->messages
->add('w', _('still using the "' . $this->getLanguage() . '" language!'));
737 Tools
::redirect('?view=config');
740 $languages = $this->getInstalledLanguages();
741 $actualLanguage = false;
743 foreach ($languages as $language) {
744 if ($language['value'] == $_POST['language']) {
745 $actualLanguage = true;
750 if (! $actualLanguage) {
751 $this->messages
->add('e', _('that language does not seem to be installed'));
752 Tools
::redirect('?view=config');
755 $this->store
->updateUserConfig($this->user
->getId(), 'language', $_POST['language']);
756 $this->messages
->add('s', _('you have changed your language preferences'));
758 $currentConfig = $_SESSION['poche_user']->config
;
759 $currentConfig['language'] = $_POST['language'];
761 $_SESSION['poche_user']->setConfig($currentConfig);
765 Tools
::redirect('?view=config');
768 * get credentials from differents sources
769 * it redirects the user to the $referer link
772 private function credentials() {
773 if(isset($_SERVER['PHP_AUTH_USER'])) {
774 return array($_SERVER['PHP_AUTH_USER'],'php_auth',true);
776 if(!empty($_POST['login']) && !empty($_POST['password'])) {
777 return array($_POST['login'],$_POST['password'],false);
779 if(isset($_SERVER['REMOTE_USER'])) {
780 return array($_SERVER['REMOTE_USER'],'http_auth',true);
783 return array(false,false,false);
787 * checks if login & password are correct and save the user in session.
788 * it redirects the user to the $referer link
789 * @param string $referer the url to redirect after login
790 * @todo add the return value
793 public function login($referer)
795 list($login,$password,$isauthenticated)=$this->credentials();
796 if($login === false || $password === false) {
797 $this->messages
->add('e', _('login failed: you have to fill all fields'));
798 Tools
::logm('login failed');
801 if (!empty($login) && !empty($password)) {
802 $user = $this->store
->login($login, Tools
::encodeString($password . $login), $isauthenticated);
803 if ($user != array()) {
804 # Save login into Session
805 $longlastingsession = isset($_POST['longlastingsession']);
806 $passwordTest = ($isauthenticated) ? $user['password'] : Tools
::encodeString($password . $login);
807 Session
::login($user['username'], $user['password'], $login, $passwordTest, $longlastingsession, array('poche_user' => new User($user)));
808 $this->messages
->add('s', _('welcome to your wallabag'));
809 Tools
::logm('login successful');
810 Tools
::redirect($referer);
812 $this->messages
->add('e', _('login failed: bad login or password'));
813 Tools
::logm('login failed');
819 * log out the poche user. It cleans the session.
820 * @todo add the return value
823 public function logout()
825 $this->user
= array();
827 Tools
::logm('logout');
832 * import datas into your poche
835 public function import() {
837 if (!defined('IMPORT_LIMIT')) {
838 define('IMPORT_LIMIT', 5);
840 if (!defined('IMPORT_DELAY')) {
841 define('IMPORT_DELAY', 5);
844 if ( isset($_FILES['file']) ) {
845 Tools
::logm('Import stated: parsing file');
847 // assume, that file is in json format
848 $str_data = file_get_contents($_FILES['file']['tmp_name']);
849 $data = json_decode($str_data, true);
851 if ( $data === null ) {
852 //not json - assume html
853 $html = new simple_html_dom();
854 $html->load_file($_FILES['file']['tmp_name']);
857 foreach (array('ol','ul') as $list) {
858 foreach ($html->find($list) as $ul) {
859 foreach ($ul->find('li') as $li) {
862 $tmpEntry['url'] = $a[0]->href
;
863 $tmpEntry['tags'] = $a[0]->tags
;
864 $tmpEntry['is_read'] = $read;
865 if ($tmpEntry['url']) {
869 # the second <ol/ul> is for read links
870 $read = ((sizeof($data) && $read)?0:1);
875 //for readability structure
876 foreach ($data as $record) {
877 if (is_array($record)) {
879 foreach ($record as $record2) {
880 if (is_array($record2)) {
887 $urlsInserted = array(); //urls of articles inserted
888 foreach ($data as $record) {
889 $url = trim( isset($record['article__url']) ? $record['article__url'] : (isset($record['url']) ? $record['url'] : '') );
890 if ( $url and !in_array($url, $urlsInserted) ) {
891 $title = (isset($record['title']) ? $record['title'] : _('Untitled - Import - ').'</a> <a href="./?import">'._('click to finish import').'</a><a>');
892 $body = (isset($record['content']) ? $record['content'] : '');
893 $isRead = (isset($record['is_read']) ? intval($record['is_read']) : (isset($record['archive'])?intval($record['archive']):0));
894 $isFavorite = (isset($record['is_fav']) ? intval($record['is_fav']) : (isset($record['favorite'])?intval($record['favorite']):0) );
896 $id = $this->store
->add($url, $title, $body, $this->user
->getId(), $isFavorite, $isRead);
898 $urlsInserted[] = $url; //add
900 if ( isset($record['tags']) && trim($record['tags']) ) {
908 $i = sizeof($urlsInserted);
910 $this->messages
->add('s', _('Articles inserted: ').$i._('. Please note, that some may be marked as "read".'));
912 Tools
::logm('Import of articles finished: '.$i.' articles added (w/o content if not provided).');
914 //file parsing finished here
916 //now download article contents if any
918 //check if we need to download any content
919 $recordsDownloadRequired = $this->store
->retrieveUnfetchedEntriesCount($this->user
->getId());
920 if ( $recordsDownloadRequired == 0 ) {
921 //nothing to download
922 $this->messages
->add('s', _('Import finished.'));
923 Tools
::logm('Import finished completely');
927 //if just inserted - don't download anything, download will start in next reload
928 if ( !isset($_FILES['file']) ) {
929 //download next batch
930 Tools
::logm('Fetching next batch of articles...');
931 $items = $this->store
->retrieveUnfetchedEntries($this->user
->getId(), IMPORT_LIMIT
);
933 $purifier = $this->getPurifier();
935 foreach ($items as $item) {
936 $url = new Url(base64_encode($item['url']));
937 Tools
::logm('Fetching article '.$item['id']);
938 $content = Tools
::getPageContent($url);
940 $title = (($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled'));
941 $body = (($content['rss']['channel']['item']['description'] != '') ? $content['rss']['channel']['item']['description'] : _('Undefined'));
943 //clean content to prevent xss attack
944 $title = $purifier->purify($title);
945 $body = $purifier->purify($body);
947 $this->store
->updateContentAndTitle($item['id'], $title, $body, $this->user
->getId());
948 Tools
::logm('Article '.$item['id'].' updated.');
954 return array('includeImport'=>true, 'import'=>array('recordsDownloadRequired'=>$recordsDownloadRequired, 'recordsUnderDownload'=> IMPORT_LIMIT
, 'delay'=> IMPORT_DELAY
* 1000) );
958 * export poche entries in json
959 * @return json all poche entries
961 public function export() {
962 $filename = "wallabag-export-".$this->user
->getId()."-".date("Y-m-d").".json";
963 header('Content-Disposition: attachment; filename='.$filename);
965 $entries = $this->store
->retrieveAll($this->user
->getId());
966 echo $this->tpl
->render('export.twig', array(
967 'export' => Tools
::renderJson($entries),
969 Tools
::logm('export view');
973 * Checks online the latest version of poche and cache it
974 * @param string $which 'prod' or 'dev'
975 * @return string latest $which version
977 private function getPocheVersion($which = 'prod') {
978 $cache_file = CACHE
. '/' . $which;
979 $check_time = time();
981 # checks if the cached version file exists
982 if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) {
983 $version = file_get_contents($cache_file);
984 $check_time = filemtime($cache_file);
986 $version = file_get_contents('http://static.wallabag.org/versions/' . $which);
987 file_put_contents($cache_file, $version, LOCK_EX
);
989 return array($version, $check_time);
992 public function generateToken()
994 if (ini_get('open_basedir') === '') {
995 if (strtoupper(substr(PHP_OS
, 0, 3)) === 'WIN') {
996 echo 'This is a server using Windows!';
997 // alternative to /dev/urandom for Windows
998 $token = substr(base64_encode(uniqid(mt_rand(), true)), 0, 20);
1000 $token = substr(base64_encode(file_get_contents('/dev/urandom', false, null, 0, 20)), 0, 15);
1004 $token = substr(base64_encode(uniqid(mt_rand(), true)), 0, 20);
1007 $token = str_replace('+', '', $token);
1008 $this->store
->updateUserConfig($this->user
->getId(), 'token', $token);
1009 $currentConfig = $_SESSION['poche_user']->config
;
1010 $currentConfig['token'] = $token;
1011 $_SESSION['poche_user']->setConfig($currentConfig);
1015 public function generateFeeds($token, $user_id, $tag_id, $type = 'home')
1017 $allowed_types = array('home', 'fav', 'archive', 'tag');
1018 $config = $this->store
->getConfigUser($user_id);
1020 if ($config == null) {
1021 die(_('User with this id (' . $user_id . ') does not exist.'));
1024 if (!in_array($type, $allowed_types) ||
1025 $token != $config['token']) {
1026 die(_('Uh, there is a problem while generating feeds.'));
1030 $feed = new FeedWriter(RSS2
);
1031 $feed->setTitle('wallabag — ' . $type . ' feed');
1032 $feed->setLink(Tools
::getPocheUrl());
1033 $feed->setChannelElement('pubDate', date(DATE_RSS
, time()));
1034 $feed->setChannelElement('generator', 'wallabag');
1035 $feed->setDescription('wallabag ' . $type . ' elements');
1037 if ($type == 'tag') {
1038 $entries = $this->store
->retrieveEntriesByTag($tag_id, $user_id);
1041 $entries = $this->store
->getEntriesByView($type, $user_id);
1044 if (count($entries) > 0) {
1045 foreach ($entries as $entry) {
1046 $newItem = $feed->createNewItem();
1047 $newItem->setTitle($entry['title']);
1048 $newItem->setSource(Tools
::getPocheUrl() . '?view=view&id=' . $entry['id']);
1049 $newItem->setLink($entry['url']);
1050 $newItem->setDate(time());
1051 $newItem->setDescription($entry['content']);
1052 $feed->addItem($newItem);
1056 $feed->genarateFeed();
1060 public function emptyCache() {
1061 $files = new RecursiveIteratorIterator(
1062 new RecursiveDirectoryIterator(CACHE
, RecursiveDirectoryIterator
::SKIP_DOTS
),
1063 RecursiveIteratorIterator
::CHILD_FIRST
1066 foreach ($files as $fileinfo) {
1067 $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
1068 $todo($fileinfo->getRealPath());
1071 Tools
::logm('empty cache');
1072 $this->messages
->add('s', _('Cache deleted.'));
1077 * return new purifier object with actual config
1079 protected function getPurifier() {
1080 $config = HTMLPurifier_Config
::createDefault();
1081 $config->set('Cache.SerializerPath', CACHE
);
1082 $config->set('HTML.SafeIframe', true);
1083 $config->set('URI.SafeIframeRegexp', '%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%'); //allow YouTube and Vimeo$purifier = new HTMLPurifier($config);
1085 return new HTMLPurifier($config);