]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/Poche.class.php
don't call flattr if flattr is disabled
[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 7 * @copyright 2013
3602405e 8 * @license http://opensource.org/licenses/MIT see COPYING file
eb1af592
NL
9 */
10
11class Poche
12{
3602405e
NL
13 /**
14 * @var User
15 */
7ce7ec4c 16 public $user;
3602405e
NL
17 /**
18 * @var Database
19 */
eb1af592 20 public $store;
3602405e
NL
21 /**
22 * @var Template
23 */
eb1af592 24 public $tpl;
3602405e
NL
25 /**
26 * @var Language
27 */
28 public $language;
29 /**
30 * @var Routing
31 */
32 public $routing;
33 /**
34 * @var Messages
35 */
55821e04 36 public $messages;
3602405e
NL
37 /**
38 * @var Paginator
39 */
6a361945 40 public $pagination;
182faf26 41
00dbaf90 42 public function __construct()
eb1af592 43 {
3602405e 44 $this->init();
eb1af592 45 }
182faf26
MR
46
47 private function init()
00dbaf90
NL
48 {
49 Tools::initPhp();
eb1af592 50
3602405e
NL
51 $pocheUser = Session::getParam('poche_user');
52
53 if ($pocheUser && $pocheUser != array()) {
54 $this->user = $pocheUser;
00dbaf90 55 } else {
3602405e 56 // fake user, just for install & login screens
00dbaf90
NL
57 $this->user = new User();
58 $this->user->setConfig($this->getDefaultConfig());
59 }
60
3602405e
NL
61 $this->pagination = new Paginator($this->user->getConfigValue('pager'), 'p');
62 $this->language = new Language($this);
63 $this->tpl = new Template($this);
64 $this->store = new Database();
65 $this->messages = new Messages();
66 $this->routing = new Routing($this);
00dbaf90 67 }
182faf26 68
3602405e
NL
69 public function run()
70 {
71 $this->routing->run();
00dbaf90 72 }
182faf26 73
4a291288 74 /**
3602405e 75 * Creates a new user
4a291288 76 */
046b9316 77 public function createNewUser($username, $password, $email = "")
eb1af592 78 {
2f26729c
NL
79 if (!empty($username) && !empty($password)){
80 $newUsername = filter_var($username, FILTER_SANITIZE_STRING);
046b9316 81 $email = filter_var($email, FILTER_SANITIZE_STRING);
2f26729c 82 if (!$this->store->userExists($newUsername)){
046b9316 83 if ($this->store->install($newUsername, Tools::encodeString($password . $newUsername), $email)) {
2f26729c
NL
84 Tools::logm('The new user ' . $newUsername . ' has been installed');
85 $this->messages->add('s', sprintf(_('The new user %s has been installed. Do you want to <a href="?logout">logout ?</a>'), $newUsername));
86 Tools::redirect();
4d99bae8 87 }
88 else {
2f26729c 89 Tools::logm('error during adding new user');
4d99bae8 90 Tools::redirect();
91 }
92 }
2f26729c
NL
93 else {
94 $this->messages->add('e', sprintf(_('Error : An user with the name %s already exists !'), $newUsername));
95 Tools::logm('An user with the name ' . $newUsername . ' already exists !');
96 Tools::redirect();
97 }
4d99bae8 98 }
99 }
b6413975 100
3602405e
NL
101 /**
102 * Delete an existing user
103 */
2f26729c 104 public function deleteUser($password)
3602405e 105 {
2f26729c
NL
106 if ($this->store->listUsers() > 1) {
107 if (Tools::encodeString($password . $this->user->getUsername()) == $this->store->getUserPassword($this->user->getId())) {
108 $username = $this->user->getUsername();
109 $this->store->deleteUserConfig($this->user->getId());
110 Tools::logm('The configuration for user '. $username .' has been deleted !');
111 $this->store->deleteTagsEntriesAndEntries($this->user->getId());
112 Tools::logm('The entries for user '. $username .' has been deleted !');
113 $this->store->deleteUser($this->user->getId());
114 Tools::logm('User '. $username .' has been completely deleted !');
115 Session::logout();
116 Tools::logm('logout');
117 Tools::redirect();
118 $this->messages->add('s', sprintf(_('User %s has been successfully deleted !'), $username));
4d99bae8 119 }
120 else {
2f26729c
NL
121 Tools::logm('Bad password !');
122 $this->messages->add('e', _('Error : The password is wrong !'));
4d99bae8 123 }
124 }
2f26729c
NL
125 else {
126 Tools::logm('Only user !');
127 $this->messages->add('e', _('Error : You are the only user, you cannot delete your account !'));
128 }
4d99bae8 129 }
eb1af592 130
8d3275be 131 public function getDefaultConfig()
182faf26 132 {
8d3275be
NL
133 return array(
134 'pager' => PAGINATION,
135 'language' => LANG,
00dbaf90
NL
136 'theme' => DEFAULT_THEME
137 );
8d3275be
NL
138 }
139
eb1af592
NL
140 /**
141 * Call action (mark as fav, archive, delete, etc.)
142 */
926acd7b 143 public function action($action, Url $url, $id = 0, $import = FALSE, $autoclose = FALSE, $tags = null)
eb1af592
NL
144 {
145 switch ($action)
146 {
147 case 'add':
a297fb1e
MR
148 $content = Tools::getPageContent($url);
149 $title = ($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled');
150 $body = $content['rss']['channel']['item']['description'];
151
152 // clean content from prevent xss attack
2f26729c 153 $purifier = $this->_getPurifier();
a297fb1e
MR
154 $title = $purifier->purify($title);
155 $body = $purifier->purify($body);
1570a653 156
182faf26 157 //search for possible duplicate
8d7cd2cc 158 $duplicate = NULL;
a297fb1e 159 $duplicate = $this->store->retrieveOneByURL($url->getUrl(), $this->user->getId());
488fc63b 160
182faf26 161 $last_id = $this->store->add($url->getUrl(), $title, $body, $this->user->getId());
a297fb1e 162 if ( $last_id ) {
ec397236 163 Tools::logm('add link ' . $url->getUrl());
ec397236 164 if (DOWNLOAD_PICTURES) {
3602405e 165 $content = Picture::filterPicture($body, $url->getUrl(), $last_id);
ec397236
NL
166 Tools::logm('updating content article');
167 $this->store->updateContent($last_id, $content, $this->user->getId());
168 }
488fc63b
MR
169
170 if ($duplicate != NULL) {
171 // 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
172 Tools::logm('link ' . $url->getUrl() . ' is a duplicate');
173 // 1) - preserve tags and favorite, then drop old entry
174 $this->store->reassignTags($duplicate['id'], $last_id);
175 if ($duplicate['is_fav']) {
176 $this->store->favoriteById($last_id, $this->user->getId());
177 }
178 if ($this->store->deleteById($duplicate['id'], $this->user->getId())) {
179 Tools::logm('previous link ' . $url->getUrl() .' entry deleted');
180 }
181 }
182
182faf26 183 $this->messages->add('s', _('the link has been added successfully'));
eb1af592
NL
184 }
185 else {
a297fb1e
MR
186 $this->messages->add('e', _('error during insertion : the link wasn\'t added'));
187 Tools::logm('error during insertion : the link wasn\'t added ' . $url->getUrl());
b916bcfc 188 }
ec397236 189
a297fb1e
MR
190 if ($autoclose == TRUE) {
191 Tools::redirect('?view=home');
192 } else {
193 Tools::redirect('?view=home&closewin=true');
eb1af592
NL
194 }
195 break;
196 case 'delete':
bc1ee852 197 $msg = 'delete link #' . $id;
8d3275be 198 if ($this->store->deleteById($id, $this->user->getId())) {
eb1af592 199 if (DOWNLOAD_PICTURES) {
3602405e 200 Picture::removeDirectory(ABS_PATH . $id);
eb1af592 201 }
6a361945 202 $this->messages->add('s', _('the link has been deleted successfully'));
eb1af592
NL
203 }
204 else {
6a361945 205 $this->messages->add('e', _('the link wasn\'t deleted'));
bc1ee852 206 $msg = 'error : can\'t delete link #' . $id;
eb1af592 207 }
bc1ee852 208 Tools::logm($msg);
985ce3ec 209 Tools::redirect('?');
eb1af592
NL
210 break;
211 case 'toggle_fav' :
8d3275be 212 $this->store->favoriteById($id, $this->user->getId());
eb1af592 213 Tools::logm('mark as favorite link #' . $id);
c2cf7075
MR
214 if ( Tools::isAjaxRequest() ) {
215 echo 1;
216 exit;
217 }
218 else {
219 Tools::redirect();
220 }
eb1af592
NL
221 break;
222 case 'toggle_archive' :
8d3275be 223 $this->store->archiveById($id, $this->user->getId());
eb1af592 224 Tools::logm('archive link #' . $id);
c2cf7075
MR
225 if ( Tools::isAjaxRequest() ) {
226 echo 1;
227 exit;
228 }
229 else {
230 Tools::redirect();
231 }
eb1af592 232 break;
f14807de
NL
233 case 'archive_all' :
234 $this->store->archiveAll($this->user->getId());
235 Tools::logm('archive all links');
a297fb1e 236 Tools::redirect();
f14807de 237 break;
c432fa16 238 case 'add_tag' :
decc23aa 239 if (isset($_GET['search'])) {
240 //when we want to apply a tag to a search
decc23aa 241 $tags = array($_GET['search']);
242 $allentry_ids = $this->store->search($tags[0], $this->user->getId());
243 $entry_ids = array();
244 foreach ($allentry_ids as $eachentry) {
245 $entry_ids[] = $eachentry[0];
246 }
247 } else { //add a tag to a single article
248 $tags = explode(',', $_POST['value']);
249 $entry_ids = array($_POST['entry_id']);
fb26cc93 250 }
decc23aa 251 foreach($entry_ids as $entry_id) {
252 $entry = $this->store->retrieveOneById($entry_id, $this->user->getId());
253 if (!$entry) {
254 $this->messages->add('e', _('Article not found!'));
255 Tools::logm('error : article not found');
256 Tools::redirect();
257 }
258 //get all already set tags to preven duplicates
259 $already_set_tags = array();
260 $entry_tags = $this->store->retrieveTagsByEntry($entry_id);
261 foreach ($entry_tags as $tag) {
262 $already_set_tags[] = $tag['value'];
263 }
264 foreach($tags as $key => $tag_value) {
265 $value = trim($tag_value);
266 if ($value && !in_array($value, $already_set_tags)) {
267 $tag = $this->store->retrieveTagByValue($value);
268 if (is_null($tag)) {
269 # we create the tag
270 $tag = $this->store->createTag($value);
271 $sequence = '';
272 if (STORAGE == 'postgres') {
273 $sequence = 'tags_id_seq';
274 }
275 $tag_id = $this->store->getLastId($sequence);
fb26cc93 276 }
decc23aa 277 else {
278 $tag_id = $tag['id'];
279 }
280
281 # we assign the tag to the article
282 $this->store->setTagToEntry($tag_id, $entry_id);
283 }
c432fa16 284 }
c432fa16 285 }
9c743ab9 286 $this->messages->add('s', _('The tag has been applied successfully'));
24696800 287 Tools::logm('The tag has been applied successfully');
a297fb1e 288 Tools::redirect();
c432fa16
NL
289 break;
290 case 'remove_tag' :
291 $tag_id = $_GET['tag_id'];
b89d5a2b
NL
292 $entry = $this->store->retrieveOneById($id, $this->user->getId());
293 if (!$entry) {
294 $this->messages->add('e', _('Article not found!'));
295 Tools::logm('error : article not found');
296 Tools::redirect();
297 }
c432fa16 298 $this->store->removeTagForEntry($id, $tag_id);
9c743ab9 299 Tools::logm('tag entry deleted');
24696800 300 if ($this->store->cleanUnusedTag($tag_id)) {
301 Tools::logm('tag deleted');
302 }
9c743ab9 303 $this->messages->add('s', _('The tag has been successfully deleted'));
c432fa16
NL
304 Tools::redirect();
305 break;
eb1af592
NL
306 default:
307 break;
308 }
309 }
310
311 function displayView($view, $id = 0)
312 {
313 $tpl_vars = array();
314
315 switch ($view)
316 {
3c133bff
NL
317 case 'about':
318 break;
eb1af592 319 case 'config':
2f26729c 320 $dev_infos = $this->_getPocheVersion('dev');
11c680f9
NL
321 $dev = trim($dev_infos[0]);
322 $check_time_dev = date('d-M-Y H:i', $dev_infos[1]);
2f26729c 323 $prod_infos = $this->_getPocheVersion('prod');
11c680f9
NL
324 $prod = trim($prod_infos[0]);
325 $check_time_prod = date('d-M-Y H:i', $prod_infos[1]);
031df528
NL
326 $compare_dev = version_compare(POCHE, $dev);
327 $compare_prod = version_compare(POCHE, $prod);
3602405e
NL
328 $themes = $this->tpl->getInstalledThemes();
329 $languages = $this->language->getInstalledLanguages();
72c20a52 330 $token = $this->user->getConfigValue('token');
1810c13b 331 $http_auth = (isset($_SERVER['PHP_AUTH_USER']) || isset($_SERVER['REMOTE_USER'])) ? true : false;
4d99bae8 332 $only_user = ($this->store->listUsers() > 1) ? false : true;
32520785 333 $tpl_vars = array(
00dbaf90 334 'themes' => $themes,
5011388f 335 'languages' => $languages,
32520785
NL
336 'dev' => $dev,
337 'prod' => $prod,
11c680f9
NL
338 'check_time_dev' => $check_time_dev,
339 'check_time_prod' => $check_time_prod,
32520785
NL
340 'compare_dev' => $compare_dev,
341 'compare_prod' => $compare_prod,
72c20a52
NL
342 'token' => $token,
343 'user_id' => $this->user->getId(),
df6afaf0 344 'http_auth' => $http_auth,
4d99bae8 345 'only_user' => $only_user
32520785 346 );
eb1af592
NL
347 Tools::logm('config view');
348 break;
6cab59c3
NL
349 case 'edit-tags':
350 # tags
b89d5a2b
NL
351 $entry = $this->store->retrieveOneById($id, $this->user->getId());
352 if (!$entry) {
353 $this->messages->add('e', _('Article not found!'));
354 Tools::logm('error : article not found');
355 Tools::redirect();
356 }
6cab59c3
NL
357 $tags = $this->store->retrieveTagsByEntry($id);
358 $tpl_vars = array(
c432fa16 359 'entry_id' => $id,
6cab59c3 360 'tags' => $tags,
032e0ca1 361 'entry' => $entry,
4886ed6d
NL
362 );
363 break;
2e2ebe5e 364 case 'tags':
f778e472 365 $token = $this->user->getConfigValue('token');
fb26cc93
MR
366 //if term is set - search tags for this term
367 $term = Tools::checkVar('term');
368 $tags = $this->store->retrieveAllTags($this->user->getId(), $term);
369 if (Tools::isAjaxRequest()) {
370 $result = array();
371 foreach ($tags as $tag) {
372 $result[] = $tag['value'];
373 }
374 echo json_encode($result);
375 exit;
376 }
2e2ebe5e 377 $tpl_vars = array(
f778e472
NL
378 'token' => $token,
379 'user_id' => $this->user->getId(),
2e2ebe5e
NL
380 'tags' => $tags,
381 );
382 break;
a4585f7e
MR
383 case 'search':
384 if (isset($_GET['search'])) {
385 $search = filter_var($_GET['search'], FILTER_SANITIZE_STRING);
386 $tpl_vars['entries'] = $this->store->search($search, $this->user->getId());
387 $count = count($tpl_vars['entries']);
388 $this->pagination->set_total($count);
389 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
390 $this->pagination->page_links('?view=' . $view . '?search=' . $search . '&sort=' . $_SESSION['sort'] . '&' ));
391 $tpl_vars['page_links'] = $page_links;
392 $tpl_vars['nb_results'] = $count;
1b6e21d7 393 $tpl_vars['searchterm'] = $search;
a4585f7e
MR
394 }
395 break;
eb1af592 396 case 'view':
8d3275be 397 $entry = $this->store->retrieveOneById($id, $this->user->getId());
eb1af592
NL
398 if ($entry != NULL) {
399 Tools::logm('view link #' . $id);
400 $content = $entry['content'];
401 if (function_exists('tidy_parse_string')) {
402 $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
403 $tidy->cleanRepair();
404 $content = $tidy->value;
3408ed48 405 }
a3223127 406
3408ed48 407 # flattr checking
37cad522
TC
408 $flattr = NULL;
409 if (FLATTR) {
410 $flattr = new FlattrItem();
411 $flattr->checkItem($entry['url'], $entry['id']);
412 }
413
7b171c73
NL
414 # tags
415 $tags = $this->store->retrieveTagsByEntry($entry['id']);
a3223127 416
3408ed48 417 $tpl_vars = array(
7b171c73
NL
418 'entry' => $entry,
419 'content' => $content,
420 'flattr' => $flattr,
421 'tags' => $tags
3408ed48 422 );
eb1af592
NL
423 }
424 else {
d8d1542e 425 Tools::logm('error in view call : entry is null');
eb1af592
NL
426 }
427 break;
032e0ca1 428 default: # home, favorites, archive and tag views
eb1af592 429 $tpl_vars = array(
3eb04903
N
430 'entries' => '',
431 'page_links' => '',
7f9f5281 432 'nb_results' => '',
6065553c 433 'listmode' => (isset($_COOKIE['listmode']) ? true : false),
eb1af592 434 );
182faf26 435
3602405e 436 //if id is given - we retrieve entries by tag: id is tag id
032e0ca1
MR
437 if ($id) {
438 $tpl_vars['tag'] = $this->store->retrieveTag($id, $this->user->getId());
439 $tpl_vars['id'] = intval($id);
440 }
441
442 $count = $this->store->getEntriesByViewCount($view, $this->user->getId(), $id);
443
444 if ($count > 0) {
445 $this->pagination->set_total($count);
c515ffec 446 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
032e0ca1
MR
447 $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . (($id)?'&id='.$id:'') . '&' ));
448 $tpl_vars['entries'] = $this->store->getEntriesByView($view, $this->user->getId(), $this->pagination->get_limit(), $id);
3eb04903 449 $tpl_vars['page_links'] = $page_links;
032e0ca1 450 $tpl_vars['nb_results'] = $count;
3eb04903 451 }
6a361945 452 Tools::logm('display ' . $view . ' view');
eb1af592
NL
453 break;
454 }
455
456 return $tpl_vars;
457 }
c765c367 458
07ee09f4 459 /**
182faf26
MR
460 * update the password of the current user.
461 * if MODE_DEMO is TRUE, the password can't be updated.
07ee09f4
NL
462 * @todo add the return value
463 * @todo set the new password in function header like this updatePassword($newPassword)
464 * @return boolean
465 */
2f26729c 466 public function updatePassword($password, $confirmPassword)
c765c367 467 {
55821e04 468 if (MODE_DEMO) {
8d3275be 469 $this->messages->add('i', _('in demo mode, you can\'t update your password'));
55821e04 470 Tools::logm('in demo mode, you can\'t do this');
6a361945 471 Tools::redirect('?view=config');
55821e04
NL
472 }
473 else {
2f26729c
NL
474 if (isset($password) && isset($confirmPassword)) {
475 if ($password == $confirmPassword && !empty($password)) {
8d3275be 476 $this->messages->add('s', _('your password has been updated'));
2f26729c 477 $this->store->updatePassword($this->user->getId(), Tools::encodeString($password . $this->user->getUsername()));
c765c367 478 Session::logout();
8d3275be 479 Tools::logm('password updated');
c765c367
NL
480 Tools::redirect();
481 }
482 else {
8d3275be 483 $this->messages->add('e', _('the two fields have to be filled & the password must be the same in the two fields'));
6a361945 484 Tools::redirect('?view=config');
c765c367
NL
485 }
486 }
487 }
488 }
182faf26 489
df6afaf0 490 /**
2f26729c
NL
491 * Get credentials from differents sources
492 * It redirects the user to the $referer link
493 *
df6afaf0
DS
494 * @return array
495 */
2f26729c
NL
496 private function credentials()
497 {
498 if (isset($_SERVER['PHP_AUTH_USER'])) {
499 return array($_SERVER['PHP_AUTH_USER'], 'php_auth', true);
1810c13b 500 }
2f26729c
NL
501 if (!empty($_POST['login']) && !empty($_POST['password'])) {
502 return array($_POST['login'], $_POST['password'], false);
1810c13b 503 }
2f26729c
NL
504 if (isset($_SERVER['REMOTE_USER'])) {
505 return array($_SERVER['REMOTE_USER'], 'http_auth', true);
1810c13b 506 }
5cfafc61 507
2f26729c 508 return array(false, false, false);
6af66b11 509 }
df6afaf0 510
07ee09f4
NL
511 /**
512 * checks if login & password are correct and save the user in session.
513 * it redirects the user to the $referer link
514 * @param string $referer the url to redirect after login
515 * @todo add the return value
516 * @return boolean
517 */
c765c367
NL
518 public function login($referer)
519 {
6af66b11 520 list($login,$password,$isauthenticated)=$this->credentials();
df6afaf0
DS
521 if($login === false || $password === false) {
522 $this->messages->add('e', _('login failed: you have to fill all fields'));
523 Tools::logm('login failed');
524 Tools::redirect();
525 }
526 if (!empty($login) && !empty($password)) {
6af66b11 527 $user = $this->store->login($login, Tools::encodeString($password . $login), $isauthenticated);
7ce7ec4c
NL
528 if ($user != array()) {
529 # Save login into Session
6af66b11
MR
530 $longlastingsession = isset($_POST['longlastingsession']);
531 $passwordTest = ($isauthenticated) ? $user['password'] : Tools::encodeString($password . $login);
532 Session::login($user['username'], $user['password'], $login, $passwordTest, $longlastingsession, array('poche_user' => new User($user)));
9cf6bac1
NL
533
534 # reload l10n
535 $language = $user['config']['language'];
536 @putenv('LC_ALL=' . $language);
537 setlocale(LC_ALL, $language);
538 bindtextdomain($language, LOCALE);
539 textdomain($language);
540
26929c08 541 $this->messages->add('s', _('welcome to your wallabag'));
8d3275be 542 Tools::logm('login successful');
c765c367
NL
543 Tools::redirect($referer);
544 }
8d3275be 545 $this->messages->add('e', _('login failed: bad login or password'));
c765c367
NL
546 Tools::logm('login failed');
547 Tools::redirect();
c765c367
NL
548 }
549 }
550
07ee09f4
NL
551 /**
552 * log out the poche user. It cleans the session.
553 * @todo add the return value
182faf26 554 * @return boolean
07ee09f4 555 */
c765c367
NL
556 public function logout()
557 {
7ce7ec4c 558 $this->user = array();
c765c367 559 Session::logout();
b916bcfc 560 Tools::logm('logout');
c765c367
NL
561 Tools::redirect();
562 }
563
07ee09f4 564 /**
2f26729c 565 * import datas into your wallabag
182faf26 566 * @return boolean
07ee09f4 567 */
2f26729c 568
182faf26
MR
569 public function import() {
570
dc764892 571 if ( isset($_FILES['file']) && $_FILES['file']['tmp_name'] ) {
5ce39784
MR
572 Tools::logm('Import stated: parsing file');
573
182faf26
MR
574 // assume, that file is in json format
575 $str_data = file_get_contents($_FILES['file']['tmp_name']);
576 $data = json_decode($str_data, true);
577
578 if ( $data === null ) {
579 //not json - assume html
580 $html = new simple_html_dom();
581 $html->load_file($_FILES['file']['tmp_name']);
582 $data = array();
583 $read = 0;
584 foreach (array('ol','ul') as $list) {
585 foreach ($html->find($list) as $ul) {
86da3988
MR
586 foreach ($ul->find('li') as $li) {
587 $tmpEntry = array();
a8ef1f3f
MR
588 $a = $li->find('a');
589 $tmpEntry['url'] = $a[0]->href;
590 $tmpEntry['tags'] = $a[0]->tags;
591 $tmpEntry['is_read'] = $read;
592 if ($tmpEntry['url']) {
593 $data[] = $tmpEntry;
594 }
86da3988
MR
595 }
596 # the second <ol/ul> is for read links
597 $read = ((sizeof($data) && $read)?0:1);
182faf26
MR
598 }
599 }
1daa8e4a 600 }
182faf26 601
2f26729c
NL
602 // for readability structure
603
604 foreach($data as $record) {
605 if (is_array($record)) {
606 $data[] = $record;
607 foreach($record as $record2) {
608 if (is_array($record2)) {
609 $data[] = $record2;
610 }
611 }
612 }
a297fb1e 613 }
a297fb1e 614
2f26729c
NL
615 $urlsInserted = array(); //urls of articles inserted
616 foreach($data as $record) {
617 $url = trim(isset($record['article__url']) ? $record['article__url'] : (isset($record['url']) ? $record['url'] : ''));
618 if ($url and !in_array($url, $urlsInserted)) {
619 $title = (isset($record['title']) ? $record['title'] : _('Untitled - Import - ') . '</a> <a href="./?import">' . _('click to finish import') . '</a><a>');
620 $body = (isset($record['content']) ? $record['content'] : '');
621 $isRead = (isset($record['is_read']) ? intval($record['is_read']) : (isset($record['archive']) ? intval($record['archive']) : 0));
622 $isFavorite = (isset($record['is_fav']) ? intval($record['is_fav']) : (isset($record['favorite']) ? intval($record['favorite']) : 0));
623
624 // insert new record
625
626 $id = $this->store->add($url, $title, $body, $this->user->getId() , $isFavorite, $isRead);
627 if ($id) {
628 $urlsInserted[] = $url; //add
629 if (isset($record['tags']) && trim($record['tags'])) {
630
631 // @TODO: set tags
632
633 }
634 }
635 }
182faf26 636 }
182faf26 637
2f26729c
NL
638 $i = sizeof($urlsInserted);
639 if ($i > 0) {
640 $this->messages->add('s', _('Articles inserted: ') . $i . _('. Please note, that some may be marked as "read".'));
641 }
642
5ce39784 643 Tools::logm('Import of articles finished: '.$i.' articles added (w/o content if not provided).');
182faf26 644 }
dc764892
MR
645 else {
646 $this->messages->add('s', _('Did you forget to select a file?'));
647 }
2f26729c
NL
648 // file parsing finished here
649 // now download article contents if any
650 // check if we need to download any content
182faf26 651
2f26729c
NL
652 $recordsDownloadRequired = $this->store->retrieveUnfetchedEntriesCount($this->user->getId());
653
654 if ($recordsDownloadRequired == 0) {
182faf26 655
2f26729c 656 // nothing to download
182faf26 657
2f26729c
NL
658 $this->messages->add('s', _('Import finished.'));
659 Tools::logm('Import finished completely');
660 Tools::redirect();
661 }
662 else {
182faf26 663
2f26729c 664 // if just inserted - don't download anything, download will start in next reload
182faf26 665
2f26729c 666 if (!isset($_FILES['file'])) {
182faf26 667
2f26729c 668 // download next batch
182faf26 669
2f26729c
NL
670 Tools::logm('Fetching next batch of articles...');
671 $items = $this->store->retrieveUnfetchedEntries($this->user->getId() , IMPORT_LIMIT);
672 $purifier = $this->_getPurifier();
673 foreach($items as $item) {
674 $url = new Url(base64_encode($item['url']));
675 Tools::logm('Fetching article ' . $item['id']);
676 $content = Tools::getPageContent($url);
677 $title = (($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled'));
678 $body = (($content['rss']['channel']['item']['description'] != '') ? $content['rss']['channel']['item']['description'] : _('Undefined'));
679
680 // clean content to prevent xss attack
681
682 $title = $purifier->purify($title);
683 $body = $purifier->purify($body);
684 $this->store->updateContentAndTitle($item['id'], $title, $body, $this->user->getId());
685 Tools::logm('Article ' . $item['id'] . ' updated.');
686 }
687 }
63c35580 688 }
182faf26 689
2f26729c
NL
690 return array(
691 'includeImport' => true,
692 'import' => array(
693 'recordsDownloadRequired' => $recordsDownloadRequired,
694 'recordsUnderDownload' => IMPORT_LIMIT,
695 'delay' => IMPORT_DELAY * 1000
696 )
697 );
63c35580 698 }
c765c367 699
07ee09f4
NL
700 /**
701 * export poche entries in json
702 * @return json all poche entries
703 */
2f26729c
NL
704 public function export()
705 {
a8ef1f3f
MR
706 $filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json";
707 header('Content-Disposition: attachment; filename='.$filename);
708
709 $entries = $this->store->retrieveAll($this->user->getId());
710 echo $this->tpl->render('export.twig', array(
711 'export' => Tools::renderJson($entries),
712 ));
713 Tools::logm('export view');
c765c367 714 }
32520785 715
07ee09f4 716 /**
a3436d4c 717 * Checks online the latest version of poche and cache it
07ee09f4
NL
718 * @param string $which 'prod' or 'dev'
719 * @return string latest $which version
720 */
2f26729c 721 private function _getPocheVersion($which = 'prod') {
a8ef1f3f
MR
722 $cache_file = CACHE . '/' . $which;
723 $check_time = time();
724
725 # checks if the cached version file exists
726 if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) {
727 $version = file_get_contents($cache_file);
728 $check_time = filemtime($cache_file);
729 } else {
730 $version = file_get_contents('http://static.wallabag.org/versions/' . $which);
731 file_put_contents($cache_file, $version, LOCK_EX);
732 }
733 return array($version, $check_time);
32520785 734 }
72c20a52 735
2f26729c
NL
736 /**
737 * Update token for current user
738 */
739 public function updateToken()
72c20a52 740 {
2f26729c
NL
741 $token = Tools::generateToken();
742 $this->store->updateUserConfig($this->user->getId(), 'token', $token);
743 $currentConfig = $_SESSION['poche_user']->config;
744 $currentConfig['token'] = $token;
745 $_SESSION['poche_user']->setConfig($currentConfig);
746 Tools::redirect();
72c20a52
NL
747 }
748
2f26729c
NL
749 /**
750 * Generate RSS feeds for current user
751 *
752 * @param $token
753 * @param $user_id
754 * @param $tag_id
755 * @param string $type
756 */
f778e472 757 public function generateFeeds($token, $user_id, $tag_id, $type = 'home')
72c20a52 758 {
f778e472 759 $allowed_types = array('home', 'fav', 'archive', 'tag');
72c20a52
NL
760 $config = $this->store->getConfigUser($user_id);
761
17b2afef 762 if ($config == null) {
30bd2735 763 die(sprintf(_('User with this id (%d) does not exist.'), $user_id));
17b2afef
NL
764 }
765
7dd8b502
MR
766 if (!in_array($type, $allowed_types) || !isset($config['token']) || $token != $config['token']) {
767 die(_('Uh, there is a problem while generating feed. Wrong token used?'));
72c20a52 768 }
72c20a52 769
9e7c840b 770 $feed = new FeedWriter(RSS2);
2e4440c3 771 $feed->setTitle('wallabag — ' . $type . ' feed');
72c20a52 772 $feed->setLink(Tools::getPocheUrl());
223268c2
NL
773 $feed->setChannelElement('pubDate', date(DATE_RSS , time()));
774 $feed->setChannelElement('generator', 'wallabag');
775 $feed->setDescription('wallabag ' . $type . ' elements');
72c20a52 776
f778e472 777 if ($type == 'tag') {
b89d5a2b 778 $entries = $this->store->retrieveEntriesByTag($tag_id, $user_id);
f778e472
NL
779 }
780 else {
781 $entries = $this->store->getEntriesByView($type, $user_id);
782 }
783
72c20a52
NL
784 if (count($entries) > 0) {
785 foreach ($entries as $entry) {
786 $newItem = $feed->createNewItem();
0b57c682 787 $newItem->setTitle($entry['title']);
f86784c2 788 $newItem->setSource(Tools::getPocheUrl() . '?view=view&amp;id=' . $entry['id']);
ed02e38e 789 $newItem->setLink($entry['url']);
72c20a52
NL
790 $newItem->setDate(time());
791 $newItem->setDescription($entry['content']);
792 $feed->addItem($newItem);
793 }
794 }
795
796 $feed->genarateFeed();
797 exit;
798 }
6285e57c 799
6285e57c 800
0f859c6f
MR
801
802 /**
2f26729c 803 * Returns new purifier object with actual config
0f859c6f 804 */
2f26729c
NL
805 private function _getPurifier()
806 {
807 $config = HTMLPurifier_Config::createDefault();
808 $config->set('Cache.SerializerPath', CACHE);
809 $config->set('HTML.SafeIframe', true);
35d4e275 810
2f26729c
NL
811 //allow YouTube, Vimeo and dailymotion videos
812 $config->set('URI.SafeIframeRegexp', '%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/|www\.dailymotion\.com/embed/video/)%');
ec15d0a7 813
2f26729c 814 return new HTMLPurifier($config);
0f859c6f 815 }
cbc75bef 816
cbc75bef 817
37cad522 818}