]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/Poche.class.php
4b26574d08433c194bfacce40daadb20fd3bcc46
3 * poche, a read it later open source system
6 * @author Nicolas LÅ“uillet <support@inthepoche.com>
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 # @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' ))
35 public function __construct ()
37 if ( $this- > configFileIsAvailable ()) {
41 if ( $this- > themeIsInstalled ()) {
45 if ( $this- > systemIsInstalled ()) {
46 $this- > store
= new Database ();
47 $this- > messages
= new Messages ();
49 if (! $this- > store
-> isInstalled ()) {
55 private function init ()
58 Session
:: $sessionName = 'poche' ;
61 if ( isset ( $_SESSION [ 'poche_user' ]) && $_SESSION [ 'poche_user' ] != array ()) {
62 $this- > user
= $_SESSION [ 'poche_user' ];
64 # fake user, just for install & login screens
65 $this- > user
= new User ();
66 $this- > user
-> setConfig ( $this- > getDefaultConfig ());
70 $language = $this- > user
-> getConfigValue ( 'language' );
71 putenv ( 'LC_ALL=' . $language );
72 setlocale ( LC_ALL
, $language );
73 bindtextdomain ( $language , LOCALE
);
74 textdomain ( $language );
77 $this- > pagination
= new Paginator ( $this- > user
-> getConfigValue ( 'pager' ), 'p' );
80 $themeDirectory = $this- > user
-> getConfigValue ( 'theme' );
82 if ( $themeDirectory === false ) {
83 $themeDirectory = DEFAULT_THEME
;
86 $this- > currentTheme
= $themeDirectory ;
89 $languageDirectory = $this- > user
-> getConfigValue ( 'language' );
91 if ( $languageDirectory === false ) {
92 $languageDirectory = DEFAULT_THEME
;
95 $this- > currentLanguage
= $languageDirectory ;
98 public function configFileIsAvailable () {
99 if (! self
:: $configFileAvailable ) {
100 $this- > notInstalledMessage
[] = 'You have to rename inc/poche/config.inc.php.new to inc/poche/config.inc.php.' ;
108 public function themeIsInstalled () {
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 ) {
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>' ;
116 if (! is_writable ( CACHE
)) {
117 $this- > notInstalledMessage
[] = 'You don \' t have write access on cache directory.' ;
119 self
:: $canRenderTemplates = false ;
124 # Check if the selected theme and its requirements are present
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 () . ')' ;
128 self
:: $canRenderTemplates = false ;
133 foreach ( $this- > installedThemes
[ $this- > getTheme ()][ 'requires' ] as $requiredTheme ) {
134 if (! is_dir ( THEME
. '/' . $requiredTheme )) {
135 $this- > notInstalledMessage
[] = 'The required "' . $requiredTheme . '" theme is missing for the current theme (' . $this- > getTheme () . ')' ;
137 self
:: $canRenderTemplates = false ;
152 * all checks before installation.
153 * @todo move HTML to template
156 public function systemIsInstalled ()
160 $configSalt = defined ( 'SALT' ) ? constant ( 'SALT' ) : '' ;
162 if ( empty ( $configSalt )) {
163 $this- > notInstalledMessage
[] = 'You have not yet filled in the SALT value in the config.inc.php file.' ;
166 if ( STORAGE
== 'sqlite' && ! file_exists ( STORAGE_SQLITE
)) {
167 Tools
:: logm ( 'sqlite file doesn \' t exist' );
168 $this- > notInstalledMessage
[] = 'sqlite file doesn \' t exist, you can find it in install folder. Copy it in /db folder.' ;
171 if ( is_dir ( ROOT
. '/install' ) && ! DEBUG_POCHE
) {
172 $this- > notInstalledMessage
[] = 'you have to delete the /install folder before using poche.' ;
175 if ( STORAGE
== 'sqlite' && ! is_writable ( STORAGE_SQLITE
)) {
176 Tools
:: logm ( 'you don \' t have write access on sqlite file' );
177 $this- > notInstalledMessage
[] = 'You don \' t have write access on sqlite file.' ;
188 public function getNotInstalledMessage () {
189 return $this- > notInstalledMessage
;
192 private function initTpl ()
194 $loaderChain = new Twig_Loader_Chain ();
196 # add the current theme as first to the loader chain so Twig will look there first for overridden template files
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)' );
204 # add all required themes to the loader chain
205 foreach ( $this- > installedThemes
[ $this- > getTheme ()][ 'requires' ] as $requiredTheme ) {
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 () . ')' );
215 $twig_params = array ();
217 $twig_params = array ( 'cache' => CACHE
);
220 $this- > tpl
= new Twig_Environment ( $loaderChain , $twig_params );
221 $this- > tpl
-> addExtension ( new Twig_Extensions_Extension_I18n ());
223 # filter to display domain name of an url
224 $filter = new Twig_SimpleFilter ( 'getDomain' , 'Tools::getDomain' );
225 $this- > tpl
-> addFilter ( $filter );
227 # filter for reading time
228 $filter = new Twig_SimpleFilter ( 'getReadingTime' , 'Tools::getReadingTime' );
229 $this- > tpl
-> addFilter ( $filter );
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 );
236 private function install ()
238 Tools
:: logm ( 'poche still not installed' );
239 echo $this- > tpl
-> render ( 'install.twig' , array (
240 'token' => Session
:: getToken (),
241 'theme' => $this- > getTheme (),
242 'poche_url' => Tools
:: getPocheUrl ()
244 if ( isset ( $_GET [ 'install' ])) {
245 if (( $_POST [ 'password' ] == $_POST [ 'password_repeat' ])
246 && $_POST [ 'password' ] != "" && $_POST [ 'login' ] != "" ) {
247 # let's rock, install poche baby !
248 if ( $this- > store
-> install ( $_POST [ 'login' ], Tools
:: encodeString ( $_POST [ 'password' ] . $_POST [ 'login' ])))
251 Tools
:: logm ( 'poche is now installed' );
256 Tools
:: logm ( 'error during installation' );
263 public function getTheme () {
264 return $this- > currentTheme
;
267 public function getLanguage () {
268 return $this- > currentLanguage
;
271 public function getInstalledThemes () {
272 $handle = opendir ( THEME
);
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
278 if (! is_dir ( THEME
. '/' . $theme ) || in_array ( $theme , array ( '..' , '.' ))) {
284 if ( $theme === $this- > getTheme ()) {
288 $themes [] = array ( 'name' => $theme , 'current' => $current );
295 public function getInstalledLanguages () {
296 $handle = opendir ( LOCALE
);
297 $languages = array ();
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 ( '..' , '.' ))) {
308 if ( $language === $this- > getLanguage ()) {
312 $languages [] = array ( 'name' => $language , 'current' => $current );
318 public function getDefaultConfig ()
321 'pager' => PAGINATION
,
323 'theme' => DEFAULT_THEME
328 * Call action (mark as fav, archive, delete, etc.)
330 public function action ( $action , Url
$url , $id = 0 , $import = FALSE , $autoclose = FALSE )
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' ];
340 if ( $this- > store
-> add ( $url- > getUrl (), $title , $body , $this- > user
-> getId ())) {
341 Tools
:: logm ( 'add link ' . $url- > getUrl ());
343 if ( STORAGE
== 'postgres' ) {
344 $sequence = 'entries_id_seq' ;
346 $last_id = $this- > store
-> getLastId ( $sequence );
347 if ( DOWNLOAD_PICTURES
) {
348 $content = filtre_picture ( $body , $url- > getUrl (), $last_id );
349 Tools
:: logm ( 'updating content article' );
350 $this- > store
-> updateContent ( $last_id , $content , $this- > user
-> getId ());
353 $this- > messages
-> add ( 's' , _ ( 'the link has been added successfully' ));
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 ());
364 if ( $autoclose == TRUE ) {
365 Tools
:: redirect ( '?view=home' );
367 Tools
:: redirect ( '?view=home&closewin=true' );
372 $msg = 'delete link #' . $id ;
373 if ( $this- > store
-> deleteById ( $id , $this- > user
-> getId ())) {
374 if ( DOWNLOAD_PICTURES
) {
375 remove_directory ( ABS_PATH
. $id );
377 $this- > messages
-> add ( 's' , _ ( 'the link has been deleted successfully' ));
380 $this- > messages
-> add ( 'e' , _ ( 'the link wasn \' t deleted' ));
381 $msg = 'error : can \' t delete link #' . $id ;
384 Tools
:: redirect ( '?' );
387 $this- > store
-> favoriteById ( $id , $this- > user
-> getId ());
388 Tools
:: logm ( 'mark as favorite link #' . $id );
393 case 'toggle_archive' :
394 $this- > store
-> archiveById ( $id , $this- > user
-> getId ());
395 Tools
:: logm ( 'archive link #' . $id );
401 $tags = explode ( ',' , $_POST [ 'value' ]);
402 $entry_id = $_POST [ 'entry_id' ];
403 foreach ( $tags as $key => $tag_value ) {
404 $value = trim ( $tag_value );
405 $tag = $this- > store
-> retrieveTagByValue ( $value );
409 $tag = $this- > store
-> createTag ( $value );
411 if ( STORAGE
== 'postgres' ) {
412 $sequence = 'tags_id_seq' ;
414 $tag_id = $this- > store
-> getLastId ( $sequence );
417 $tag_id = $tag [ 'id' ];
420 # we assign the tag to the article
421 $this- > store
-> setTagToEntry ( $tag_id , $entry_id );
426 $tag_id = $_GET [ 'tag_id' ];
427 $this- > store
-> removeTagForEntry ( $id , $tag_id );
435 function displayView ( $view , $id = 0 )
442 $dev = $this- > getPocheVersion ( 'dev' );
443 $prod = $this- > getPocheVersion ( 'prod' );
444 $compare_dev = version_compare ( POCHE
, $dev );
445 $compare_prod = version_compare ( POCHE
, $prod );
446 $themes = $this- > getInstalledThemes ();
447 $languages = $this- > getInstalledLanguages ();
448 $token = $this- > user
-> getConfigValue ( 'token' );
449 $http_auth = ( isset ( $_SERVER [ 'PHP_AUTH_USER' ]) || isset ( $_SERVER [ 'REMOTE_USER' ])) ? true : false ;
452 'languages' => $languages ,
455 'compare_dev' => $compare_dev ,
456 'compare_prod' => $compare_prod ,
458 'user_id' => $this- > user
-> getId (),
459 'http_auth' => $http_auth ,
461 Tools
:: logm ( 'config view' );
465 $tags = $this- > store
-> retrieveTagsByEntry ( $id );
472 $entries = $this- > store
-> retrieveEntriesByTag ( $id );
473 $tag = $this- > store
-> retrieveTag ( $id );
476 'entries' => $entries ,
480 $token = $this- > user
-> getConfigValue ( 'token' );
481 $tags = $this- > store
-> retrieveAllTags ();
484 'user_id' => $this- > user
-> getId (),
489 $entry = $this- > store
-> retrieveOneById ( $id , $this- > user
-> getId ());
490 if ( $entry != NULL ) {
491 Tools
:: logm ( 'view link #' . $id );
492 $content = $entry [ 'content' ];
493 if ( function_exists ( 'tidy_parse_string' )) {
494 $tidy = tidy_parse_string ( $content , array ( 'indent' => true , 'show-body-only' => true ), 'UTF8' );
495 $tidy- > cleanRepair ();
496 $content = $tidy- > value
;
500 $flattr = new FlattrItem ();
501 $flattr- > checkItem ( $entry [ 'url' ], $entry [ 'id' ]);
504 $tags = $this- > store
-> retrieveTagsByEntry ( $entry [ 'id' ]);
508 'content' => $content ,
514 Tools
:: logm ( 'error in view call : entry is null' );
517 default : # home, favorites and archive views
518 $entries = $this- > store
-> getEntriesByView ( $view , $this- > user
-> getId ());
525 if ( count ( $entries ) > 0 ) {
526 $this- > pagination
-> set_total ( count ( $entries ));
527 $page_links = $this- > pagination
-> page_links ( '?view=' . $view . '&sort=' . $_SESSION [ 'sort' ] . '&' );
528 $datas = $this- > store
-> getEntriesByView ( $view , $this- > user
-> getId (), $this- > pagination
-> get_limit ());
529 $tpl_vars [ 'entries' ] = $datas ;
530 $tpl_vars [ 'page_links' ] = $page_links ;
531 $tpl_vars [ 'nb_results' ] = count ( $entries );
533 Tools
:: logm ( 'display ' . $view . ' view' );
541 * update the password of the current user.
542 * if MODE_DEMO is TRUE, the password can't be updated.
543 * @todo add the return value
544 * @todo set the new password in function header like this updatePassword($newPassword)
547 public function updatePassword ()
550 $this- > messages
-> add ( 'i' , _ ( 'in demo mode, you can \' t update your password' ));
551 Tools
:: logm ( 'in demo mode, you can \' t do this' );
552 Tools
:: redirect ( '?view=config' );
555 if ( isset ( $_POST [ 'password' ]) && isset ( $_POST [ 'password_repeat' ])) {
556 if ( $_POST [ 'password' ] == $_POST [ 'password_repeat' ] && $_POST [ 'password' ] != "" ) {
557 $this- > messages
-> add ( 's' , _ ( 'your password has been updated' ));
558 $this- > store
-> updatePassword ( $this- > user
-> getId (), Tools
:: encodeString ( $_POST [ 'password' ] . $this- > user
-> getUsername ()));
560 Tools
:: logm ( 'password updated' );
564 $this- > messages
-> add ( 'e' , _ ( 'the two fields have to be filled & the password must be the same in the two fields' ));
565 Tools
:: redirect ( '?view=config' );
571 public function updateTheme ()
574 if ( empty ( $_POST [ 'theme' ])) {
577 # we are not going to change it to the current theme...
578 if ( $_POST [ 'theme' ] == $this- > getTheme ()) {
579 $this- > messages
-> add ( 'w' , _ ( 'still using the "' . $this- > getTheme () . '" theme!' ));
580 Tools
:: redirect ( '?view=config' );
583 $themes = $this- > getInstalledThemes ();
584 $actualTheme = false ;
586 foreach ( $themes as $theme ) {
587 if ( $theme [ 'name' ] == $_POST [ 'theme' ]) {
593 if (! $actualTheme ) {
594 $this- > messages
-> add ( 'e' , _ ( 'that theme does not seem to be installed' ));
595 Tools
:: redirect ( '?view=config' );
598 $this- > store
-> updateUserConfig ( $this- > user
-> getId (), 'theme' , $_POST [ 'theme' ]);
599 $this- > messages
-> add ( 's' , _ ( 'you have changed your theme preferences' ));
601 $currentConfig = $_SESSION [ 'poche_user' ]-> config
;
602 $currentConfig [ 'theme' ] = $_POST [ 'theme' ];
604 $_SESSION [ 'poche_user' ]-> setConfig ( $currentConfig );
606 Tools
:: redirect ( '?view=config' );
609 public function updateLanguage ()
612 if ( empty ( $_POST [ 'language' ])) {
615 # we are not going to change it to the current language...
616 if ( $_POST [ 'language' ] == $this- > getLanguage ()) {
617 $this- > messages
-> add ( 'w' , _ ( 'still using the "' . $this- > getLanguage () . '" language!' ));
618 Tools
:: redirect ( '?view=config' );
621 $languages = $this- > getInstalledLanguages ();
622 $actualLanguage = false ;
624 foreach ( $languages as $language ) {
625 if ( $language [ 'name' ] == $_POST [ 'language' ]) {
626 $actualLanguage = true ;
631 if (! $actualLanguage ) {
632 $this- > messages
-> add ( 'e' , _ ( 'that language does not seem to be installed' ));
633 Tools
:: redirect ( '?view=config' );
636 $this- > store
-> updateUserConfig ( $this- > user
-> getId (), 'language' , $_POST [ 'language' ]);
637 $this- > messages
-> add ( 's' , _ ( 'you have changed your language preferences' ));
639 $currentConfig = $_SESSION [ 'poche_user' ]-> config
;
640 $currentConfig [ 'language' ] = $_POST [ 'language' ];
642 $_SESSION [ 'poche_user' ]-> setConfig ( $currentConfig );
644 Tools
:: redirect ( '?view=config' );
648 * get credentials from differents sources
649 * it redirects the user to the $referer link
652 private function credentials () {
653 if ( isset ( $_SERVER [ 'PHP_AUTH_USER' ])) {
654 return array ( $_SERVER [ 'PHP_AUTH_USER' ], 'php_auth' );
656 if (! empty ( $_POST [ 'login' ]) && ! empty ( $_POST [ 'password' ])) {
657 return array ( $_POST [ 'login' ], $_POST [ 'password' ]);
659 if ( isset ( $_SERVER [ 'REMOTE_USER' ])) {
660 return array ( $_SERVER [ 'REMOTE_USER' ], 'http_auth' );
663 return array ( false , false );
667 * checks if login & password are correct and save the user in session.
668 * it redirects the user to the $referer link
669 * @param string $referer the url to redirect after login
670 * @todo add the return value
673 public function login ( $referer )
675 list ( $login , $password )= $this- > credentials ();
676 if ( $login === false || $password === false ) {
677 $this- > messages
-> add ( 'e' , _ ( 'login failed: you have to fill all fields' ));
678 Tools
:: logm ( 'login failed' );
681 if (! empty ( $login ) && ! empty ( $password )) {
682 $user = $this- > store
-> login ( $login , Tools
:: encodeString ( $password . $login ));
683 if ( $user != array ()) {
684 # Save login into Session
685 $longlastingsession = isset ( $_POST [ 'longlastingsession' ]);
686 Session
:: login ( $user [ 'username' ], $user [ 'password' ], $login , Tools
:: encodeString ( $password . $login ), $longlastingsession , array ( 'poche_user' => new User ( $user )));
687 $this- > messages
-> add ( 's' , _ ( 'welcome to your poche' ));
688 Tools
:: logm ( 'login successful' );
689 Tools
:: redirect ( $referer );
691 $this- > messages
-> add ( 'e' , _ ( 'login failed: bad login or password' ));
692 Tools
:: logm ( 'login failed' );
698 * log out the poche user. It cleans the session.
699 * @todo add the return value
702 public function logout ()
704 $this- > user
= array ();
706 $this- > messages
-> add ( 's' , _ ( 'see you soon!' ));
707 Tools
:: logm ( 'logout' );
712 * import from Instapaper. poche needs a ./instapaper-export.html file
713 * @todo add the return value
714 * @param string $targetFile the file used for importing
717 private function importFromInstapaper ( $targetFile )
719 # TODO gestion des articles favs
720 $html = new simple_html_dom ();
721 $html- > load_file ( $targetFile );
722 Tools
:: logm ( 'starting import from instapaper' );
726 foreach ( $html- > find ( 'ol' ) as $ul )
728 foreach ( $ul- > find ( 'li' ) as $li )
731 $url = new Url ( base64_encode ( $a [ 0 ]-> href
));
732 $this- > action ( 'add' , $url , 0 , TRUE );
735 if ( STORAGE
== 'postgres' ) {
736 $sequence = 'entries_id_seq' ;
738 $last_id = $this- > store
-> getLastId ( $sequence );
739 $this- > action ( 'toggle_archive' , $url , $last_id , TRUE );
743 # the second <ol> is for read links
746 $this- > messages
-> add ( 's' , _ ( 'import from instapaper completed' ));
747 Tools
:: logm ( 'import from instapaper completed' );
752 * import from Pocket. poche needs a ./ril_export.html file
753 * @todo add the return value
754 * @param string $targetFile the file used for importing
757 private function importFromPocket ( $targetFile )
759 # TODO gestion des articles favs
760 $html = new simple_html_dom ();
761 $html- > load_file ( $targetFile );
762 Tools
:: logm ( 'starting import from pocket' );
766 foreach ( $html- > find ( 'ul' ) as $ul )
768 foreach ( $ul- > find ( 'li' ) as $li )
771 $url = new Url ( base64_encode ( $a [ 0 ]-> href
));
772 $this- > action ( 'add' , $url , 0 , TRUE );
775 if ( STORAGE
== 'postgres' ) {
776 $sequence = 'entries_id_seq' ;
778 $last_id = $this- > store
-> getLastId ( $sequence );
779 $this- > action ( 'toggle_archive' , $url , $last_id , TRUE );
783 # the second <ul> is for read links
786 $this- > messages
-> add ( 's' , _ ( 'import from pocket completed' ));
787 Tools
:: logm ( 'import from pocket completed' );
792 * import from Readability. poche needs a ./readability file
793 * @todo add the return value
794 * @param string $targetFile the file used for importing
797 private function importFromReadability ( $targetFile )
799 # TODO gestion des articles lus / favs
800 $str_data = file_get_contents ( $targetFile );
801 $data = json_decode ( $str_data , true );
802 Tools
:: logm ( 'starting import from Readability' );
804 foreach ( $data as $key => $value ) {
808 foreach ( $value as $attr => $attr_value ) {
809 if ( $attr == 'article__url' ) {
810 $url = new Url ( base64_encode ( $attr_value ));
813 if ( STORAGE
== 'postgres' ) {
814 $sequence = 'entries_id_seq' ;
816 if ( $attr_value == 'true' ) {
817 if ( $attr == 'favorite' ) {
820 if ( $attr == 'archive' ) {
826 if (! is_null ( $url ) && $url- > isCorrect ()) {
827 $this- > action ( 'add' , $url , 0 , TRUE );
830 $last_id = $this- > store
-> getLastId ( $sequence );
831 $this- > action ( 'toggle_fav' , $url , $last_id , TRUE );
834 $last_id = $this- > store
-> getLastId ( $sequence );
835 $this- > action ( 'toggle_archive' , $url , $last_id , TRUE );
839 $this- > messages
-> add ( 's' , _ ( 'import from Readability completed. ' . $count . ' new links.' ));
840 Tools
:: logm ( 'import from Readability completed' );
845 * import datas into your poche
846 * @param string $from name of the service to import : pocket, instapaper or readability
847 * @todo add the return value
850 public function import ( $from )
853 'pocket' => 'importFromPocket' ,
854 'readability' => 'importFromReadability' ,
855 'instapaper' => 'importFromInstapaper'
858 if (! isset ( $providers [ $from ])) {
859 $this- > messages
-> add ( 'e' , _ ( 'Unknown import provider.' ));
863 $targetDefinition = 'IMPORT_' . strtoupper ( $from ) . '_FILE' ;
864 $targetFile = constant ( $targetDefinition );
866 if (! defined ( $targetDefinition )) {
867 $this- > messages
-> add ( 'e' , _ ( 'Incomplete inc/poche/define.inc.php file, please define "' . $targetDefinition . '".' ));
871 if (! file_exists ( $targetFile )) {
872 $this- > messages
-> add ( 'e' , _ ( 'Could not find required "' . $targetFile . '" import file.' ));
876 $this- > $providers [ $from ]( $targetFile );
880 * export poche entries in json
881 * @return json all poche entries
883 public function export ()
885 $entries = $this- > store
-> retrieveAll ( $this- > user
-> getId ());
886 echo $this- > tpl
-> render ( 'export.twig' , array (
887 'export' => Tools
:: renderJson ( $entries ),
889 Tools
:: logm ( 'export view' );
893 * Checks online the latest version of poche and cache it
894 * @param string $which 'prod' or 'dev'
895 * @return string latest $which version
897 private function getPocheVersion ( $which = 'prod' )
899 $cache_file = CACHE
. '/' . $which ;
901 # checks if the cached version file exists
902 if ( file_exists ( $cache_file ) && ( filemtime ( $cache_file ) > ( time () - 86400 ))) {
903 $version = file_get_contents ( $cache_file );
905 $version = file_get_contents ( 'http://static.inthepoche.com/versions/' . $which );
906 file_put_contents ( $cache_file , $version , LOCK_EX
);
911 public function generateToken ()
913 if ( ini_get ( 'open_basedir' ) === '' ) {
914 $token = substr ( base64_encode ( file_get_contents ( '/dev/urandom' , false , null , 0 , 20 )), 0 , 15 );
917 $token = substr ( base64_encode ( uniqid ( mt_rand (), true )), 0 , 20 );
920 $this- > store
-> updateUserConfig ( $this- > user
-> getId (), 'token' , $token );
921 $currentConfig = $_SESSION [ 'poche_user' ]-> config
;
922 $currentConfig [ 'token' ] = $token ;
923 $_SESSION [ 'poche_user' ]-> setConfig ( $currentConfig );
926 public function generateFeeds ( $token , $user_id , $tag_id , $type = 'home' )
928 $allowed_types = array ( 'home' , 'fav' , 'archive' , 'tag' );
929 $config = $this- > store
-> getConfigUser ( $user_id );
931 if (! in_array ( $type , $allowed_types ) ||
932 $token != $config [ 'token' ]) {
933 die ( _ ( 'Uh, there is a problem while generating feeds.' ));
937 $feed = new FeedWriter ( RSS2
);
938 $feed- > setTitle ( 'poche - ' . $type . ' feed' );
939 $feed- > setLink ( Tools
:: getPocheUrl ());
940 $feed- > setChannelElement ( 'updated' , date ( DATE_RSS
, time ()));
941 $feed- > setChannelElement ( 'author' , 'poche' );
943 if ( $type == 'tag' ) {
944 $entries = $this- > store
-> retrieveEntriesByTag ( $tag_id );
947 $entries = $this- > store
-> getEntriesByView ( $type , $user_id );
950 if ( count ( $entries ) > 0 ) {
951 foreach ( $entries as $entry ) {
952 $newItem = $feed- > createNewItem ();
953 $newItem- > setTitle ( htmlentities ( $entry [ 'title' ]));
954 $newItem- > setLink ( Tools
:: getPocheUrl () . '?view=view&id=' . $entry [ 'id' ]);
955 $newItem- > setDate ( time ());
956 $newItem- > setDescription ( $entry [ 'content' ]);
957 $feed- > addItem ( $newItem );
961 $feed- > genarateFeed ();