]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/Poche.class.php
mark read and go to next now in the right direction
[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 */
3e1daa4c 77 public function createNewUser($username, $password, $email = "", $internalRegistration = false)
eb1af592 78 {
121691e9 79 Tools::logm('Trying to create a new user...');
2f26729c
NL
80 if (!empty($username) && !empty($password)){
81 $newUsername = filter_var($username, FILTER_SANITIZE_STRING);
046b9316 82 $email = filter_var($email, FILTER_SANITIZE_STRING);
2f26729c 83 if (!$this->store->userExists($newUsername)){
046b9316 84 if ($this->store->install($newUsername, Tools::encodeString($password . $newUsername), $email)) {
6cb5e1c9
TC
85 if ($email != "") { // if email is filled
86 if (SEND_CONFIRMATION_EMAIL && function_exists('mail')) {
87
698eda73 88 // if internal registration from config screen
6cb5e1c9
TC
89 $body_internal = _('Hi,') . "\r\n\r\n" . sprintf(_('Someone just created a wallabag account for you on %1$s.'), Tools::getPocheUrl()) .
90 "\r\n\r\n" . sprintf(_('Your login is %1$s.'), $newUsername) ."\r\n\r\n" .
91 _('Note : The password has been chosen by the person who created your account. Get in touch with that person to know your password and change it as soon as possible') . "\r\n\r\n" .
92 _('Have fun with it !') . "\r\n\r\n" .
93 _('This is an automatically generated message, no one will answer if you respond to it.');
3e1daa4c 94
6cb5e1c9 95 // if external (public) registration
f2321633
TC
96 $body = sprintf(_('Hi, %1$s'), $newUsername) . "\r\n\r\n" .
97 sprintf(_('You\'ve just created a wallabag account on %1$s.'), Tools::getPocheUrl()) .
98 "\r\n\r\n" . _("Have fun with it !");
698eda73 99
6cb5e1c9
TC
100 $body = $internalRegistration ? $body_internal : $body;
101
102 $body = wordwrap($body, 70, "\r\n"); // cut lines with more than 70 caracters (MIME standard)
103 if (mail($email, sprintf(_('Your new wallabag account on %1$s'), Tools::getPocheUrl()), $body,
104 'X-Mailer: PHP/' . phpversion() . "\r\n" .
105 'Content-type: text/plain; charset=UTF-8' . "\r\n" .
106 "From: " . $newUsername . "@" . gethostname() . "\r\n")) {
107 Tools::logm('The user ' . $newUsername . ' has been emailed');
108 $this->messages->add('i', sprintf(_('The new user %1$s has been sent an email at %2$s. You may have to check spam folder.'), $newUsername, $email));
698eda73 109 Tools::redirect('?');
6cb5e1c9
TC
110
111 } else {
112 Tools::logm('A problem has been encountered while sending an email');
113 $this->messages->add('e', _('A problem has been encountered while sending an email'));
114 }
3e1daa4c 115 } else {
6cb5e1c9 116 Tools::logm('The user has been created, but the server did not authorize sending emails');
952faeeb 117 $this->messages->add('i', _('The server did not authorize sending a confirmation email, but the user was created.'));
3e1daa4c 118 }
6cb5e1c9
TC
119 } else {
120 Tools::logm('The user has been created, but no email was saved, so no confimation email was sent');
121 $this->messages->add('i', _('The user was created, but no email was sent because email was not filled in'));
122 }
3e1daa4c 123 Tools::logm('The new user ' . $newUsername . ' has been installed');
f2321633
TC
124 if (\Session::isLogged()) {
125 $this->messages->add('s', sprintf(_('The new user %s has been installed. Do you want to <a href="?logout">logout ?</a>'), $newUsername));
126 }
3e1daa4c 127 Tools::redirect();
4d99bae8 128 }
129 else {
2f26729c 130 Tools::logm('error during adding new user');
4d99bae8 131 Tools::redirect();
132 }
133 }
2f26729c
NL
134 else {
135 $this->messages->add('e', sprintf(_('Error : An user with the name %s already exists !'), $newUsername));
136 Tools::logm('An user with the name ' . $newUsername . ' already exists !');
137 Tools::redirect();
138 }
4d99bae8 139 }
121691e9
TC
140 else {
141 Tools::logm('Password or username were empty');
142 }
4d99bae8 143 }
b6413975 144
3602405e
NL
145 /**
146 * Delete an existing user
147 */
2f26729c 148 public function deleteUser($password)
3602405e 149 {
2f26729c
NL
150 if ($this->store->listUsers() > 1) {
151 if (Tools::encodeString($password . $this->user->getUsername()) == $this->store->getUserPassword($this->user->getId())) {
152 $username = $this->user->getUsername();
153 $this->store->deleteUserConfig($this->user->getId());
154 Tools::logm('The configuration for user '. $username .' has been deleted !');
155 $this->store->deleteTagsEntriesAndEntries($this->user->getId());
156 Tools::logm('The entries for user '. $username .' has been deleted !');
157 $this->store->deleteUser($this->user->getId());
158 Tools::logm('User '. $username .' has been completely deleted !');
159 Session::logout();
160 Tools::logm('logout');
161 Tools::redirect();
162 $this->messages->add('s', sprintf(_('User %s has been successfully deleted !'), $username));
4d99bae8 163 }
164 else {
2f26729c
NL
165 Tools::logm('Bad password !');
166 $this->messages->add('e', _('Error : The password is wrong !'));
4d99bae8 167 }
168 }
2f26729c
NL
169 else {
170 Tools::logm('Only user !');
171 $this->messages->add('e', _('Error : You are the only user, you cannot delete your account !'));
172 }
4d99bae8 173 }
eb1af592 174
8d3275be 175 public function getDefaultConfig()
182faf26 176 {
8d3275be
NL
177 return array(
178 'pager' => PAGINATION,
179 'language' => LANG,
00dbaf90
NL
180 'theme' => DEFAULT_THEME
181 );
8d3275be
NL
182 }
183
eb1af592
NL
184 /**
185 * Call action (mark as fav, archive, delete, etc.)
186 */
926acd7b 187 public function action($action, Url $url, $id = 0, $import = FALSE, $autoclose = FALSE, $tags = null)
eb1af592
NL
188 {
189 switch ($action)
190 {
191 case 'add':
a297fb1e
MR
192 $content = Tools::getPageContent($url);
193 $title = ($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled');
194 $body = $content['rss']['channel']['item']['description'];
195
196 // clean content from prevent xss attack
2f26729c 197 $purifier = $this->_getPurifier();
a297fb1e
MR
198 $title = $purifier->purify($title);
199 $body = $purifier->purify($body);
1570a653 200
182faf26 201 //search for possible duplicate
8d7cd2cc 202 $duplicate = NULL;
8cebef88 203 $clean_url = $url->getUrl();
488fc63b 204
8cebef88
TC
205 // Clean URL to remove parameters from feedburner and all this stuff. Taken from Shaarli.
206 $i=strpos($clean_url,'&utm_source='); if ($i!==false) $clean_url=substr($clean_url,0,$i);
207 $i=strpos($clean_url,'?utm_source='); if ($i!==false) $clean_url=substr($clean_url,0,$i);
208 $i=strpos($clean_url,'#xtor=RSS-'); if ($i!==false) $clean_url=substr($clean_url,0,$i);
209
210 $duplicate = $this->store->retrieveOneByURL($clean_url, $this->user->getId());
211
212 $last_id = $this->store->add($clean_url, $title, $body, $this->user->getId());
a297fb1e 213 if ( $last_id ) {
8cebef88 214 Tools::logm('add link ' . $clean_url);
ec397236 215 if (DOWNLOAD_PICTURES) {
8cebef88 216 $content = Picture::filterPicture($body, $clean_url, $last_id);
ec397236
NL
217 Tools::logm('updating content article');
218 $this->store->updateContent($last_id, $content, $this->user->getId());
219 }
488fc63b
MR
220
221 if ($duplicate != NULL) {
222 // 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
8cebef88 223 Tools::logm('link ' . $clean_url . ' is a duplicate');
488fc63b
MR
224 // 1) - preserve tags and favorite, then drop old entry
225 $this->store->reassignTags($duplicate['id'], $last_id);
226 if ($duplicate['is_fav']) {
227 $this->store->favoriteById($last_id, $this->user->getId());
228 }
229 if ($this->store->deleteById($duplicate['id'], $this->user->getId())) {
8cebef88 230 Tools::logm('previous link ' . $clean_url .' entry deleted');
488fc63b
MR
231 }
232 }
233
7f782e44 234 // if there are tags, add them to the new article
235 if (isset($_GET['tags'])) {
236 $_POST['value'] = $_GET['tags'];
237 $_POST['entry_id'] = $last_id;
238 $this->action('add_tag', $url);
239 }
240
182faf26 241 $this->messages->add('s', _('the link has been added successfully'));
eb1af592
NL
242 }
243 else {
a297fb1e 244 $this->messages->add('e', _('error during insertion : the link wasn\'t added'));
8cebef88 245 Tools::logm('error during insertion : the link wasn\'t added ' . $clean_url);
b916bcfc 246 }
ec397236 247
a297fb1e 248 if ($autoclose == TRUE) {
1c911789 249 Tools::redirect('?view=home&closewin=true');
a297fb1e 250 } else {
1c911789 251 Tools::redirect('?view=home');
eb1af592 252 }
3052cfb7 253 return $last_id;
eb1af592
NL
254 break;
255 case 'delete':
512e5e5b 256 if (isset($_GET['search'])) {
257 //when we want to apply a delete to a search
258 $tags = array($_GET['search']);
259 $allentry_ids = $this->store->search($tags[0], $this->user->getId());
260 $entry_ids = array();
261 foreach ($allentry_ids as $eachentry) {
262 $entry_ids[] = $eachentry[0];
eb1af592 263 }
512e5e5b 264 } else { // delete a single article
265 $entry_ids = array($id);
eb1af592 266 }
512e5e5b 267 foreach($entry_ids as $id) {
268 $msg = 'delete link #' . $id;
269 if ($this->store->deleteById($id, $this->user->getId())) {
270 if (DOWNLOAD_PICTURES) {
271 Picture::removeDirectory(ABS_PATH . $id);
272 }
273 $this->messages->add('s', _('the link has been deleted successfully'));
274 }
275 else {
276 $this->messages->add('e', _('the link wasn\'t deleted'));
277 $msg = 'error : can\'t delete link #' . $id;
278 }
279 Tools::logm($msg);
eb1af592 280 }
985ce3ec 281 Tools::redirect('?');
eb1af592
NL
282 break;
283 case 'toggle_fav' :
8d3275be 284 $this->store->favoriteById($id, $this->user->getId());
eb1af592 285 Tools::logm('mark as favorite link #' . $id);
c2cf7075
MR
286 if ( Tools::isAjaxRequest() ) {
287 echo 1;
288 exit;
289 }
290 else {
291 Tools::redirect();
292 }
eb1af592
NL
293 break;
294 case 'toggle_archive' :
13c7f9a4 295 if (isset($_GET['tag_id'])) {
296 //when we want to archive a whole tag
297 $tag_id = $_GET['tag_id'];
298 $allentry_ids = $this->store->retrieveEntriesByTag($tag_id, $this->user->getId());
299 $entry_ids = array();
300 foreach ($allentry_ids as $eachentry) {
301 $entry_ids[] = $eachentry[0];
302 }
303 } else { //archive a single article
304 $entry_ids = array($id);
305 }
306 foreach($entry_ids as $id) {
307 $this->store->archiveById($id, $this->user->getId());
308 Tools::logm('archive link #' . $id);
309 }
c2cf7075
MR
310 if ( Tools::isAjaxRequest() ) {
311 echo 1;
312 exit;
059a3380 313 } else {
c2cf7075
MR
314 Tools::redirect();
315 }
eb1af592 316 break;
059a3380 317 case 'archive_and_next' :
8a66458b 318 $nextid = $this->store->getPreviousArticle($id, $this->user->getId());
059a3380
TC
319 $this->store->archiveById($id, $this->user->getId());
320 Tools::logm('archive link #' . $id);
321 Tools::redirect('?view=view&id=' . $nextid);
322 break;
f14807de
NL
323 case 'archive_all' :
324 $this->store->archiveAll($this->user->getId());
325 Tools::logm('archive all links');
a297fb1e 326 Tools::redirect();
f14807de 327 break;
c432fa16 328 case 'add_tag' :
decc23aa 329 if (isset($_GET['search'])) {
330 //when we want to apply a tag to a search
decc23aa 331 $tags = array($_GET['search']);
332 $allentry_ids = $this->store->search($tags[0], $this->user->getId());
333 $entry_ids = array();
334 foreach ($allentry_ids as $eachentry) {
335 $entry_ids[] = $eachentry[0];
336 }
337 } else { //add a tag to a single article
338 $tags = explode(',', $_POST['value']);
339 $entry_ids = array($_POST['entry_id']);
fb26cc93 340 }
decc23aa 341 foreach($entry_ids as $entry_id) {
342 $entry = $this->store->retrieveOneById($entry_id, $this->user->getId());
343 if (!$entry) {
344 $this->messages->add('e', _('Article not found!'));
345 Tools::logm('error : article not found');
346 Tools::redirect();
347 }
348 //get all already set tags to preven duplicates
349 $already_set_tags = array();
350 $entry_tags = $this->store->retrieveTagsByEntry($entry_id);
351 foreach ($entry_tags as $tag) {
352 $already_set_tags[] = $tag['value'];
353 }
354 foreach($tags as $key => $tag_value) {
355 $value = trim($tag_value);
356 if ($value && !in_array($value, $already_set_tags)) {
357 $tag = $this->store->retrieveTagByValue($value);
358 if (is_null($tag)) {
359 # we create the tag
360 $tag = $this->store->createTag($value);
361 $sequence = '';
362 if (STORAGE == 'postgres') {
363 $sequence = 'tags_id_seq';
364 }
365 $tag_id = $this->store->getLastId($sequence);
fb26cc93 366 }
decc23aa 367 else {
368 $tag_id = $tag['id'];
369 }
370
371 # we assign the tag to the article
372 $this->store->setTagToEntry($tag_id, $entry_id);
373 }
c432fa16 374 }
c432fa16 375 }
9c743ab9 376 $this->messages->add('s', _('The tag has been applied successfully'));
24696800 377 Tools::logm('The tag has been applied successfully');
a297fb1e 378 Tools::redirect();
c432fa16
NL
379 break;
380 case 'remove_tag' :
381 $tag_id = $_GET['tag_id'];
b89d5a2b
NL
382 $entry = $this->store->retrieveOneById($id, $this->user->getId());
383 if (!$entry) {
384 $this->messages->add('e', _('Article not found!'));
385 Tools::logm('error : article not found');
386 Tools::redirect();
387 }
c432fa16 388 $this->store->removeTagForEntry($id, $tag_id);
9c743ab9 389 Tools::logm('tag entry deleted');
24696800 390 if ($this->store->cleanUnusedTag($tag_id)) {
391 Tools::logm('tag deleted');
392 }
9c743ab9 393 $this->messages->add('s', _('The tag has been successfully deleted'));
c432fa16
NL
394 Tools::redirect();
395 break;
d4b6e20e 396
44b95cb8
TC
397 case 'reload_article' :
398 Tools::logm('reload article');
399 $id = $_GET['id'];
400 $entry = $this->store->retrieveOneById($id, $this->user->getId());
401 Tools::logm('reload url ' . $entry['url']);
402 $url = new Url(base64_encode($entry['url']));
403 $this->action('add', $url);
404 break;
405
e51487f9
TC
406 /* For some unknown reason I can't get displayView() to work here (it redirects to home view afterwards). So here's a dirty fix which redirects directly to URL */
407 case 'random':
e51487f9 408 Tools::logm('get a random article');
cdee5e65 409 if ($this->store->getRandomId($this->user->getId())) {
336797f3
TC
410 $id_array = $this->store->getRandomId($this->user->getId());
411 $id = $id_array[0];
cdee5e65
TC
412 Tools::redirect('?view=view&id=' . $id[0]);
413 Tools::logm('got the article with id ' . $id[0]);
414 }
e51487f9 415 break;
eb1af592
NL
416 default:
417 break;
418 }
419 }
420
421 function displayView($view, $id = 0)
422 {
423 $tpl_vars = array();
424
425 switch ($view)
426 {
3c133bff
NL
427 case 'about':
428 break;
eb1af592 429 case 'config':
2f26729c 430 $dev_infos = $this->_getPocheVersion('dev');
11c680f9
NL
431 $dev = trim($dev_infos[0]);
432 $check_time_dev = date('d-M-Y H:i', $dev_infos[1]);
2f26729c 433 $prod_infos = $this->_getPocheVersion('prod');
11c680f9
NL
434 $prod = trim($prod_infos[0]);
435 $check_time_prod = date('d-M-Y H:i', $prod_infos[1]);
031df528
NL
436 $compare_dev = version_compare(POCHE, $dev);
437 $compare_prod = version_compare(POCHE, $prod);
3602405e
NL
438 $themes = $this->tpl->getInstalledThemes();
439 $languages = $this->language->getInstalledLanguages();
72c20a52 440 $token = $this->user->getConfigValue('token');
1810c13b 441 $http_auth = (isset($_SERVER['PHP_AUTH_USER']) || isset($_SERVER['REMOTE_USER'])) ? true : false;
4d99bae8 442 $only_user = ($this->store->listUsers() > 1) ? false : true;
32520785 443 $tpl_vars = array(
00dbaf90 444 'themes' => $themes,
5011388f 445 'languages' => $languages,
32520785
NL
446 'dev' => $dev,
447 'prod' => $prod,
11c680f9
NL
448 'check_time_dev' => $check_time_dev,
449 'check_time_prod' => $check_time_prod,
32520785
NL
450 'compare_dev' => $compare_dev,
451 'compare_prod' => $compare_prod,
72c20a52
NL
452 'token' => $token,
453 'user_id' => $this->user->getId(),
df6afaf0 454 'http_auth' => $http_auth,
4d99bae8 455 'only_user' => $only_user
32520785 456 );
eb1af592
NL
457 Tools::logm('config view');
458 break;
6cab59c3
NL
459 case 'edit-tags':
460 # tags
b89d5a2b
NL
461 $entry = $this->store->retrieveOneById($id, $this->user->getId());
462 if (!$entry) {
463 $this->messages->add('e', _('Article not found!'));
464 Tools::logm('error : article not found');
465 Tools::redirect();
466 }
6cab59c3
NL
467 $tags = $this->store->retrieveTagsByEntry($id);
468 $tpl_vars = array(
c432fa16 469 'entry_id' => $id,
6cab59c3 470 'tags' => $tags,
032e0ca1 471 'entry' => $entry,
4886ed6d
NL
472 );
473 break;
2e2ebe5e 474 case 'tags':
f778e472 475 $token = $this->user->getConfigValue('token');
fb26cc93
MR
476 //if term is set - search tags for this term
477 $term = Tools::checkVar('term');
478 $tags = $this->store->retrieveAllTags($this->user->getId(), $term);
479 if (Tools::isAjaxRequest()) {
480 $result = array();
481 foreach ($tags as $tag) {
482 $result[] = $tag['value'];
483 }
484 echo json_encode($result);
485 exit;
486 }
2e2ebe5e 487 $tpl_vars = array(
f778e472
NL
488 'token' => $token,
489 'user_id' => $this->user->getId(),
2e2ebe5e
NL
490 'tags' => $tags,
491 );
492 break;
a4585f7e
MR
493 case 'search':
494 if (isset($_GET['search'])) {
495 $search = filter_var($_GET['search'], FILTER_SANITIZE_STRING);
496 $tpl_vars['entries'] = $this->store->search($search, $this->user->getId());
497 $count = count($tpl_vars['entries']);
498 $this->pagination->set_total($count);
499 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
500 $this->pagination->page_links('?view=' . $view . '?search=' . $search . '&sort=' . $_SESSION['sort'] . '&' ));
501 $tpl_vars['page_links'] = $page_links;
502 $tpl_vars['nb_results'] = $count;
1b6e21d7 503 $tpl_vars['searchterm'] = $search;
a4585f7e
MR
504 }
505 break;
eb1af592 506 case 'view':
8d3275be 507 $entry = $this->store->retrieveOneById($id, $this->user->getId());
eb1af592
NL
508 if ($entry != NULL) {
509 Tools::logm('view link #' . $id);
510 $content = $entry['content'];
511 if (function_exists('tidy_parse_string')) {
512 $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
513 $tidy->cleanRepair();
514 $content = $tidy->value;
3408ed48 515 }
a3223127 516
3408ed48 517 # flattr checking
37cad522
TC
518 $flattr = NULL;
519 if (FLATTR) {
520 $flattr = new FlattrItem();
521 $flattr->checkItem($entry['url'], $entry['id']);
522 }
523
059a3380
TC
524 # previous and next
525 $previous = FALSE;
526 $previous_id = $this->store->getPreviousArticle($id, $this->user->getId());
527 $next = FALSE;
528 $next_id = $this->store->getNextArticle($id, $this->user->getId());
529
530 if ($this->store->retrieveOneById($previous_id, $this->user->getId())) {
531 $previous = TRUE;
532 }
533 if ($this->store->retrieveOneById($next_id, $this->user->getId())) {
534 $next = TRUE;
535 }
536 $navigate = $arrayName = array('previous' => $previous, 'previousid' => $previous_id, 'next' => $next, 'nextid' => $next_id);
537
7b171c73
NL
538 # tags
539 $tags = $this->store->retrieveTagsByEntry($entry['id']);
a3223127 540
3408ed48 541 $tpl_vars = array(
7b171c73
NL
542 'entry' => $entry,
543 'content' => $content,
544 'flattr' => $flattr,
059a3380
TC
545 'tags' => $tags,
546 'navigate' => $navigate
3408ed48 547 );
eb1af592
NL
548 }
549 else {
d8d1542e 550 Tools::logm('error in view call : entry is null');
eb1af592
NL
551 }
552 break;
032e0ca1 553 default: # home, favorites, archive and tag views
eb1af592 554 $tpl_vars = array(
3eb04903
N
555 'entries' => '',
556 'page_links' => '',
7f9f5281 557 'nb_results' => '',
6065553c 558 'listmode' => (isset($_COOKIE['listmode']) ? true : false),
eb1af592 559 );
182faf26 560
3602405e 561 //if id is given - we retrieve entries by tag: id is tag id
032e0ca1
MR
562 if ($id) {
563 $tpl_vars['tag'] = $this->store->retrieveTag($id, $this->user->getId());
564 $tpl_vars['id'] = intval($id);
565 }
566
567 $count = $this->store->getEntriesByViewCount($view, $this->user->getId(), $id);
568
569 if ($count > 0) {
570 $this->pagination->set_total($count);
c515ffec 571 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
032e0ca1
MR
572 $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . (($id)?'&id='.$id:'') . '&' ));
573 $tpl_vars['entries'] = $this->store->getEntriesByView($view, $this->user->getId(), $this->pagination->get_limit(), $id);
3eb04903 574 $tpl_vars['page_links'] = $page_links;
032e0ca1 575 $tpl_vars['nb_results'] = $count;
3eb04903 576 }
6a361945 577 Tools::logm('display ' . $view . ' view');
eb1af592
NL
578 break;
579 }
580
581 return $tpl_vars;
582 }
c765c367 583
07ee09f4 584 /**
182faf26
MR
585 * update the password of the current user.
586 * if MODE_DEMO is TRUE, the password can't be updated.
07ee09f4
NL
587 * @todo add the return value
588 * @todo set the new password in function header like this updatePassword($newPassword)
589 * @return boolean
590 */
2f26729c 591 public function updatePassword($password, $confirmPassword)
c765c367 592 {
55821e04 593 if (MODE_DEMO) {
8d3275be 594 $this->messages->add('i', _('in demo mode, you can\'t update your password'));
55821e04 595 Tools::logm('in demo mode, you can\'t do this');
6a361945 596 Tools::redirect('?view=config');
55821e04
NL
597 }
598 else {
2f26729c
NL
599 if (isset($password) && isset($confirmPassword)) {
600 if ($password == $confirmPassword && !empty($password)) {
8d3275be 601 $this->messages->add('s', _('your password has been updated'));
2f26729c 602 $this->store->updatePassword($this->user->getId(), Tools::encodeString($password . $this->user->getUsername()));
c765c367 603 Session::logout();
8d3275be 604 Tools::logm('password updated');
c765c367
NL
605 Tools::redirect();
606 }
607 else {
8d3275be 608 $this->messages->add('e', _('the two fields have to be filled & the password must be the same in the two fields'));
6a361945 609 Tools::redirect('?view=config');
c765c367
NL
610 }
611 }
612 }
613 }
182faf26 614
df6afaf0 615 /**
2f26729c
NL
616 * Get credentials from differents sources
617 * It redirects the user to the $referer link
618 *
df6afaf0
DS
619 * @return array
620 */
2f26729c
NL
621 private function credentials()
622 {
623 if (isset($_SERVER['PHP_AUTH_USER'])) {
624 return array($_SERVER['PHP_AUTH_USER'], 'php_auth', true);
1810c13b 625 }
2f26729c
NL
626 if (!empty($_POST['login']) && !empty($_POST['password'])) {
627 return array($_POST['login'], $_POST['password'], false);
1810c13b 628 }
2f26729c
NL
629 if (isset($_SERVER['REMOTE_USER'])) {
630 return array($_SERVER['REMOTE_USER'], 'http_auth', true);
1810c13b 631 }
5cfafc61 632
2f26729c 633 return array(false, false, false);
6af66b11 634 }
df6afaf0 635
07ee09f4
NL
636 /**
637 * checks if login & password are correct and save the user in session.
638 * it redirects the user to the $referer link
639 * @param string $referer the url to redirect after login
640 * @todo add the return value
641 * @return boolean
642 */
c765c367
NL
643 public function login($referer)
644 {
6af66b11 645 list($login,$password,$isauthenticated)=$this->credentials();
df6afaf0
DS
646 if($login === false || $password === false) {
647 $this->messages->add('e', _('login failed: you have to fill all fields'));
648 Tools::logm('login failed');
649 Tools::redirect();
650 }
651 if (!empty($login) && !empty($password)) {
6af66b11 652 $user = $this->store->login($login, Tools::encodeString($password . $login), $isauthenticated);
7ce7ec4c
NL
653 if ($user != array()) {
654 # Save login into Session
6af66b11
MR
655 $longlastingsession = isset($_POST['longlastingsession']);
656 $passwordTest = ($isauthenticated) ? $user['password'] : Tools::encodeString($password . $login);
657 Session::login($user['username'], $user['password'], $login, $passwordTest, $longlastingsession, array('poche_user' => new User($user)));
9cf6bac1
NL
658
659 # reload l10n
660 $language = $user['config']['language'];
661 @putenv('LC_ALL=' . $language);
662 setlocale(LC_ALL, $language);
663 bindtextdomain($language, LOCALE);
664 textdomain($language);
665
26929c08 666 $this->messages->add('s', _('welcome to your wallabag'));
8d3275be 667 Tools::logm('login successful');
c765c367
NL
668 Tools::redirect($referer);
669 }
8d3275be 670 $this->messages->add('e', _('login failed: bad login or password'));
c86b40f0
GV
671 // log login failure in web server log to allow fail2ban usage
672 error_log('user '.$login.' authentication failure');
c765c367
NL
673 Tools::logm('login failed');
674 Tools::redirect();
c765c367
NL
675 }
676 }
677
07ee09f4
NL
678 /**
679 * log out the poche user. It cleans the session.
680 * @todo add the return value
182faf26 681 * @return boolean
07ee09f4 682 */
c765c367
NL
683 public function logout()
684 {
7ce7ec4c 685 $this->user = array();
c765c367 686 Session::logout();
b916bcfc 687 Tools::logm('logout');
c765c367
NL
688 Tools::redirect();
689 }
690
07ee09f4 691 /**
2f26729c 692 * import datas into your wallabag
182faf26 693 * @return boolean
07ee09f4 694 */
2f26729c 695
182faf26
MR
696 public function import() {
697
dc764892 698 if ( isset($_FILES['file']) && $_FILES['file']['tmp_name'] ) {
5ce39784
MR
699 Tools::logm('Import stated: parsing file');
700
182faf26
MR
701 // assume, that file is in json format
702 $str_data = file_get_contents($_FILES['file']['tmp_name']);
703 $data = json_decode($str_data, true);
704
705 if ( $data === null ) {
706 //not json - assume html
707 $html = new simple_html_dom();
708 $html->load_file($_FILES['file']['tmp_name']);
709 $data = array();
710 $read = 0;
711 foreach (array('ol','ul') as $list) {
712 foreach ($html->find($list) as $ul) {
86da3988
MR
713 foreach ($ul->find('li') as $li) {
714 $tmpEntry = array();
a8ef1f3f
MR
715 $a = $li->find('a');
716 $tmpEntry['url'] = $a[0]->href;
717 $tmpEntry['tags'] = $a[0]->tags;
718 $tmpEntry['is_read'] = $read;
719 if ($tmpEntry['url']) {
720 $data[] = $tmpEntry;
721 }
86da3988
MR
722 }
723 # the second <ol/ul> is for read links
724 $read = ((sizeof($data) && $read)?0:1);
182faf26
MR
725 }
726 }
1daa8e4a 727 }
182faf26 728
2f26729c
NL
729 // for readability structure
730
731 foreach($data as $record) {
732 if (is_array($record)) {
733 $data[] = $record;
734 foreach($record as $record2) {
735 if (is_array($record2)) {
736 $data[] = $record2;
737 }
738 }
739 }
a297fb1e 740 }
a297fb1e 741
2f26729c
NL
742 $urlsInserted = array(); //urls of articles inserted
743 foreach($data as $record) {
744 $url = trim(isset($record['article__url']) ? $record['article__url'] : (isset($record['url']) ? $record['url'] : ''));
745 if ($url and !in_array($url, $urlsInserted)) {
746 $title = (isset($record['title']) ? $record['title'] : _('Untitled - Import - ') . '</a> <a href="./?import">' . _('click to finish import') . '</a><a>');
747 $body = (isset($record['content']) ? $record['content'] : '');
748 $isRead = (isset($record['is_read']) ? intval($record['is_read']) : (isset($record['archive']) ? intval($record['archive']) : 0));
749 $isFavorite = (isset($record['is_fav']) ? intval($record['is_fav']) : (isset($record['favorite']) ? intval($record['favorite']) : 0));
750
751 // insert new record
752
753 $id = $this->store->add($url, $title, $body, $this->user->getId() , $isFavorite, $isRead);
754 if ($id) {
755 $urlsInserted[] = $url; //add
756 if (isset($record['tags']) && trim($record['tags'])) {
757
9a490ad6 758 $tags = explode(',', $record['tags']);
3052cfb7 759 foreach($tags as $tag) {
760 $entry_id = $id;
761 $tag_id = $this->store->retrieveTagByValue($tag);
762 if ($tag_id) {
763 $this->store->setTagToEntry($tag_id['id'], $entry_id);
764 } else {
765 $this->store->createTag($tag);
766 $tag_id = $this->store->retrieveTagByValue($tag);
767 $this->store->setTagToEntry($tag_id['id'], $entry_id);
768 }
769 }
2f26729c
NL
770
771 }
772 }
773 }
182faf26 774 }
182faf26 775
2f26729c
NL
776 $i = sizeof($urlsInserted);
777 if ($i > 0) {
778 $this->messages->add('s', _('Articles inserted: ') . $i . _('. Please note, that some may be marked as "read".'));
779 }
780
5ce39784 781 Tools::logm('Import of articles finished: '.$i.' articles added (w/o content if not provided).');
182faf26 782 }
dc764892 783 else {
df89c6f7 784 $this->messages->add('e', _('Did you forget to select a file?'));
dc764892 785 }
2f26729c
NL
786 // file parsing finished here
787 // now download article contents if any
788 // check if we need to download any content
182faf26 789
2f26729c
NL
790 $recordsDownloadRequired = $this->store->retrieveUnfetchedEntriesCount($this->user->getId());
791
792 if ($recordsDownloadRequired == 0) {
182faf26 793
2f26729c 794 // nothing to download
182faf26 795
2f26729c
NL
796 $this->messages->add('s', _('Import finished.'));
797 Tools::logm('Import finished completely');
798 Tools::redirect();
799 }
800 else {
182faf26 801
2f26729c 802 // if just inserted - don't download anything, download will start in next reload
182faf26 803
2f26729c 804 if (!isset($_FILES['file'])) {
182faf26 805
2f26729c 806 // download next batch
182faf26 807
2f26729c
NL
808 Tools::logm('Fetching next batch of articles...');
809 $items = $this->store->retrieveUnfetchedEntries($this->user->getId() , IMPORT_LIMIT);
810 $purifier = $this->_getPurifier();
811 foreach($items as $item) {
812 $url = new Url(base64_encode($item['url']));
fde4cf06
EP
813 if( $url->isCorrect() )
814 {
815 Tools::logm('Fetching article ' . $item['id']);
816 $content = Tools::getPageContent($url);
817 $title = (($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled'));
818 $body = (($content['rss']['channel']['item']['description'] != '') ? $content['rss']['channel']['item']['description'] : _('Undefined'));
819
820 // clean content to prevent xss attack
821
822 $title = $purifier->purify($title);
823 $body = $purifier->purify($body);
824 $this->store->updateContentAndTitle($item['id'], $title, $body, $this->user->getId());
825 Tools::logm('Article ' . $item['id'] . ' updated.');
826 } else
827 {
828 Tools::logm('Unvalid URL (' . $item['url'] .') to fetch for article ' . $item['id']);
829 }
2f26729c
NL
830 }
831 }
63c35580 832 }
182faf26 833
2f26729c
NL
834 return array(
835 'includeImport' => true,
836 'import' => array(
837 'recordsDownloadRequired' => $recordsDownloadRequired,
838 'recordsUnderDownload' => IMPORT_LIMIT,
839 'delay' => IMPORT_DELAY * 1000
840 )
841 );
63c35580 842 }
c765c367 843
07ee09f4
NL
844 /**
845 * export poche entries in json
846 * @return json all poche entries
847 */
2f26729c
NL
848 public function export()
849 {
a8ef1f3f
MR
850 $filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json";
851 header('Content-Disposition: attachment; filename='.$filename);
852
853 $entries = $this->store->retrieveAll($this->user->getId());
854 echo $this->tpl->render('export.twig', array(
855 'export' => Tools::renderJson($entries),
856 ));
857 Tools::logm('export view');
c765c367 858 }
32520785 859
07ee09f4 860 /**
a3436d4c 861 * Checks online the latest version of poche and cache it
07ee09f4
NL
862 * @param string $which 'prod' or 'dev'
863 * @return string latest $which version
864 */
2f26729c 865 private function _getPocheVersion($which = 'prod') {
a8ef1f3f
MR
866 $cache_file = CACHE . '/' . $which;
867 $check_time = time();
868
869 # checks if the cached version file exists
870 if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) {
871 $version = file_get_contents($cache_file);
872 $check_time = filemtime($cache_file);
873 } else {
874 $version = file_get_contents('http://static.wallabag.org/versions/' . $which);
875 file_put_contents($cache_file, $version, LOCK_EX);
876 }
877 return array($version, $check_time);
32520785 878 }
72c20a52 879
2f26729c
NL
880 /**
881 * Update token for current user
882 */
883 public function updateToken()
72c20a52 884 {
2f26729c
NL
885 $token = Tools::generateToken();
886 $this->store->updateUserConfig($this->user->getId(), 'token', $token);
887 $currentConfig = $_SESSION['poche_user']->config;
888 $currentConfig['token'] = $token;
889 $_SESSION['poche_user']->setConfig($currentConfig);
890 Tools::redirect();
72c20a52
NL
891 }
892
2f26729c
NL
893 /**
894 * Generate RSS feeds for current user
895 *
896 * @param $token
897 * @param $user_id
7fe8a9ad
VM
898 * @param $tag_id if $type is 'tag', the id of the tag to generate feed for
899 * @param string $type the type of feed to generate
900 * @param int $limit the maximum number of items (0 means all)
2f26729c 901 */
7fe8a9ad 902 public function generateFeeds($token, $user_id, $tag_id, $type = 'home', $limit = 0)
72c20a52 903 {
f778e472 904 $allowed_types = array('home', 'fav', 'archive', 'tag');
72c20a52
NL
905 $config = $this->store->getConfigUser($user_id);
906
17b2afef 907 if ($config == null) {
30bd2735 908 die(sprintf(_('User with this id (%d) does not exist.'), $user_id));
17b2afef
NL
909 }
910
7dd8b502
MR
911 if (!in_array($type, $allowed_types) || !isset($config['token']) || $token != $config['token']) {
912 die(_('Uh, there is a problem while generating feed. Wrong token used?'));
72c20a52 913 }
72c20a52 914
9e7c840b 915 $feed = new FeedWriter(RSS2);
2e4440c3 916 $feed->setTitle('wallabag — ' . $type . ' feed');
72c20a52 917 $feed->setLink(Tools::getPocheUrl());
223268c2
NL
918 $feed->setChannelElement('pubDate', date(DATE_RSS , time()));
919 $feed->setChannelElement('generator', 'wallabag');
920 $feed->setDescription('wallabag ' . $type . ' elements');
72c20a52 921
f778e472 922 if ($type == 'tag') {
b89d5a2b 923 $entries = $this->store->retrieveEntriesByTag($tag_id, $user_id);
f778e472
NL
924 }
925 else {
926 $entries = $this->store->getEntriesByView($type, $user_id);
927 }
928
7fe8a9ad
VM
929 // if $limit is set to zero, use all entries
930 if (0 == $limit) {
931 $limit = count($entries);
932 }
72c20a52 933 if (count($entries) > 0) {
7fe8a9ad
VM
934 for ($i = 0; $i < min(count($entries), $limit); $i++) {
935 $entry = $entries[$i];
72c20a52 936 $newItem = $feed->createNewItem();
0b57c682 937 $newItem->setTitle($entry['title']);
f86784c2 938 $newItem->setSource(Tools::getPocheUrl() . '?view=view&amp;id=' . $entry['id']);
ed02e38e 939 $newItem->setLink($entry['url']);
72c20a52
NL
940 $newItem->setDate(time());
941 $newItem->setDescription($entry['content']);
942 $feed->addItem($newItem);
943 }
944 }
945
946 $feed->genarateFeed();
947 exit;
948 }
6285e57c 949
6285e57c 950
0f859c6f
MR
951
952 /**
2f26729c 953 * Returns new purifier object with actual config
0f859c6f 954 */
2f26729c
NL
955 private function _getPurifier()
956 {
957 $config = HTMLPurifier_Config::createDefault();
958 $config->set('Cache.SerializerPath', CACHE);
959 $config->set('HTML.SafeIframe', true);
35d4e275 960
2f26729c
NL
961 //allow YouTube, Vimeo and dailymotion videos
962 $config->set('URI.SafeIframeRegexp', '%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/|www\.dailymotion\.com/embed/video/)%');
ec15d0a7 963
2f26729c 964 return new HTMLPurifier($config);
0f859c6f 965 }
cbc75bef 966
cbc75bef 967
37cad522 968}