]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/Poche.class.php
fix little problems and bring previous features to all themes
[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');
f76dab12
TC
409 $view = $_GET['view'];
410 if ($this->store->getRandomId($this->user->getId(),$view)) {
411 $id_array = $this->store->getRandomId($this->user->getId(),$view);
336797f3 412 $id = $id_array[0];
cdee5e65
TC
413 Tools::redirect('?view=view&id=' . $id[0]);
414 Tools::logm('got the article with id ' . $id[0]);
415 }
e51487f9 416 break;
eb1af592
NL
417 default:
418 break;
419 }
420 }
421
422 function displayView($view, $id = 0)
423 {
424 $tpl_vars = array();
425
426 switch ($view)
427 {
3c133bff
NL
428 case 'about':
429 break;
eb1af592 430 case 'config':
2f26729c 431 $dev_infos = $this->_getPocheVersion('dev');
11c680f9
NL
432 $dev = trim($dev_infos[0]);
433 $check_time_dev = date('d-M-Y H:i', $dev_infos[1]);
2f26729c 434 $prod_infos = $this->_getPocheVersion('prod');
11c680f9
NL
435 $prod = trim($prod_infos[0]);
436 $check_time_prod = date('d-M-Y H:i', $prod_infos[1]);
031df528
NL
437 $compare_dev = version_compare(POCHE, $dev);
438 $compare_prod = version_compare(POCHE, $prod);
3602405e
NL
439 $themes = $this->tpl->getInstalledThemes();
440 $languages = $this->language->getInstalledLanguages();
72c20a52 441 $token = $this->user->getConfigValue('token');
1810c13b 442 $http_auth = (isset($_SERVER['PHP_AUTH_USER']) || isset($_SERVER['REMOTE_USER'])) ? true : false;
4d99bae8 443 $only_user = ($this->store->listUsers() > 1) ? false : true;
32520785 444 $tpl_vars = array(
00dbaf90 445 'themes' => $themes,
5011388f 446 'languages' => $languages,
32520785
NL
447 'dev' => $dev,
448 'prod' => $prod,
11c680f9
NL
449 'check_time_dev' => $check_time_dev,
450 'check_time_prod' => $check_time_prod,
32520785
NL
451 'compare_dev' => $compare_dev,
452 'compare_prod' => $compare_prod,
72c20a52
NL
453 'token' => $token,
454 'user_id' => $this->user->getId(),
df6afaf0 455 'http_auth' => $http_auth,
4d99bae8 456 'only_user' => $only_user
32520785 457 );
eb1af592
NL
458 Tools::logm('config view');
459 break;
6cab59c3
NL
460 case 'edit-tags':
461 # tags
b89d5a2b
NL
462 $entry = $this->store->retrieveOneById($id, $this->user->getId());
463 if (!$entry) {
464 $this->messages->add('e', _('Article not found!'));
465 Tools::logm('error : article not found');
466 Tools::redirect();
467 }
6cab59c3 468 $tags = $this->store->retrieveTagsByEntry($id);
512ff180 469 $all_tags = $this->store->retrieveAllTags($this->user->getId());
ab87a7fe
TC
470 $maximus = 0;
471 foreach ($all_tags as $eachtag) { // search for the most times a tag is present
472 if ($eachtag["entriescount"] > $maximus) $maximus = $eachtag["entriescount"];
473 }
474 foreach ($all_tags as $key => $eachtag) { // get the percentage of presence of each tag
475 $percent = floor(($eachtag["entriescount"] / $maximus) * 100);
476
477 if ($percent < 20): // assign a css class, depending on the number of entries count
478 $cssclass = 'smallesttag';
479 elseif ($percent >= 20 and $percent < 40):
480 $cssclass = 'smalltag';
481 elseif ($percent >= 40 and $percent < 60):
482 $cssclass = 'mediumtag';
483 elseif ($percent >= 60 and $percent < 80):
484 $cssclass = 'largetag';
485 else:
486 $cssclass = 'largesttag';
487 endif;
488 $all_tags[$key]['cssclass'] = $cssclass;
489 }
6cab59c3 490 $tpl_vars = array(
c432fa16 491 'entry_id' => $id,
6cab59c3 492 'tags' => $tags,
512ff180 493 'alltags' => $all_tags,
032e0ca1 494 'entry' => $entry,
4886ed6d
NL
495 );
496 break;
2e2ebe5e 497 case 'tags':
f778e472 498 $token = $this->user->getConfigValue('token');
fb26cc93
MR
499 //if term is set - search tags for this term
500 $term = Tools::checkVar('term');
501 $tags = $this->store->retrieveAllTags($this->user->getId(), $term);
502 if (Tools::isAjaxRequest()) {
503 $result = array();
504 foreach ($tags as $tag) {
505 $result[] = $tag['value'];
506 }
507 echo json_encode($result);
508 exit;
509 }
2e2ebe5e 510 $tpl_vars = array(
f778e472
NL
511 'token' => $token,
512 'user_id' => $this->user->getId(),
2e2ebe5e
NL
513 'tags' => $tags,
514 );
515 break;
a4585f7e
MR
516 case 'search':
517 if (isset($_GET['search'])) {
518 $search = filter_var($_GET['search'], FILTER_SANITIZE_STRING);
519 $tpl_vars['entries'] = $this->store->search($search, $this->user->getId());
520 $count = count($tpl_vars['entries']);
521 $this->pagination->set_total($count);
522 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
523 $this->pagination->page_links('?view=' . $view . '?search=' . $search . '&sort=' . $_SESSION['sort'] . '&' ));
524 $tpl_vars['page_links'] = $page_links;
525 $tpl_vars['nb_results'] = $count;
ae27d0ff 526 $tpl_vars['searchterm'] = $search;
a4585f7e
MR
527 }
528 break;
eb1af592 529 case 'view':
8d3275be 530 $entry = $this->store->retrieveOneById($id, $this->user->getId());
eb1af592
NL
531 if ($entry != NULL) {
532 Tools::logm('view link #' . $id);
533 $content = $entry['content'];
534 if (function_exists('tidy_parse_string')) {
535 $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
536 $tidy->cleanRepair();
537 $content = $tidy->value;
3408ed48 538 }
a3223127 539
3408ed48 540 # flattr checking
37cad522
TC
541 $flattr = NULL;
542 if (FLATTR) {
543 $flattr = new FlattrItem();
544 $flattr->checkItem($entry['url'], $entry['id']);
545 }
546
059a3380
TC
547 # previous and next
548 $previous = FALSE;
549 $previous_id = $this->store->getPreviousArticle($id, $this->user->getId());
550 $next = FALSE;
551 $next_id = $this->store->getNextArticle($id, $this->user->getId());
552
553 if ($this->store->retrieveOneById($previous_id, $this->user->getId())) {
554 $previous = TRUE;
555 }
556 if ($this->store->retrieveOneById($next_id, $this->user->getId())) {
557 $next = TRUE;
558 }
559 $navigate = $arrayName = array('previous' => $previous, 'previousid' => $previous_id, 'next' => $next, 'nextid' => $next_id);
560
7b171c73
NL
561 # tags
562 $tags = $this->store->retrieveTagsByEntry($entry['id']);
a3223127 563
3408ed48 564 $tpl_vars = array(
7b171c73
NL
565 'entry' => $entry,
566 'content' => $content,
567 'flattr' => $flattr,
059a3380
TC
568 'tags' => $tags,
569 'navigate' => $navigate
3408ed48 570 );
eb1af592
NL
571 }
572 else {
d8d1542e 573 Tools::logm('error in view call : entry is null');
eb1af592
NL
574 }
575 break;
032e0ca1 576 default: # home, favorites, archive and tag views
eb1af592 577 $tpl_vars = array(
3eb04903
N
578 'entries' => '',
579 'page_links' => '',
7f9f5281 580 'nb_results' => '',
6065553c 581 'listmode' => (isset($_COOKIE['listmode']) ? true : false),
f76dab12 582 'view' => $view,
eb1af592 583 );
182faf26 584
3602405e 585 //if id is given - we retrieve entries by tag: id is tag id
032e0ca1
MR
586 if ($id) {
587 $tpl_vars['tag'] = $this->store->retrieveTag($id, $this->user->getId());
588 $tpl_vars['id'] = intval($id);
589 }
590
591 $count = $this->store->getEntriesByViewCount($view, $this->user->getId(), $id);
592
593 if ($count > 0) {
594 $this->pagination->set_total($count);
c515ffec 595 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
032e0ca1
MR
596 $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . (($id)?'&id='.$id:'') . '&' ));
597 $tpl_vars['entries'] = $this->store->getEntriesByView($view, $this->user->getId(), $this->pagination->get_limit(), $id);
3eb04903 598 $tpl_vars['page_links'] = $page_links;
032e0ca1 599 $tpl_vars['nb_results'] = $count;
3eb04903 600 }
6a361945 601 Tools::logm('display ' . $view . ' view');
eb1af592
NL
602 break;
603 }
604
605 return $tpl_vars;
606 }
c765c367 607
07ee09f4 608 /**
182faf26
MR
609 * update the password of the current user.
610 * if MODE_DEMO is TRUE, the password can't be updated.
07ee09f4
NL
611 * @todo add the return value
612 * @todo set the new password in function header like this updatePassword($newPassword)
613 * @return boolean
614 */
2f26729c 615 public function updatePassword($password, $confirmPassword)
c765c367 616 {
55821e04 617 if (MODE_DEMO) {
8d3275be 618 $this->messages->add('i', _('in demo mode, you can\'t update your password'));
55821e04 619 Tools::logm('in demo mode, you can\'t do this');
6a361945 620 Tools::redirect('?view=config');
55821e04
NL
621 }
622 else {
2f26729c
NL
623 if (isset($password) && isset($confirmPassword)) {
624 if ($password == $confirmPassword && !empty($password)) {
8d3275be 625 $this->messages->add('s', _('your password has been updated'));
2f26729c 626 $this->store->updatePassword($this->user->getId(), Tools::encodeString($password . $this->user->getUsername()));
c765c367 627 Session::logout();
8d3275be 628 Tools::logm('password updated');
c765c367
NL
629 Tools::redirect();
630 }
631 else {
8d3275be 632 $this->messages->add('e', _('the two fields have to be filled & the password must be the same in the two fields'));
6a361945 633 Tools::redirect('?view=config');
c765c367
NL
634 }
635 }
636 }
637 }
182faf26 638
df6afaf0 639 /**
2f26729c
NL
640 * Get credentials from differents sources
641 * It redirects the user to the $referer link
642 *
df6afaf0
DS
643 * @return array
644 */
2f26729c
NL
645 private function credentials()
646 {
647 if (isset($_SERVER['PHP_AUTH_USER'])) {
648 return array($_SERVER['PHP_AUTH_USER'], 'php_auth', true);
1810c13b 649 }
2f26729c
NL
650 if (!empty($_POST['login']) && !empty($_POST['password'])) {
651 return array($_POST['login'], $_POST['password'], false);
1810c13b 652 }
2f26729c
NL
653 if (isset($_SERVER['REMOTE_USER'])) {
654 return array($_SERVER['REMOTE_USER'], 'http_auth', true);
1810c13b 655 }
5cfafc61 656
2f26729c 657 return array(false, false, false);
6af66b11 658 }
df6afaf0 659
07ee09f4
NL
660 /**
661 * checks if login & password are correct and save the user in session.
662 * it redirects the user to the $referer link
663 * @param string $referer the url to redirect after login
664 * @todo add the return value
665 * @return boolean
666 */
c765c367
NL
667 public function login($referer)
668 {
6af66b11 669 list($login,$password,$isauthenticated)=$this->credentials();
df6afaf0
DS
670 if($login === false || $password === false) {
671 $this->messages->add('e', _('login failed: you have to fill all fields'));
672 Tools::logm('login failed');
673 Tools::redirect();
674 }
675 if (!empty($login) && !empty($password)) {
6af66b11 676 $user = $this->store->login($login, Tools::encodeString($password . $login), $isauthenticated);
7ce7ec4c
NL
677 if ($user != array()) {
678 # Save login into Session
6af66b11
MR
679 $longlastingsession = isset($_POST['longlastingsession']);
680 $passwordTest = ($isauthenticated) ? $user['password'] : Tools::encodeString($password . $login);
681 Session::login($user['username'], $user['password'], $login, $passwordTest, $longlastingsession, array('poche_user' => new User($user)));
9cf6bac1
NL
682
683 # reload l10n
684 $language = $user['config']['language'];
685 @putenv('LC_ALL=' . $language);
686 setlocale(LC_ALL, $language);
687 bindtextdomain($language, LOCALE);
688 textdomain($language);
689
26929c08 690 $this->messages->add('s', _('welcome to your wallabag'));
8d3275be 691 Tools::logm('login successful');
c765c367
NL
692 Tools::redirect($referer);
693 }
8d3275be 694 $this->messages->add('e', _('login failed: bad login or password'));
c86b40f0
GV
695 // log login failure in web server log to allow fail2ban usage
696 error_log('user '.$login.' authentication failure');
c765c367
NL
697 Tools::logm('login failed');
698 Tools::redirect();
c765c367
NL
699 }
700 }
701
07ee09f4
NL
702 /**
703 * log out the poche user. It cleans the session.
704 * @todo add the return value
182faf26 705 * @return boolean
07ee09f4 706 */
c765c367
NL
707 public function logout()
708 {
7ce7ec4c 709 $this->user = array();
c765c367 710 Session::logout();
b916bcfc 711 Tools::logm('logout');
c765c367
NL
712 Tools::redirect();
713 }
714
07ee09f4 715 /**
2f26729c 716 * import datas into your wallabag
182faf26 717 * @return boolean
07ee09f4 718 */
2f26729c 719
182faf26
MR
720 public function import() {
721
dc764892 722 if ( isset($_FILES['file']) && $_FILES['file']['tmp_name'] ) {
5ce39784
MR
723 Tools::logm('Import stated: parsing file');
724
182faf26
MR
725 // assume, that file is in json format
726 $str_data = file_get_contents($_FILES['file']['tmp_name']);
727 $data = json_decode($str_data, true);
728
729 if ( $data === null ) {
730 //not json - assume html
731 $html = new simple_html_dom();
732 $html->load_file($_FILES['file']['tmp_name']);
733 $data = array();
734 $read = 0;
735 foreach (array('ol','ul') as $list) {
736 foreach ($html->find($list) as $ul) {
86da3988
MR
737 foreach ($ul->find('li') as $li) {
738 $tmpEntry = array();
a8ef1f3f
MR
739 $a = $li->find('a');
740 $tmpEntry['url'] = $a[0]->href;
741 $tmpEntry['tags'] = $a[0]->tags;
742 $tmpEntry['is_read'] = $read;
743 if ($tmpEntry['url']) {
744 $data[] = $tmpEntry;
745 }
86da3988
MR
746 }
747 # the second <ol/ul> is for read links
748 $read = ((sizeof($data) && $read)?0:1);
182faf26
MR
749 }
750 }
1daa8e4a 751 }
182faf26 752
2f26729c
NL
753 // for readability structure
754
755 foreach($data as $record) {
756 if (is_array($record)) {
757 $data[] = $record;
758 foreach($record as $record2) {
759 if (is_array($record2)) {
760 $data[] = $record2;
761 }
762 }
763 }
a297fb1e 764 }
a297fb1e 765
2f26729c
NL
766 $urlsInserted = array(); //urls of articles inserted
767 foreach($data as $record) {
768 $url = trim(isset($record['article__url']) ? $record['article__url'] : (isset($record['url']) ? $record['url'] : ''));
769 if ($url and !in_array($url, $urlsInserted)) {
770 $title = (isset($record['title']) ? $record['title'] : _('Untitled - Import - ') . '</a> <a href="./?import">' . _('click to finish import') . '</a><a>');
771 $body = (isset($record['content']) ? $record['content'] : '');
772 $isRead = (isset($record['is_read']) ? intval($record['is_read']) : (isset($record['archive']) ? intval($record['archive']) : 0));
773 $isFavorite = (isset($record['is_fav']) ? intval($record['is_fav']) : (isset($record['favorite']) ? intval($record['favorite']) : 0));
774
775 // insert new record
776
777 $id = $this->store->add($url, $title, $body, $this->user->getId() , $isFavorite, $isRead);
778 if ($id) {
779 $urlsInserted[] = $url; //add
780 if (isset($record['tags']) && trim($record['tags'])) {
781
9a490ad6 782 $tags = explode(',', $record['tags']);
3052cfb7 783 foreach($tags as $tag) {
784 $entry_id = $id;
785 $tag_id = $this->store->retrieveTagByValue($tag);
786 if ($tag_id) {
787 $this->store->setTagToEntry($tag_id['id'], $entry_id);
788 } else {
789 $this->store->createTag($tag);
790 $tag_id = $this->store->retrieveTagByValue($tag);
791 $this->store->setTagToEntry($tag_id['id'], $entry_id);
792 }
793 }
2f26729c
NL
794
795 }
796 }
797 }
182faf26 798 }
182faf26 799
2f26729c
NL
800 $i = sizeof($urlsInserted);
801 if ($i > 0) {
802 $this->messages->add('s', _('Articles inserted: ') . $i . _('. Please note, that some may be marked as "read".'));
803 }
804
5ce39784 805 Tools::logm('Import of articles finished: '.$i.' articles added (w/o content if not provided).');
182faf26 806 }
dc764892 807 else {
df89c6f7 808 $this->messages->add('e', _('Did you forget to select a file?'));
dc764892 809 }
2f26729c
NL
810 // file parsing finished here
811 // now download article contents if any
812 // check if we need to download any content
182faf26 813
2f26729c
NL
814 $recordsDownloadRequired = $this->store->retrieveUnfetchedEntriesCount($this->user->getId());
815
816 if ($recordsDownloadRequired == 0) {
182faf26 817
2f26729c 818 // nothing to download
182faf26 819
2f26729c
NL
820 $this->messages->add('s', _('Import finished.'));
821 Tools::logm('Import finished completely');
822 Tools::redirect();
823 }
824 else {
182faf26 825
2f26729c 826 // if just inserted - don't download anything, download will start in next reload
182faf26 827
2f26729c 828 if (!isset($_FILES['file'])) {
182faf26 829
2f26729c 830 // download next batch
182faf26 831
2f26729c
NL
832 Tools::logm('Fetching next batch of articles...');
833 $items = $this->store->retrieveUnfetchedEntries($this->user->getId() , IMPORT_LIMIT);
834 $purifier = $this->_getPurifier();
835 foreach($items as $item) {
836 $url = new Url(base64_encode($item['url']));
fde4cf06
EP
837 if( $url->isCorrect() )
838 {
839 Tools::logm('Fetching article ' . $item['id']);
840 $content = Tools::getPageContent($url);
841 $title = (($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled'));
842 $body = (($content['rss']['channel']['item']['description'] != '') ? $content['rss']['channel']['item']['description'] : _('Undefined'));
843
844 // clean content to prevent xss attack
845
846 $title = $purifier->purify($title);
847 $body = $purifier->purify($body);
848 $this->store->updateContentAndTitle($item['id'], $title, $body, $this->user->getId());
849 Tools::logm('Article ' . $item['id'] . ' updated.');
850 } else
851 {
852 Tools::logm('Unvalid URL (' . $item['url'] .') to fetch for article ' . $item['id']);
853 }
2f26729c
NL
854 }
855 }
63c35580 856 }
182faf26 857
2f26729c
NL
858 return array(
859 'includeImport' => true,
860 'import' => array(
861 'recordsDownloadRequired' => $recordsDownloadRequired,
862 'recordsUnderDownload' => IMPORT_LIMIT,
863 'delay' => IMPORT_DELAY * 1000
864 )
865 );
63c35580 866 }
c765c367 867
07ee09f4
NL
868 /**
869 * export poche entries in json
870 * @return json all poche entries
871 */
2f26729c
NL
872 public function export()
873 {
a8ef1f3f
MR
874 $filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json";
875 header('Content-Disposition: attachment; filename='.$filename);
876
877 $entries = $this->store->retrieveAll($this->user->getId());
878 echo $this->tpl->render('export.twig', array(
879 'export' => Tools::renderJson($entries),
880 ));
881 Tools::logm('export view');
c765c367 882 }
32520785 883
07ee09f4 884 /**
a3436d4c 885 * Checks online the latest version of poche and cache it
07ee09f4
NL
886 * @param string $which 'prod' or 'dev'
887 * @return string latest $which version
888 */
2f26729c 889 private function _getPocheVersion($which = 'prod') {
a8ef1f3f
MR
890 $cache_file = CACHE . '/' . $which;
891 $check_time = time();
892
893 # checks if the cached version file exists
894 if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) {
895 $version = file_get_contents($cache_file);
896 $check_time = filemtime($cache_file);
897 } else {
898 $version = file_get_contents('http://static.wallabag.org/versions/' . $which);
899 file_put_contents($cache_file, $version, LOCK_EX);
900 }
901 return array($version, $check_time);
32520785 902 }
72c20a52 903
2f26729c
NL
904 /**
905 * Update token for current user
906 */
907 public function updateToken()
72c20a52 908 {
2f26729c
NL
909 $token = Tools::generateToken();
910 $this->store->updateUserConfig($this->user->getId(), 'token', $token);
911 $currentConfig = $_SESSION['poche_user']->config;
912 $currentConfig['token'] = $token;
913 $_SESSION['poche_user']->setConfig($currentConfig);
914 Tools::redirect();
72c20a52
NL
915 }
916
2f26729c
NL
917 /**
918 * Generate RSS feeds for current user
919 *
920 * @param $token
921 * @param $user_id
7fe8a9ad
VM
922 * @param $tag_id if $type is 'tag', the id of the tag to generate feed for
923 * @param string $type the type of feed to generate
924 * @param int $limit the maximum number of items (0 means all)
2f26729c 925 */
7fe8a9ad 926 public function generateFeeds($token, $user_id, $tag_id, $type = 'home', $limit = 0)
72c20a52 927 {
f778e472 928 $allowed_types = array('home', 'fav', 'archive', 'tag');
72c20a52
NL
929 $config = $this->store->getConfigUser($user_id);
930
17b2afef 931 if ($config == null) {
30bd2735 932 die(sprintf(_('User with this id (%d) does not exist.'), $user_id));
17b2afef
NL
933 }
934
7dd8b502
MR
935 if (!in_array($type, $allowed_types) || !isset($config['token']) || $token != $config['token']) {
936 die(_('Uh, there is a problem while generating feed. Wrong token used?'));
72c20a52 937 }
72c20a52 938
9e7c840b 939 $feed = new FeedWriter(RSS2);
2e4440c3 940 $feed->setTitle('wallabag — ' . $type . ' feed');
72c20a52 941 $feed->setLink(Tools::getPocheUrl());
223268c2
NL
942 $feed->setChannelElement('pubDate', date(DATE_RSS , time()));
943 $feed->setChannelElement('generator', 'wallabag');
944 $feed->setDescription('wallabag ' . $type . ' elements');
72c20a52 945
f778e472 946 if ($type == 'tag') {
b89d5a2b 947 $entries = $this->store->retrieveEntriesByTag($tag_id, $user_id);
f778e472
NL
948 }
949 else {
950 $entries = $this->store->getEntriesByView($type, $user_id);
951 }
952
7fe8a9ad
VM
953 // if $limit is set to zero, use all entries
954 if (0 == $limit) {
955 $limit = count($entries);
956 }
72c20a52 957 if (count($entries) > 0) {
7fe8a9ad
VM
958 for ($i = 0; $i < min(count($entries), $limit); $i++) {
959 $entry = $entries[$i];
72c20a52 960 $newItem = $feed->createNewItem();
0b57c682 961 $newItem->setTitle($entry['title']);
f86784c2 962 $newItem->setSource(Tools::getPocheUrl() . '?view=view&amp;id=' . $entry['id']);
ed02e38e 963 $newItem->setLink($entry['url']);
72c20a52
NL
964 $newItem->setDate(time());
965 $newItem->setDescription($entry['content']);
966 $feed->addItem($newItem);
967 }
968 }
969
970 $feed->genarateFeed();
971 exit;
972 }
6285e57c 973
6285e57c 974
0f859c6f
MR
975
976 /**
2f26729c 977 * Returns new purifier object with actual config
0f859c6f 978 */
2f26729c
NL
979 private function _getPurifier()
980 {
981 $config = HTMLPurifier_Config::createDefault();
982 $config->set('Cache.SerializerPath', CACHE);
983 $config->set('HTML.SafeIframe', true);
35d4e275 984
2f26729c
NL
985 //allow YouTube, Vimeo and dailymotion videos
986 $config->set('URI.SafeIframeRegexp', '%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/|www\.dailymotion\.com/embed/video/)%');
ec15d0a7 987
2f26729c 988 return new HTMLPurifier($config);
0f859c6f 989 }
cbc75bef 990
cbc75bef 991
37cad522 992}