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