]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - index.php
Remove legacy handling of /add-tag route
[github/shaarli/Shaarli.git] / index.php
1 <?php
2 /**
3 * Shaarli - The personal, minimalist, super-fast, database free, bookmarking service.
4 *
5 * Friendly fork by the Shaarli community:
6 * - https://github.com/shaarli/Shaarli
7 *
8 * Original project by sebsauvage.net:
9 * - http://sebsauvage.net/wiki/doku.php?id=php:shaarli
10 * - https://github.com/sebsauvage/Shaarli
11 *
12 * Licence: http://www.opensource.org/licenses/zlib-license.php
13 */
14
15 // Set 'UTC' as the default timezone if it is not defined in php.ini
16 // See http://php.net/manual/en/datetime.configuration.php#ini.date.timezone
17 if (date_default_timezone_get() == '') {
18 date_default_timezone_set('UTC');
19 }
20
21 /*
22 * PHP configuration
23 */
24
25 // http://server.com/x/shaarli --> /shaarli/
26 define('WEB_PATH', substr($_SERVER['REQUEST_URI'], 0, 1+strrpos($_SERVER['REQUEST_URI'], '/', 0)));
27
28 // High execution time in case of problematic imports/exports.
29 ini_set('max_input_time', '60');
30
31 // Try to set max upload file size and read
32 ini_set('memory_limit', '128M');
33 ini_set('post_max_size', '16M');
34 ini_set('upload_max_filesize', '16M');
35
36 // See all error except warnings
37 error_reporting(E_ALL^E_WARNING);
38
39 // 3rd-party libraries
40 if (! file_exists(__DIR__ . '/vendor/autoload.php')) {
41 header('Content-Type: text/plain; charset=utf-8');
42 echo "Error: missing Composer configuration\n\n"
43 ."If you installed Shaarli through Git or using the development branch,\n"
44 ."please refer to the installation documentation to install PHP"
45 ." dependencies using Composer:\n"
46 ."- https://shaarli.readthedocs.io/en/master/Server-configuration/\n"
47 ."- https://shaarli.readthedocs.io/en/master/Download-and-Installation/";
48 exit;
49 }
50 require_once 'inc/rain.tpl.class.php';
51 require_once __DIR__ . '/vendor/autoload.php';
52
53 // Shaarli library
54 require_once 'application/bookmark/LinkUtils.php';
55 require_once 'application/config/ConfigPlugin.php';
56 require_once 'application/http/HttpUtils.php';
57 require_once 'application/http/UrlUtils.php';
58 require_once 'application/updater/UpdaterUtils.php';
59 require_once 'application/FileUtils.php';
60 require_once 'application/TimeZone.php';
61 require_once 'application/Utils.php';
62
63 use Shaarli\ApplicationUtils;
64 use Shaarli\Bookmark\Bookmark;
65 use Shaarli\Bookmark\BookmarkFileService;
66 use Shaarli\Bookmark\BookmarkFilter;
67 use Shaarli\Bookmark\BookmarkServiceInterface;
68 use Shaarli\Bookmark\Exception\BookmarkNotFoundException;
69 use Shaarli\Config\ConfigManager;
70 use Shaarli\Container\ContainerBuilder;
71 use Shaarli\Feed\CachedPage;
72 use Shaarli\Feed\FeedBuilder;
73 use Shaarli\Formatter\BookmarkMarkdownFormatter;
74 use Shaarli\Formatter\FormatterFactory;
75 use Shaarli\History;
76 use Shaarli\Languages;
77 use Shaarli\Netscape\NetscapeBookmarkUtils;
78 use Shaarli\Plugin\PluginManager;
79 use Shaarli\Render\PageBuilder;
80 use Shaarli\Render\PageCacheManager;
81 use Shaarli\Render\ThemeUtils;
82 use Shaarli\Router;
83 use Shaarli\Security\LoginManager;
84 use Shaarli\Security\SessionManager;
85 use Shaarli\Thumbnailer;
86 use Shaarli\Updater\Updater;
87 use Shaarli\Updater\UpdaterUtils;
88 use Slim\App;
89
90 // Ensure the PHP version is supported
91 try {
92 ApplicationUtils::checkPHPVersion('7.1', PHP_VERSION);
93 } catch (Exception $exc) {
94 header('Content-Type: text/plain; charset=utf-8');
95 echo $exc->getMessage();
96 exit;
97 }
98
99 define('SHAARLI_VERSION', ApplicationUtils::getVersion(__DIR__ .'/'. ApplicationUtils::$VERSION_FILE));
100
101 // Force cookie path (but do not change lifetime)
102 $cookie = session_get_cookie_params();
103 $cookiedir = '';
104 if (dirname($_SERVER['SCRIPT_NAME']) != '/') {
105 $cookiedir = dirname($_SERVER["SCRIPT_NAME"]).'/';
106 }
107 // Set default cookie expiration and path.
108 session_set_cookie_params($cookie['lifetime'], $cookiedir, $_SERVER['SERVER_NAME']);
109 // Set session parameters on server side.
110 // Use cookies to store session.
111 ini_set('session.use_cookies', 1);
112 // Force cookies for session (phpsessionID forbidden in URL).
113 ini_set('session.use_only_cookies', 1);
114 // Prevent PHP form using sessionID in URL if cookies are disabled.
115 ini_set('session.use_trans_sid', false);
116
117 session_name('shaarli');
118 // Start session if needed (Some server auto-start sessions).
119 if (session_status() == PHP_SESSION_NONE) {
120 session_start();
121 }
122
123 // Regenerate session ID if invalid or not defined in cookie.
124 if (isset($_COOKIE['shaarli']) && !SessionManager::checkId($_COOKIE['shaarli'])) {
125 session_regenerate_id(true);
126 $_COOKIE['shaarli'] = session_id();
127 }
128
129 $conf = new ConfigManager();
130
131 // In dev mode, throw exception on any warning
132 if ($conf->get('dev.debug', false)) {
133 // See all errors (for debugging only)
134 error_reporting(-1);
135
136 set_error_handler(function($errno, $errstr, $errfile, $errline, array $errcontext) {
137 throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
138 });
139 }
140
141 $sessionManager = new SessionManager($_SESSION, $conf);
142 $loginManager = new LoginManager($conf, $sessionManager);
143 $loginManager->generateStaySignedInToken($_SERVER['REMOTE_ADDR']);
144 $clientIpId = client_ip_id($_SERVER);
145
146 // LC_MESSAGES isn't defined without php-intl, in this case use LC_COLLATE locale instead.
147 if (! defined('LC_MESSAGES')) {
148 define('LC_MESSAGES', LC_COLLATE);
149 }
150
151 // Sniff browser language and set date format accordingly.
152 if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
153 autoLocale($_SERVER['HTTP_ACCEPT_LANGUAGE']);
154 }
155
156 new Languages(setlocale(LC_MESSAGES, 0), $conf);
157
158 $conf->setEmpty('general.timezone', date_default_timezone_get());
159 $conf->setEmpty('general.title', t('Shared bookmarks on '). escape(index_url($_SERVER)));
160 RainTPL::$tpl_dir = $conf->get('resource.raintpl_tpl').'/'.$conf->get('resource.theme').'/'; // template directory
161 RainTPL::$cache_dir = $conf->get('resource.raintpl_tmp'); // cache directory
162
163 $pluginManager = new PluginManager($conf);
164 $pluginManager->load($conf->get('general.enabled_plugins'));
165
166 date_default_timezone_set($conf->get('general.timezone', 'UTC'));
167
168 ob_start(); // Output buffering for the page cache.
169
170 // Prevent caching on client side or proxy: (yes, it's ugly)
171 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
172 header("Cache-Control: no-store, no-cache, must-revalidate");
173 header("Cache-Control: post-check=0, pre-check=0", false);
174 header("Pragma: no-cache");
175
176 if (! is_file($conf->getConfigFileExt())) {
177 // Ensure Shaarli has proper access to its resources
178 $errors = ApplicationUtils::checkResourcePermissions($conf);
179
180 if ($errors != array()) {
181 $message = '<p>'. t('Insufficient permissions:') .'</p><ul>';
182
183 foreach ($errors as $error) {
184 $message .= '<li>'.$error.'</li>';
185 }
186 $message .= '</ul>';
187
188 header('Content-Type: text/html; charset=utf-8');
189 echo $message;
190 exit;
191 }
192
193 // Display the installation form if no existing config is found
194 install($conf, $sessionManager, $loginManager);
195 }
196
197 $loginManager->checkLoginState($_COOKIE, $clientIpId);
198
199 /**
200 * Adapter function to ensure compatibility with third-party templates
201 *
202 * @see https://github.com/shaarli/Shaarli/pull/1086
203 *
204 * @return bool true when the user is logged in, false otherwise
205 */
206 function isLoggedIn()
207 {
208 global $loginManager;
209 return $loginManager->isLoggedIn();
210 }
211
212
213 // ------------------------------------------------------------------------------------------
214 // Process login form: Check if login/password is correct.
215 if (isset($_POST['login'])) {
216 if (! $loginManager->canLogin($_SERVER)) {
217 die(t('I said: NO. You are banned for the moment. Go away.'));
218 }
219 if (isset($_POST['password'])
220 && $sessionManager->checkToken($_POST['token'])
221 && $loginManager->checkCredentials($_SERVER['REMOTE_ADDR'], $clientIpId, $_POST['login'], $_POST['password'])
222 ) {
223 $loginManager->handleSuccessfulLogin($_SERVER);
224
225 $cookiedir = '';
226 if (dirname($_SERVER['SCRIPT_NAME']) != '/') {
227 // Note: Never forget the trailing slash on the cookie path!
228 $cookiedir = dirname($_SERVER["SCRIPT_NAME"]) . '/';
229 }
230
231 if (!empty($_POST['longlastingsession'])) {
232 // Keep the session cookie even after the browser closes
233 $sessionManager->setStaySignedIn(true);
234 $expirationTime = $sessionManager->extendSession();
235
236 setcookie(
237 $loginManager::$STAY_SIGNED_IN_COOKIE,
238 $loginManager->getStaySignedInToken(),
239 $expirationTime,
240 WEB_PATH
241 );
242 } else {
243 // Standard session expiration (=when browser closes)
244 $expirationTime = 0;
245 }
246
247 // Send cookie with the new expiration date to the browser
248 session_destroy();
249 session_set_cookie_params($expirationTime, $cookiedir, $_SERVER['SERVER_NAME']);
250 session_start();
251 session_regenerate_id(true);
252
253 // Optional redirect after login:
254 if (isset($_GET['post'])) {
255 $uri = './?post='. urlencode($_GET['post']);
256 foreach (array('description', 'source', 'title', 'tags') as $param) {
257 if (!empty($_GET[$param])) {
258 $uri .= '&'.$param.'='.urlencode($_GET[$param]);
259 }
260 }
261 header('Location: '. $uri);
262 exit;
263 }
264
265 if (isset($_GET['edit_link'])) {
266 header('Location: ./?edit_link='. escape($_GET['edit_link']));
267 exit;
268 }
269
270 if (isset($_POST['returnurl'])) {
271 // Prevent loops over login screen.
272 if (strpos($_POST['returnurl'], '/login') === false) {
273 header('Location: '. generateLocation($_POST['returnurl'], $_SERVER['HTTP_HOST']));
274 exit;
275 }
276 }
277 header('Location: ./?');
278 exit;
279 } else {
280 $loginManager->handleFailedLogin($_SERVER);
281 $redir = '?username='. urlencode($_POST['login']);
282 if (isset($_GET['post'])) {
283 $redir .= '&post=' . urlencode($_GET['post']);
284 foreach (array('description', 'source', 'title', 'tags') as $param) {
285 if (!empty($_GET[$param])) {
286 $redir .= '&' . $param . '=' . urlencode($_GET[$param]);
287 }
288 }
289 }
290 // Redirect to login screen.
291 echo '<script>alert("'. t("Wrong login/password.") .'");document.location=\'./login'.$redir.'\';</script>';
292 exit;
293 }
294 }
295
296 // ------------------------------------------------------------------------------------------
297 // Token management for XSRF protection
298 // Token should be used in any form which acts on data (create,update,delete,import...).
299 if (!isset($_SESSION['tokens'])) {
300 $_SESSION['tokens']=array(); // Token are attached to the session.
301 }
302
303 /**
304 * Renders the linklist
305 *
306 * @param pageBuilder $PAGE pageBuilder instance.
307 * @param BookmarkServiceInterface $linkDb instance.
308 * @param ConfigManager $conf Configuration Manager instance.
309 * @param PluginManager $pluginManager Plugin Manager instance.
310 */
311 function showLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager)
312 {
313 buildLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager);
314 $PAGE->renderPage('linklist');
315 }
316
317 /**
318 * Render HTML page (according to URL parameters and user rights)
319 *
320 * @param ConfigManager $conf Configuration Manager instance.
321 * @param PluginManager $pluginManager Plugin Manager instance,
322 * @param BookmarkServiceInterface $bookmarkService
323 * @param History $history instance
324 * @param SessionManager $sessionManager SessionManager instance
325 * @param LoginManager $loginManager LoginManager instance
326 */
327 function renderPage($conf, $pluginManager, $bookmarkService, $history, $sessionManager, $loginManager)
328 {
329 $pageCacheManager = new PageCacheManager($conf->get('resource.page_cache'), $loginManager->isLoggedIn());
330 $updater = new Updater(
331 UpdaterUtils::read_updates_file($conf->get('resource.updates')),
332 $bookmarkService,
333 $conf,
334 $loginManager->isLoggedIn()
335 );
336 try {
337 $newUpdates = $updater->update();
338 if (! empty($newUpdates)) {
339 UpdaterUtils::write_updates_file(
340 $conf->get('resource.updates'),
341 $updater->getDoneUpdates()
342 );
343
344 $pageCacheManager->invalidateCaches();
345 }
346 } catch (Exception $e) {
347 die($e->getMessage());
348 }
349
350 $PAGE = new PageBuilder($conf, $_SESSION, $bookmarkService, $sessionManager->generateToken(), $loginManager->isLoggedIn());
351 $PAGE->assign('linkcount', $bookmarkService->count(BookmarkFilter::$ALL));
352 $PAGE->assign('privateLinkcount', $bookmarkService->count(BookmarkFilter::$PRIVATE));
353 $PAGE->assign('plugin_errors', $pluginManager->getErrors());
354
355 // Determine which page will be rendered.
356 $query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : '';
357 $targetPage = Router::findPage($query, $_GET, $loginManager->isLoggedIn());
358
359 if (// if the user isn't logged in
360 !$loginManager->isLoggedIn() &&
361 // and Shaarli doesn't have public content...
362 $conf->get('privacy.hide_public_links') &&
363 // and is configured to enforce the login
364 $conf->get('privacy.force_login') &&
365 // and the current page isn't already the login page
366 $targetPage !== Router::$PAGE_LOGIN &&
367 // and the user is not requesting a feed (which would lead to a different content-type as expected)
368 $targetPage !== Router::$PAGE_FEED_ATOM &&
369 $targetPage !== Router::$PAGE_FEED_RSS
370 ) {
371 // force current page to be the login page
372 $targetPage = Router::$PAGE_LOGIN;
373 }
374
375 // Call plugin hooks for header, footer and includes, specifying which page will be rendered.
376 // Then assign generated data to RainTPL.
377 $common_hooks = array(
378 'includes',
379 'header',
380 'footer',
381 );
382
383 foreach ($common_hooks as $name) {
384 $plugin_data = array();
385 $pluginManager->executeHooks(
386 'render_' . $name,
387 $plugin_data,
388 array(
389 'target' => $targetPage,
390 'loggedin' => $loginManager->isLoggedIn()
391 )
392 );
393 $PAGE->assign('plugins_' . $name, $plugin_data);
394 }
395
396 // -------- Display login form.
397 if ($targetPage == Router::$PAGE_LOGIN) {
398 header('Location: ./login');
399 exit;
400 }
401 // -------- User wants to logout.
402 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=logout')) {
403 header('Location: ./logout');
404 exit;
405 }
406
407 // -------- Picture wall
408 if ($targetPage == Router::$PAGE_PICWALL) {
409 header('Location: ./picture-wall');
410 exit;
411 }
412
413 // -------- Tag cloud
414 if ($targetPage == Router::$PAGE_TAGCLOUD) {
415 header('Location: ./tag-cloud');
416 exit;
417 }
418
419 // -------- Tag list
420 if ($targetPage == Router::$PAGE_TAGLIST) {
421 header('Location: ./tag-list');
422 exit;
423 }
424
425 // Daily page.
426 if ($targetPage == Router::$PAGE_DAILY) {
427 $dayParam = !empty($_GET['day']) ? '?day=' . escape($_GET['day']) : '';
428 header('Location: ./daily'. $dayParam);
429 exit;
430 }
431
432 // ATOM and RSS feed.
433 if ($targetPage == Router::$PAGE_FEED_ATOM || $targetPage == Router::$PAGE_FEED_RSS) {
434 $feedType = $targetPage == Router::$PAGE_FEED_RSS ? FeedBuilder::$FEED_RSS : FeedBuilder::$FEED_ATOM;
435 header('Content-Type: application/'. $feedType .'+xml; charset=utf-8');
436
437 // Cache system
438 $query = $_SERVER['QUERY_STRING'];
439 $cache = new CachedPage(
440 $conf->get('resource.page_cache'),
441 page_url($_SERVER),
442 startsWith($query, 'do='. $targetPage) && !$loginManager->isLoggedIn()
443 );
444 $cached = $cache->cachedVersion();
445 if (!empty($cached)) {
446 echo $cached;
447 exit;
448 }
449
450 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
451 // Generate data.
452 $feedGenerator = new FeedBuilder(
453 $bookmarkService,
454 $factory->getFormatter(),
455 $feedType,
456 $_SERVER,
457 $_GET,
458 $loginManager->isLoggedIn()
459 );
460 $feedGenerator->setLocale(strtolower(setlocale(LC_COLLATE, 0)));
461 $feedGenerator->setHideDates($conf->get('privacy.hide_timestamps') && !$loginManager->isLoggedIn());
462 $feedGenerator->setUsePermalinks(isset($_GET['permalinks']) || !$conf->get('feed.rss_permalinks'));
463 $data = $feedGenerator->buildData();
464
465 // Process plugin hook.
466 $pluginManager->executeHooks('render_feed', $data, array(
467 'loggedin' => $loginManager->isLoggedIn(),
468 'target' => $targetPage,
469 ));
470
471 // Render the template.
472 $PAGE->assignAll($data);
473 $PAGE->renderPage('feed.'. $feedType);
474 $cache->cache(ob_get_contents());
475 ob_end_flush();
476 exit;
477 }
478
479 // Display opensearch plugin (XML)
480 if ($targetPage == Router::$PAGE_OPENSEARCH) {
481 header('Content-Type: application/xml; charset=utf-8');
482 $PAGE->assign('serverurl', index_url($_SERVER));
483 $PAGE->renderPage('opensearch');
484 exit;
485 }
486
487 // -------- User clicks on a tag in a link: The tag is added to the list of searched tags (searchtags=...)
488 if (isset($_GET['addtag'])) {
489 header('Location: ./add-tag/'. $_GET['addtag']);
490 exit;
491 }
492
493 // -------- User clicks on a tag in result count: Remove the tag from the list of searched tags (searchtags=...)
494 if (isset($_GET['removetag'])) {
495 // Get previous URL (http_referer) and remove the tag from the searchtags parameters in query.
496 if (empty($_SERVER['HTTP_REFERER'])) {
497 header('Location: ?');
498 exit;
499 }
500
501 // In case browser does not send HTTP_REFERER
502 parse_str(parse_url($_SERVER['HTTP_REFERER'], PHP_URL_QUERY), $params);
503
504 // Prevent redirection loop
505 if (isset($params['removetag'])) {
506 unset($params['removetag']);
507 }
508
509 if (isset($params['searchtags'])) {
510 $tags = explode(' ', $params['searchtags']);
511 // Remove value from array $tags.
512 $tags = array_diff($tags, array($_GET['removetag']));
513 $params['searchtags'] = implode(' ', $tags);
514
515 if (empty($params['searchtags'])) {
516 unset($params['searchtags']);
517 }
518
519 // We also remove page (keeping the same page has no sense, since
520 // the results are different)
521 unset($params['page']);
522 }
523 header('Location: ?'.http_build_query($params));
524 exit;
525 }
526
527 // -------- User wants to change the number of bookmarks per page (linksperpage=...)
528 if (isset($_GET['linksperpage'])) {
529 if (is_numeric($_GET['linksperpage'])) {
530 $_SESSION['LINKS_PER_PAGE']=abs(intval($_GET['linksperpage']));
531 }
532
533 if (! empty($_SERVER['HTTP_REFERER'])) {
534 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('linksperpage'));
535 } else {
536 $location = '?';
537 }
538 header('Location: '. $location);
539 exit;
540 }
541
542 // -------- User wants to see only private bookmarks (toggle)
543 if (isset($_GET['visibility'])) {
544 if ($_GET['visibility'] === 'private') {
545 // Visibility not set or not already private, set private, otherwise reset it
546 if (empty($_SESSION['visibility']) || $_SESSION['visibility'] !== 'private') {
547 // See only private bookmarks
548 $_SESSION['visibility'] = 'private';
549 } else {
550 unset($_SESSION['visibility']);
551 }
552 } elseif ($_GET['visibility'] === 'public') {
553 if (empty($_SESSION['visibility']) || $_SESSION['visibility'] !== 'public') {
554 // See only public bookmarks
555 $_SESSION['visibility'] = 'public';
556 } else {
557 unset($_SESSION['visibility']);
558 }
559 }
560
561 if (! empty($_SERVER['HTTP_REFERER'])) {
562 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('visibility'));
563 } else {
564 $location = '?';
565 }
566 header('Location: '. $location);
567 exit;
568 }
569
570 // -------- User wants to see only untagged bookmarks (toggle)
571 if (isset($_GET['untaggedonly'])) {
572 $_SESSION['untaggedonly'] = empty($_SESSION['untaggedonly']);
573
574 if (! empty($_SERVER['HTTP_REFERER'])) {
575 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('untaggedonly'));
576 } else {
577 $location = '?';
578 }
579 header('Location: '. $location);
580 exit;
581 }
582
583 // -------- Handle other actions allowed for non-logged in users:
584 if (!$loginManager->isLoggedIn()) {
585 // User tries to post new link but is not logged in:
586 // Show login screen, then redirect to ?post=...
587 if (isset($_GET['post'])) {
588 header( // Redirect to login page, then back to post link.
589 'Location: ./login?post='.urlencode($_GET['post']).
590 (!empty($_GET['title'])?'&title='.urlencode($_GET['title']):'').
591 (!empty($_GET['description'])?'&description='.urlencode($_GET['description']):'').
592 (!empty($_GET['tags'])?'&tags='.urlencode($_GET['tags']):'').
593 (!empty($_GET['source'])?'&source='.urlencode($_GET['source']):'')
594 );
595 exit;
596 }
597
598 showLinkList($PAGE, $bookmarkService, $conf, $pluginManager, $loginManager);
599 if (isset($_GET['edit_link'])) {
600 header('Location: ./login?edit_link='. escape($_GET['edit_link']));
601 exit;
602 }
603
604 exit; // Never remove this one! All operations below are reserved for logged in user.
605 }
606
607 // -------- All other functions are reserved for the registered user:
608
609 // -------- Display the Tools menu if requested (import/export/bookmarklet...)
610 if ($targetPage == Router::$PAGE_TOOLS) {
611 $data = [
612 'pageabsaddr' => index_url($_SERVER),
613 'sslenabled' => is_https($_SERVER),
614 ];
615 $pluginManager->executeHooks('render_tools', $data);
616
617 foreach ($data as $key => $value) {
618 $PAGE->assign($key, $value);
619 }
620
621 $PAGE->assign('pagetitle', t('Tools') .' - '. $conf->get('general.title', 'Shaarli'));
622 $PAGE->renderPage('tools');
623 exit;
624 }
625
626 // -------- User wants to change his/her password.
627 if ($targetPage == Router::$PAGE_CHANGEPASSWORD) {
628 if ($conf->get('security.open_shaarli')) {
629 die(t('You are not supposed to change a password on an Open Shaarli.'));
630 }
631
632 if (!empty($_POST['setpassword']) && !empty($_POST['oldpassword'])) {
633 if (!$sessionManager->checkToken($_POST['token'])) {
634 die(t('Wrong token.')); // Go away!
635 }
636
637 // Make sure old password is correct.
638 $oldhash = sha1(
639 $_POST['oldpassword'].$conf->get('credentials.login').$conf->get('credentials.salt')
640 );
641 if ($oldhash != $conf->get('credentials.hash')) {
642 echo '<script>alert("'
643 . t('The old password is not correct.')
644 .'");document.location=\'./?do=changepasswd\';</script>';
645 exit;
646 }
647 // Save new password
648 // Salt renders rainbow-tables attacks useless.
649 $conf->set('credentials.salt', sha1(uniqid('', true) .'_'. mt_rand()));
650 $conf->set(
651 'credentials.hash',
652 sha1(
653 $_POST['setpassword']
654 . $conf->get('credentials.login')
655 . $conf->get('credentials.salt')
656 )
657 );
658 try {
659 $conf->write($loginManager->isLoggedIn());
660 } catch (Exception $e) {
661 error_log(
662 'ERROR while writing config file after changing password.' . PHP_EOL .
663 $e->getMessage()
664 );
665
666 // TODO: do not handle exceptions/errors in JS.
667 echo '<script>alert("'. $e->getMessage() .'");document.location=\'./?do=tools\';</script>';
668 exit;
669 }
670 echo '<script>alert("'. t('Your password has been changed') .'");document.location=\'./?do=tools\';</script>';
671 exit;
672 } else {
673 // show the change password form.
674 $PAGE->assign('pagetitle', t('Change password') .' - '. $conf->get('general.title', 'Shaarli'));
675 $PAGE->renderPage('changepassword');
676 exit;
677 }
678 }
679
680 // -------- User wants to change configuration
681 if ($targetPage == Router::$PAGE_CONFIGURE) {
682 if (!empty($_POST['title'])) {
683 if (!$sessionManager->checkToken($_POST['token'])) {
684 die(t('Wrong token.')); // Go away!
685 }
686 $tz = 'UTC';
687 if (!empty($_POST['continent']) && !empty($_POST['city'])
688 && isTimeZoneValid($_POST['continent'], $_POST['city'])
689 ) {
690 $tz = $_POST['continent'] . '/' . $_POST['city'];
691 }
692 $conf->set('general.timezone', $tz);
693 $conf->set('general.title', escape($_POST['title']));
694 $conf->set('general.header_link', escape($_POST['titleLink']));
695 $conf->set('general.retrieve_description', !empty($_POST['retrieveDescription']));
696 $conf->set('resource.theme', escape($_POST['theme']));
697 $conf->set('security.session_protection_disabled', !empty($_POST['disablesessionprotection']));
698 $conf->set('privacy.default_private_links', !empty($_POST['privateLinkByDefault']));
699 $conf->set('feed.rss_permalinks', !empty($_POST['enableRssPermalinks']));
700 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
701 $conf->set('privacy.hide_public_links', !empty($_POST['hidePublicLinks']));
702 $conf->set('api.enabled', !empty($_POST['enableApi']));
703 $conf->set('api.secret', escape($_POST['apiSecret']));
704 $conf->set('formatter', escape($_POST['formatter']));
705
706 if (! empty($_POST['language'])) {
707 $conf->set('translation.language', escape($_POST['language']));
708 }
709
710 $thumbnailsMode = extension_loaded('gd') ? $_POST['enableThumbnails'] : Thumbnailer::MODE_NONE;
711 if ($thumbnailsMode !== Thumbnailer::MODE_NONE
712 && $thumbnailsMode !== $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE)
713 ) {
714 $_SESSION['warnings'][] = t(
715 'You have enabled or changed thumbnails mode. '
716 .'<a href="./?do=thumbs_update">Please synchronize them</a>.'
717 );
718 }
719 $conf->set('thumbnails.mode', $thumbnailsMode);
720
721 try {
722 $conf->write($loginManager->isLoggedIn());
723 $history->updateSettings();
724 $pageCacheManager->invalidateCaches();
725 } catch (Exception $e) {
726 error_log(
727 'ERROR while writing config file after configuration update.' . PHP_EOL .
728 $e->getMessage()
729 );
730
731 // TODO: do not handle exceptions/errors in JS.
732 echo '<script>alert("'. $e->getMessage() .'");document.location=\'./?do=configure\';</script>';
733 exit;
734 }
735 echo '<script>alert("'. t('Configuration was saved.') .'");document.location=\'./?do=configure\';</script>';
736 exit;
737 } else {
738 // Show the configuration form.
739 $PAGE->assign('title', $conf->get('general.title'));
740 $PAGE->assign('theme', $conf->get('resource.theme'));
741 $PAGE->assign('theme_available', ThemeUtils::getThemes($conf->get('resource.raintpl_tpl')));
742 $PAGE->assign('formatter_available', ['default', 'markdown']);
743 list($continents, $cities) = generateTimeZoneData(
744 timezone_identifiers_list(),
745 $conf->get('general.timezone')
746 );
747 $PAGE->assign('continents', $continents);
748 $PAGE->assign('cities', $cities);
749 $PAGE->assign('retrieve_description', $conf->get('general.retrieve_description'));
750 $PAGE->assign('private_links_default', $conf->get('privacy.default_private_links', false));
751 $PAGE->assign('session_protection_disabled', $conf->get('security.session_protection_disabled', false));
752 $PAGE->assign('enable_rss_permalinks', $conf->get('feed.rss_permalinks', false));
753 $PAGE->assign('enable_update_check', $conf->get('updates.check_updates', true));
754 $PAGE->assign('hide_public_links', $conf->get('privacy.hide_public_links', false));
755 $PAGE->assign('api_enabled', $conf->get('api.enabled', true));
756 $PAGE->assign('api_secret', $conf->get('api.secret'));
757 $PAGE->assign('languages', Languages::getAvailableLanguages());
758 $PAGE->assign('gd_enabled', extension_loaded('gd'));
759 $PAGE->assign('thumbnails_mode', $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE));
760 $PAGE->assign('pagetitle', t('Configure') .' - '. $conf->get('general.title', 'Shaarli'));
761 $PAGE->renderPage('configure');
762 exit;
763 }
764 }
765
766 // -------- User wants to rename a tag or delete it
767 if ($targetPage == Router::$PAGE_CHANGETAG) {
768 if (empty($_POST['fromtag']) || (empty($_POST['totag']) && isset($_POST['renametag']))) {
769 $PAGE->assign('fromtag', ! empty($_GET['fromtag']) ? escape($_GET['fromtag']) : '');
770 $PAGE->assign('pagetitle', t('Manage tags') .' - '. $conf->get('general.title', 'Shaarli'));
771 $PAGE->renderPage('changetag');
772 exit;
773 }
774
775 if (!$sessionManager->checkToken($_POST['token'])) {
776 die(t('Wrong token.'));
777 }
778
779 $toTag = isset($_POST['totag']) ? escape($_POST['totag']) : null;
780 $fromTag = escape($_POST['fromtag']);
781 $count = 0;
782 $bookmarks = $bookmarkService->search(['searchtags' => $fromTag], BookmarkFilter::$ALL, true);
783 foreach ($bookmarks as $bookmark) {
784 if ($toTag) {
785 $bookmark->renameTag($fromTag, $toTag);
786 } else {
787 $bookmark->deleteTag($fromTag);
788 }
789 $bookmarkService->set($bookmark, false);
790 $history->updateLink($bookmark);
791 $count++;
792 }
793 $bookmarkService->save();
794 $delete = empty($_POST['totag']);
795 $redirect = $delete ? './do=changetag' : 'searchtags='. urlencode(escape($_POST['totag']));
796 $alert = $delete
797 ? sprintf(t('The tag was removed from %d link.', 'The tag was removed from %d bookmarks.', $count), $count)
798 : sprintf(t('The tag was renamed in %d link.', 'The tag was renamed in %d bookmarks.', $count), $count);
799 echo '<script>alert("'. $alert .'");document.location=\'?'. $redirect .'\';</script>';
800 exit;
801 }
802
803 // -------- User wants to add a link without using the bookmarklet: Show form.
804 if ($targetPage == Router::$PAGE_ADDLINK) {
805 $PAGE->assign('pagetitle', t('Shaare a new link') .' - '. $conf->get('general.title', 'Shaarli'));
806 $PAGE->renderPage('addlink');
807 exit;
808 }
809
810 // -------- User clicked the "Save" button when editing a link: Save link to database.
811 if (isset($_POST['save_edit'])) {
812 // Go away!
813 if (! $sessionManager->checkToken($_POST['token'])) {
814 die(t('Wrong token.'));
815 }
816
817 // lf_id should only be present if the link exists.
818 $id = isset($_POST['lf_id']) ? intval(escape($_POST['lf_id'])) : null;
819 if ($id && $bookmarkService->exists($id)) {
820 // Edit
821 $bookmark = $bookmarkService->get($id);
822 } else {
823 // New link
824 $bookmark = new Bookmark();
825 }
826
827 $bookmark->setTitle($_POST['lf_title']);
828 $bookmark->setDescription($_POST['lf_description']);
829 $bookmark->setUrl($_POST['lf_url'], $conf->get('security.allowed_protocols'));
830 $bookmark->setPrivate(isset($_POST['lf_private']));
831 $bookmark->setTagsString($_POST['lf_tags']);
832
833 if ($conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE
834 && ! $bookmark->isNote()
835 ) {
836 $thumbnailer = new Thumbnailer($conf);
837 $bookmark->setThumbnail($thumbnailer->get($bookmark->getUrl()));
838 }
839 $bookmarkService->addOrSet($bookmark, false);
840
841 // To preserve backward compatibility with 3rd parties, plugins still use arrays
842 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
843 $formatter = $factory->getFormatter('raw');
844 $data = $formatter->format($bookmark);
845 $pluginManager->executeHooks('save_link', $data);
846
847 $bookmark->fromArray($data);
848 $bookmarkService->set($bookmark);
849
850 // If we are called from the bookmarklet, we must close the popup:
851 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
852 echo '<script>self.close();</script>';
853 exit;
854 }
855
856 $returnurl = !empty($_POST['returnurl']) ? $_POST['returnurl'] : '?';
857 $location = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
858 // Scroll to the link which has been edited.
859 $location .= '#' . $bookmark->getShortUrl();
860 // After saving the link, redirect to the page the user was on.
861 header('Location: '. $location);
862 exit;
863 }
864
865 // -------- User clicked the "Delete" button when editing a link: Delete link from database.
866 if ($targetPage == Router::$PAGE_DELETELINK) {
867 if (! $sessionManager->checkToken($_GET['token'])) {
868 die(t('Wrong token.'));
869 }
870
871 $ids = trim($_GET['lf_linkdate']);
872 if (strpos($ids, ' ') !== false) {
873 // multiple, space-separated ids provided
874 $ids = array_values(array_filter(
875 preg_split('/\s+/', escape($ids)),
876 function ($item) {
877 return $item !== '';
878 }
879 ));
880 } else {
881 // only a single id provided
882 $shortUrl = $bookmarkService->get($ids)->getShortUrl();
883 $ids = [$ids];
884 }
885 // assert at least one id is given
886 if (!count($ids)) {
887 die('no id provided');
888 }
889 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
890 $formatter = $factory->getFormatter('raw');
891 foreach ($ids as $id) {
892 $id = (int) escape($id);
893 $bookmark = $bookmarkService->get($id);
894 $data = $formatter->format($bookmark);
895 $pluginManager->executeHooks('delete_link', $data);
896 $bookmarkService->remove($bookmark, false);
897 }
898 $bookmarkService->save();
899
900 // If we are called from the bookmarklet, we must close the popup:
901 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
902 echo '<script>self.close();</script>';
903 exit;
904 }
905
906 $location = '?';
907 if (isset($_SERVER['HTTP_REFERER'])) {
908 // Don't redirect to where we were previously if it was a permalink or an edit_link, because it would 404.
909 $location = generateLocation(
910 $_SERVER['HTTP_REFERER'],
911 $_SERVER['HTTP_HOST'],
912 ['delete_link', 'edit_link', ! empty($shortUrl) ? $shortUrl : null]
913 );
914 }
915
916 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
917 exit;
918 }
919
920 // -------- User clicked either "Set public" or "Set private" bulk operation
921 if ($targetPage == Router::$PAGE_CHANGE_VISIBILITY) {
922 if (! $sessionManager->checkToken($_GET['token'])) {
923 die(t('Wrong token.'));
924 }
925
926 $ids = trim($_GET['ids']);
927 if (strpos($ids, ' ') !== false) {
928 // multiple, space-separated ids provided
929 $ids = array_values(array_filter(preg_split('/\s+/', escape($ids))));
930 } else {
931 // only a single id provided
932 $ids = [$ids];
933 }
934
935 // assert at least one id is given
936 if (!count($ids)) {
937 die('no id provided');
938 }
939 // assert that the visibility is valid
940 if (!isset($_GET['newVisibility']) || !in_array($_GET['newVisibility'], ['public', 'private'])) {
941 die('invalid visibility');
942 } else {
943 $private = $_GET['newVisibility'] === 'private';
944 }
945 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
946 $formatter = $factory->getFormatter('raw');
947 foreach ($ids as $id) {
948 $id = (int) escape($id);
949 $bookmark = $bookmarkService->get($id);
950 $bookmark->setPrivate($private);
951
952 // To preserve backward compatibility with 3rd parties, plugins still use arrays
953 $data = $formatter->format($bookmark);
954 $pluginManager->executeHooks('save_link', $data);
955 $bookmark->fromArray($data);
956
957 $bookmarkService->set($bookmark);
958 }
959 $bookmarkService->save();
960
961 $location = '?';
962 if (isset($_SERVER['HTTP_REFERER'])) {
963 $location = generateLocation(
964 $_SERVER['HTTP_REFERER'],
965 $_SERVER['HTTP_HOST']
966 );
967 }
968 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
969 exit;
970 }
971
972 // -------- User clicked the "EDIT" button on a link: Display link edit form.
973 if (isset($_GET['edit_link'])) {
974 $id = (int) escape($_GET['edit_link']);
975 try {
976 $link = $bookmarkService->get($id); // Read database
977 } catch (BookmarkNotFoundException $e) {
978 // Link not found in database.
979 header('Location: ?');
980 exit;
981 }
982
983 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
984 $formatter = $factory->getFormatter('raw');
985 $formattedLink = $formatter->format($link);
986 $tags = $bookmarkService->bookmarksCountPerTag();
987 if ($conf->get('formatter') === 'markdown') {
988 $tags[BookmarkMarkdownFormatter::NO_MD_TAG] = 1;
989 }
990 $data = array(
991 'link' => $formattedLink,
992 'link_is_new' => false,
993 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
994 'tags' => $tags,
995 );
996 $pluginManager->executeHooks('render_editlink', $data);
997
998 foreach ($data as $key => $value) {
999 $PAGE->assign($key, $value);
1000 }
1001
1002 $PAGE->assign('pagetitle', t('Edit') .' '. t('Shaare') .' - '. $conf->get('general.title', 'Shaarli'));
1003 $PAGE->renderPage('editlink');
1004 exit;
1005 }
1006
1007 // -------- User want to post a new link: Display link edit form.
1008 if (isset($_GET['post'])) {
1009 $url = cleanup_url($_GET['post']);
1010
1011 $link_is_new = false;
1012 // Check if URL is not already in database (in this case, we will edit the existing link)
1013 $bookmark = $bookmarkService->findByUrl($url);
1014 if (! $bookmark) {
1015 $link_is_new = true;
1016 // Get title if it was provided in URL (by the bookmarklet).
1017 $title = empty($_GET['title']) ? '' : escape($_GET['title']);
1018 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that]
1019 $description = empty($_GET['description']) ? '' : escape($_GET['description']);
1020 $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']);
1021 $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0;
1022
1023 // If this is an HTTP(S) link, we try go get the page to extract
1024 // the title (otherwise we will to straight to the edit form.)
1025 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) {
1026 $retrieveDescription = $conf->get('general.retrieve_description');
1027 // Short timeout to keep the application responsive
1028 // The callback will fill $charset and $title with data from the downloaded page.
1029 get_http_response(
1030 $url,
1031 $conf->get('general.download_timeout', 30),
1032 $conf->get('general.download_max_size', 4194304),
1033 get_curl_download_callback($charset, $title, $description, $tags, $retrieveDescription)
1034 );
1035 if (! empty($title) && strtolower($charset) != 'utf-8') {
1036 $title = mb_convert_encoding($title, 'utf-8', $charset);
1037 }
1038 }
1039
1040 if ($url == '') {
1041 $title = $conf->get('general.default_note_title', t('Note: '));
1042 }
1043 $url = escape($url);
1044 $title = escape($title);
1045
1046 $link = [
1047 'title' => $title,
1048 'url' => $url,
1049 'description' => $description,
1050 'tags' => $tags,
1051 'private' => $private,
1052 ];
1053 } else {
1054 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
1055 $formatter = $factory->getFormatter('raw');
1056 $link = $formatter->format($bookmark);
1057 }
1058
1059 $tags = $bookmarkService->bookmarksCountPerTag();
1060 if ($conf->get('formatter') === 'markdown') {
1061 $tags[BookmarkMarkdownFormatter::NO_MD_TAG] = 1;
1062 }
1063 $data = [
1064 'link' => $link,
1065 'link_is_new' => $link_is_new,
1066 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
1067 'source' => (isset($_GET['source']) ? $_GET['source'] : ''),
1068 'tags' => $tags,
1069 'default_private_links' => $conf->get('privacy.default_private_links', false),
1070 ];
1071 $pluginManager->executeHooks('render_editlink', $data);
1072
1073 foreach ($data as $key => $value) {
1074 $PAGE->assign($key, $value);
1075 }
1076
1077 $PAGE->assign('pagetitle', t('Shaare') .' - '. $conf->get('general.title', 'Shaarli'));
1078 $PAGE->renderPage('editlink');
1079 exit;
1080 }
1081
1082 if ($targetPage == Router::$PAGE_PINLINK) {
1083 if (! isset($_GET['id']) || !$bookmarkService->exists($_GET['id'])) {
1084 // FIXME! Use a proper error system.
1085 $msg = t('Invalid link ID provided');
1086 echo '<script>alert("'. $msg .'");document.location=\''. index_url($_SERVER) .'\';</script>';
1087 exit;
1088 }
1089 if (! $sessionManager->checkToken($_GET['token'])) {
1090 die('Wrong token.');
1091 }
1092
1093 $link = $bookmarkService->get($_GET['id']);
1094 $link->setSticky(! $link->isSticky());
1095 $bookmarkService->set($link);
1096 header('Location: '.index_url($_SERVER));
1097 exit;
1098 }
1099
1100 if ($targetPage == Router::$PAGE_EXPORT) {
1101 // Export bookmarks as a Netscape Bookmarks file
1102
1103 if (empty($_GET['selection'])) {
1104 $PAGE->assign('pagetitle', t('Export') .' - '. $conf->get('general.title', 'Shaarli'));
1105 $PAGE->renderPage('export');
1106 exit;
1107 }
1108
1109 // export as bookmarks_(all|private|public)_YYYYmmdd_HHMMSS.html
1110 $selection = $_GET['selection'];
1111 if (isset($_GET['prepend_note_url'])) {
1112 $prependNoteUrl = $_GET['prepend_note_url'];
1113 } else {
1114 $prependNoteUrl = false;
1115 }
1116
1117 try {
1118 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
1119 $formatter = $factory->getFormatter('raw');
1120 $PAGE->assign(
1121 'links',
1122 NetscapeBookmarkUtils::filterAndFormat(
1123 $bookmarkService,
1124 $formatter,
1125 $selection,
1126 $prependNoteUrl,
1127 index_url($_SERVER)
1128 )
1129 );
1130 } catch (Exception $exc) {
1131 header('Content-Type: text/plain; charset=utf-8');
1132 echo $exc->getMessage();
1133 exit;
1134 }
1135 $now = new DateTime();
1136 header('Content-Type: text/html; charset=utf-8');
1137 header(
1138 'Content-disposition: attachment; filename=bookmarks_'
1139 .$selection.'_'.$now->format(Bookmark::LINK_DATE_FORMAT).'.html'
1140 );
1141 $PAGE->assign('date', $now->format(DateTime::RFC822));
1142 $PAGE->assign('eol', PHP_EOL);
1143 $PAGE->assign('selection', $selection);
1144 $PAGE->renderPage('export.bookmarks');
1145 exit;
1146 }
1147
1148 if ($targetPage == Router::$PAGE_IMPORT) {
1149 // Upload a Netscape bookmark dump to import its contents
1150
1151 if (! isset($_POST['token']) || ! isset($_FILES['filetoupload'])) {
1152 // Show import dialog
1153 $PAGE->assign(
1154 'maxfilesize',
1155 get_max_upload_size(
1156 ini_get('post_max_size'),
1157 ini_get('upload_max_filesize'),
1158 false
1159 )
1160 );
1161 $PAGE->assign(
1162 'maxfilesizeHuman',
1163 get_max_upload_size(
1164 ini_get('post_max_size'),
1165 ini_get('upload_max_filesize'),
1166 true
1167 )
1168 );
1169 $PAGE->assign('pagetitle', t('Import') .' - '. $conf->get('general.title', 'Shaarli'));
1170 $PAGE->renderPage('import');
1171 exit;
1172 }
1173
1174 // Import bookmarks from an uploaded file
1175 if (isset($_FILES['filetoupload']['size']) && $_FILES['filetoupload']['size'] == 0) {
1176 // The file is too big or some form field may be missing.
1177 $msg = sprintf(
1178 t(
1179 'The file you are trying to upload is probably bigger than what this webserver can accept'
1180 .' (%s). Please upload in smaller chunks.'
1181 ),
1182 get_max_upload_size(ini_get('post_max_size'), ini_get('upload_max_filesize'))
1183 );
1184 echo '<script>alert("'. $msg .'");document.location=\'./?do='.Router::$PAGE_IMPORT .'\';</script>';
1185 exit;
1186 }
1187 if (! $sessionManager->checkToken($_POST['token'])) {
1188 die('Wrong token.');
1189 }
1190 $status = NetscapeBookmarkUtils::import(
1191 $_POST,
1192 $_FILES,
1193 $bookmarkService,
1194 $conf,
1195 $history
1196 );
1197 echo '<script>alert("'.$status.'");document.location=\'./?do='
1198 .Router::$PAGE_IMPORT .'\';</script>';
1199 exit;
1200 }
1201
1202 // Plugin administration page
1203 if ($targetPage == Router::$PAGE_PLUGINSADMIN) {
1204 $pluginMeta = $pluginManager->getPluginsMeta();
1205
1206 // Split plugins into 2 arrays: ordered enabled plugins and disabled.
1207 $enabledPlugins = array_filter($pluginMeta, function ($v) {
1208 return $v['order'] !== false;
1209 });
1210 // Load parameters.
1211 $enabledPlugins = load_plugin_parameter_values($enabledPlugins, $conf->get('plugins', array()));
1212 uasort(
1213 $enabledPlugins,
1214 function ($a, $b) {
1215 return $a['order'] - $b['order'];
1216 }
1217 );
1218 $disabledPlugins = array_filter($pluginMeta, function ($v) {
1219 return $v['order'] === false;
1220 });
1221
1222 $PAGE->assign('enabledPlugins', $enabledPlugins);
1223 $PAGE->assign('disabledPlugins', $disabledPlugins);
1224 $PAGE->assign('pagetitle', t('Plugin administration') .' - '. $conf->get('general.title', 'Shaarli'));
1225 $PAGE->renderPage('pluginsadmin');
1226 exit;
1227 }
1228
1229 // Plugin administration form action
1230 if ($targetPage == Router::$PAGE_SAVE_PLUGINSADMIN) {
1231 try {
1232 if (isset($_POST['parameters_form'])) {
1233 $pluginManager->executeHooks('save_plugin_parameters', $_POST);
1234 unset($_POST['parameters_form']);
1235 foreach ($_POST as $param => $value) {
1236 $conf->set('plugins.'. $param, escape($value));
1237 }
1238 } else {
1239 $conf->set('general.enabled_plugins', save_plugin_config($_POST));
1240 }
1241 $conf->write($loginManager->isLoggedIn());
1242 $history->updateSettings();
1243 } catch (Exception $e) {
1244 error_log(
1245 'ERROR while saving plugin configuration:.' . PHP_EOL .
1246 $e->getMessage()
1247 );
1248
1249 // TODO: do not handle exceptions/errors in JS.
1250 echo '<script>alert("'
1251 . $e->getMessage()
1252 .'");document.location=\'./?do='
1253 . Router::$PAGE_PLUGINSADMIN
1254 .'\';</script>';
1255 exit;
1256 }
1257 header('Location: ./?do='. Router::$PAGE_PLUGINSADMIN);
1258 exit;
1259 }
1260
1261 // Get a fresh token
1262 if ($targetPage == Router::$GET_TOKEN) {
1263 header('Content-Type:text/plain');
1264 echo $sessionManager->generateToken();
1265 exit;
1266 }
1267
1268 // -------- Thumbnails Update
1269 if ($targetPage == Router::$PAGE_THUMBS_UPDATE) {
1270 $ids = [];
1271 foreach ($bookmarkService->search() as $bookmark) {
1272 // A note or not HTTP(S)
1273 if ($bookmark->isNote() || ! startsWith(strtolower($bookmark->getUrl()), 'http')) {
1274 continue;
1275 }
1276 $ids[] = $bookmark->getId();
1277 }
1278 $PAGE->assign('ids', $ids);
1279 $PAGE->assign('pagetitle', t('Thumbnails update') .' - '. $conf->get('general.title', 'Shaarli'));
1280 $PAGE->renderPage('thumbnails');
1281 exit;
1282 }
1283
1284 // -------- Single Thumbnail Update
1285 if ($targetPage == Router::$AJAX_THUMB_UPDATE) {
1286 if (! isset($_POST['id']) || ! ctype_digit($_POST['id'])) {
1287 http_response_code(400);
1288 exit;
1289 }
1290 $id = (int) $_POST['id'];
1291 if (! $bookmarkService->exists($id)) {
1292 http_response_code(404);
1293 exit;
1294 }
1295 $thumbnailer = new Thumbnailer($conf);
1296 $bookmark = $bookmarkService->get($id);
1297 $bookmark->setThumbnail($thumbnailer->get($bookmark->getUrl()));
1298 $bookmarkService->set($bookmark);
1299
1300 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
1301 echo json_encode($factory->getFormatter('raw')->format($bookmark));
1302 exit;
1303 }
1304
1305 // -------- Otherwise, simply display search form and bookmarks:
1306 showLinkList($PAGE, $bookmarkService, $conf, $pluginManager, $loginManager);
1307 exit;
1308 }
1309
1310 /**
1311 * Template for the list of bookmarks (<div id="linklist">)
1312 * This function fills all the necessary fields in the $PAGE for the template 'linklist.html'
1313 *
1314 * @param pageBuilder $PAGE pageBuilder instance.
1315 * @param BookmarkServiceInterface $linkDb LinkDB instance.
1316 * @param ConfigManager $conf Configuration Manager instance.
1317 * @param PluginManager $pluginManager Plugin Manager instance.
1318 * @param LoginManager $loginManager LoginManager instance
1319 */
1320 function buildLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager)
1321 {
1322 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
1323 $formatter = $factory->getFormatter();
1324
1325 // Used in templates
1326 if (isset($_GET['searchtags'])) {
1327 if (! empty($_GET['searchtags'])) {
1328 $searchtags = escape(normalize_spaces($_GET['searchtags']));
1329 } else {
1330 $searchtags = false;
1331 }
1332 } else {
1333 $searchtags = '';
1334 }
1335 $searchterm = !empty($_GET['searchterm']) ? escape(normalize_spaces($_GET['searchterm'])) : '';
1336
1337 // Smallhash filter
1338 if (! empty($_SERVER['QUERY_STRING'])
1339 && preg_match('/^[a-zA-Z0-9-_@]{6}($|&|#)/', $_SERVER['QUERY_STRING'])) {
1340 try {
1341 $linksToDisplay = $linkDb->findByHash($_SERVER['QUERY_STRING']);
1342 } catch (BookmarkNotFoundException $e) {
1343 $PAGE->render404($e->getMessage());
1344 exit;
1345 }
1346 } else {
1347 // Filter bookmarks according search parameters.
1348 $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : null;
1349 $request = [
1350 'searchtags' => $searchtags,
1351 'searchterm' => $searchterm,
1352 ];
1353 $linksToDisplay = $linkDb->search($request, $visibility, false, !empty($_SESSION['untaggedonly']));
1354 }
1355
1356 // ---- Handle paging.
1357 $keys = array();
1358 foreach ($linksToDisplay as $key => $value) {
1359 $keys[] = $key;
1360 }
1361
1362 // Select articles according to paging.
1363 $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']);
1364 $pagecount = $pagecount == 0 ? 1 : $pagecount;
1365 $page= empty($_GET['page']) ? 1 : intval($_GET['page']);
1366 $page = $page < 1 ? 1 : $page;
1367 $page = $page > $pagecount ? $pagecount : $page;
1368 // Start index.
1369 $i = ($page-1) * $_SESSION['LINKS_PER_PAGE'];
1370 $end = $i + $_SESSION['LINKS_PER_PAGE'];
1371
1372 $thumbnailsEnabled = $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE;
1373 if ($thumbnailsEnabled) {
1374 $thumbnailer = new Thumbnailer($conf);
1375 }
1376
1377 $linkDisp = array();
1378 while ($i<$end && $i<count($keys)) {
1379 $link = $formatter->format($linksToDisplay[$keys[$i]]);
1380
1381 // Logged in, thumbnails enabled, not a note,
1382 // and (never retrieved yet or no valid cache file)
1383 if ($loginManager->isLoggedIn()
1384 && $thumbnailsEnabled
1385 && !$linksToDisplay[$keys[$i]]->isNote()
1386 && $linksToDisplay[$keys[$i]]->getThumbnail() !== false
1387 && ! is_file($linksToDisplay[$keys[$i]]->getThumbnail())
1388 ) {
1389 $linksToDisplay[$keys[$i]]->setThumbnail($thumbnailer->get($link['url']));
1390 $linkDb->set($linksToDisplay[$keys[$i]], false);
1391 $updateDB = true;
1392 $link['thumbnail'] = $linksToDisplay[$keys[$i]]->getThumbnail();
1393 }
1394
1395 // Check for both signs of a note: starting with ? and 7 chars long.
1396 // if ($link['url'][0] === '?' && strlen($link['url']) === 7) {
1397 // $link['url'] = index_url($_SERVER) . $link['url'];
1398 // }
1399
1400 $linkDisp[$keys[$i]] = $link;
1401 $i++;
1402 }
1403
1404 // If we retrieved new thumbnails, we update the database.
1405 if (!empty($updateDB)) {
1406 $linkDb->save();
1407 }
1408
1409 // Compute paging navigation
1410 $searchtagsUrl = $searchtags === '' ? '' : '&searchtags=' . urlencode($searchtags);
1411 $searchtermUrl = empty($searchterm) ? '' : '&searchterm=' . urlencode($searchterm);
1412 $previous_page_url = '';
1413 if ($i != count($keys)) {
1414 $previous_page_url = '?page=' . ($page+1) . $searchtermUrl . $searchtagsUrl;
1415 }
1416 $next_page_url='';
1417 if ($page>1) {
1418 $next_page_url = '?page=' . ($page-1) . $searchtermUrl . $searchtagsUrl;
1419 }
1420
1421 // Fill all template fields.
1422 $data = array(
1423 'previous_page_url' => $previous_page_url,
1424 'next_page_url' => $next_page_url,
1425 'page_current' => $page,
1426 'page_max' => $pagecount,
1427 'result_count' => count($linksToDisplay),
1428 'search_term' => $searchterm,
1429 'search_tags' => $searchtags,
1430 'visibility' => ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : '',
1431 'links' => $linkDisp,
1432 );
1433
1434 // If there is only a single link, we change on-the-fly the title of the page.
1435 if (count($linksToDisplay) == 1) {
1436 $data['pagetitle'] = $linksToDisplay[$keys[0]]->getTitle() .' - '. $conf->get('general.title');
1437 } elseif (! empty($searchterm) || ! empty($searchtags)) {
1438 $data['pagetitle'] = t('Search: ');
1439 $data['pagetitle'] .= ! empty($searchterm) ? $searchterm .' ' : '';
1440 $bracketWrap = function ($tag) {
1441 return '['. $tag .']';
1442 };
1443 $data['pagetitle'] .= ! empty($searchtags)
1444 ? implode(' ', array_map($bracketWrap, preg_split('/\s+/', $searchtags))).' '
1445 : '';
1446 $data['pagetitle'] .= '- '. $conf->get('general.title');
1447 }
1448
1449 $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => $loginManager->isLoggedIn()));
1450
1451 foreach ($data as $key => $value) {
1452 $PAGE->assign($key, $value);
1453 }
1454
1455 return;
1456 }
1457
1458 /**
1459 * Installation
1460 * This function should NEVER be called if the file data/config.php exists.
1461 *
1462 * @param ConfigManager $conf Configuration Manager instance.
1463 * @param SessionManager $sessionManager SessionManager instance
1464 * @param LoginManager $loginManager LoginManager instance
1465 */
1466 function install($conf, $sessionManager, $loginManager)
1467 {
1468 // On free.fr host, make sure the /sessions directory exists, otherwise login will not work.
1469 if (endsWith($_SERVER['HTTP_HOST'], '.free.fr') && !is_dir($_SERVER['DOCUMENT_ROOT'].'/sessions')) {
1470 mkdir($_SERVER['DOCUMENT_ROOT'].'/sessions', 0705);
1471 }
1472
1473
1474 // This part makes sure sessions works correctly.
1475 // (Because on some hosts, session.save_path may not be set correctly,
1476 // or we may not have write access to it.)
1477 if (isset($_GET['test_session'])
1478 && ( !isset($_SESSION) || !isset($_SESSION['session_tested']) || $_SESSION['session_tested']!='Working')) {
1479 // Step 2: Check if data in session is correct.
1480 $msg = t(
1481 '<pre>Sessions do not seem to work correctly on your server.<br>'.
1482 'Make sure the variable "session.save_path" is set correctly in your PHP config, '.
1483 'and that you have write access to it.<br>'.
1484 'It currently points to %s.<br>'.
1485 'On some browsers, accessing your server via a hostname like \'localhost\' '.
1486 'or any custom hostname without a dot causes cookie storage to fail. '.
1487 'We recommend accessing your server via it\'s IP address or Fully Qualified Domain Name.<br>'
1488 );
1489 $msg = sprintf($msg, session_save_path());
1490 echo $msg;
1491 echo '<br><a href="?">'. t('Click to try again.') .'</a></pre>';
1492 die;
1493 }
1494 if (!isset($_SESSION['session_tested'])) {
1495 // Step 1 : Try to store data in session and reload page.
1496 $_SESSION['session_tested'] = 'Working'; // Try to set a variable in session.
1497 header('Location: '.index_url($_SERVER).'?test_session'); // Redirect to check stored data.
1498 }
1499 if (isset($_GET['test_session'])) {
1500 // Step 3: Sessions are OK. Remove test parameter from URL.
1501 header('Location: '.index_url($_SERVER));
1502 }
1503
1504
1505 if (!empty($_POST['setlogin']) && !empty($_POST['setpassword'])) {
1506 $tz = 'UTC';
1507 if (!empty($_POST['continent']) && !empty($_POST['city'])
1508 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1509 ) {
1510 $tz = $_POST['continent'].'/'.$_POST['city'];
1511 }
1512 $conf->set('general.timezone', $tz);
1513 $login = $_POST['setlogin'];
1514 $conf->set('credentials.login', $login);
1515 $salt = sha1(uniqid('', true) .'_'. mt_rand());
1516 $conf->set('credentials.salt', $salt);
1517 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $login . $salt));
1518 if (!empty($_POST['title'])) {
1519 $conf->set('general.title', escape($_POST['title']));
1520 } else {
1521 $conf->set('general.title', 'Shared bookmarks on '.escape(index_url($_SERVER)));
1522 }
1523 $conf->set('translation.language', escape($_POST['language']));
1524 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
1525 $conf->set('api.enabled', !empty($_POST['enableApi']));
1526 $conf->set(
1527 'api.secret',
1528 generate_api_secret(
1529 $conf->get('credentials.login'),
1530 $conf->get('credentials.salt')
1531 )
1532 );
1533 try {
1534 // Everything is ok, let's create config file.
1535 $conf->write($loginManager->isLoggedIn());
1536 } catch (Exception $e) {
1537 error_log(
1538 'ERROR while writing config file after installation.' . PHP_EOL .
1539 $e->getMessage()
1540 );
1541
1542 // TODO: do not handle exceptions/errors in JS.
1543 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?\';</script>';
1544 exit;
1545 }
1546
1547 $history = new History($conf->get('resource.history'));
1548 $bookmarkService = new BookmarkFileService($conf, $history, true);
1549 if ($bookmarkService->count() === 0) {
1550 $bookmarkService->initialize();
1551 }
1552
1553 echo '<script>alert('
1554 .'"Shaarli is now configured. '
1555 .'Please enter your login/password and start shaaring your bookmarks!"'
1556 .');document.location=\'./login\';</script>';
1557 exit;
1558 }
1559
1560 $PAGE = new PageBuilder($conf, $_SESSION, null, $sessionManager->generateToken());
1561 list($continents, $cities) = generateTimeZoneData(timezone_identifiers_list(), date_default_timezone_get());
1562 $PAGE->assign('continents', $continents);
1563 $PAGE->assign('cities', $cities);
1564 $PAGE->assign('languages', Languages::getAvailableLanguages());
1565 $PAGE->renderPage('install');
1566 exit;
1567 }
1568
1569 if (!isset($_SESSION['LINKS_PER_PAGE'])) {
1570 $_SESSION['LINKS_PER_PAGE'] = $conf->get('general.links_per_page', 20);
1571 }
1572
1573 try {
1574 $history = new History($conf->get('resource.history'));
1575 } catch (Exception $e) {
1576 die($e->getMessage());
1577 }
1578
1579 $linkDb = new BookmarkFileService($conf, $history, $loginManager->isLoggedIn());
1580
1581 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=dailyrss')) {
1582 header('Location: ./daily-rss');
1583 exit;
1584 }
1585
1586 $containerBuilder = new ContainerBuilder($conf, $sessionManager, $loginManager, WEB_PATH);
1587 $container = $containerBuilder->build();
1588 $app = new App($container);
1589
1590 // REST API routes
1591 $app->group('/api/v1', function () {
1592 $this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo')->setName('getInfo');
1593 $this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks')->setName('getLinks');
1594 $this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink')->setName('getLink');
1595 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
1596 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
1597 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
1598
1599 $this->get('/tags', '\Shaarli\Api\Controllers\Tags:getTags')->setName('getTags');
1600 $this->get('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:getTag')->setName('getTag');
1601 $this->put('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:putTag')->setName('putTag');
1602 $this->delete('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:deleteTag')->setName('deleteTag');
1603
1604 $this->get('/history', '\Shaarli\Api\Controllers\HistoryController:getHistory')->setName('getHistory');
1605 })->add('\Shaarli\Api\ApiMiddleware');
1606
1607 $app->group('', function () {
1608 $this->get('/login', '\Shaarli\Front\Controller\LoginController:index')->setName('login');
1609 $this->get('/logout', '\Shaarli\Front\Controller\LogoutController:index')->setName('logout');
1610 $this->get('/picture-wall', '\Shaarli\Front\Controller\PictureWallController:index')->setName('picwall');
1611 $this->get('/tag-cloud', '\Shaarli\Front\Controller\TagCloudController:cloud')->setName('tagcloud');
1612 $this->get('/tag-list', '\Shaarli\Front\Controller\TagCloudController:list')->setName('taglist');
1613 $this->get('/daily', '\Shaarli\Front\Controller\DailyController:index')->setName('daily');
1614 $this->get('/daily-rss', '\Shaarli\Front\Controller\DailyController:rss')->setName('dailyrss');
1615
1616 $this->get('/add-tag/{newTag}', '\Shaarli\Front\Controller\TagController:addTag')->setName('add-tag');
1617 })->add('\Shaarli\Front\ShaarliMiddleware');
1618
1619 $response = $app->run(true);
1620
1621 // Hack to make Slim and Shaarli router work together:
1622 // If a Slim route isn't found and NOT API call, we call renderPage().
1623 if ($response->getStatusCode() == 404 && strpos($_SERVER['REQUEST_URI'], '/api/v1') === false) {
1624 // We use UTF-8 for proper international characters handling.
1625 header('Content-Type: text/html; charset=utf-8');
1626 renderPage($conf, $pluginManager, $linkDb, $history, $sessionManager, $loginManager);
1627 } else {
1628 $response = $response
1629 ->withHeader('Access-Control-Allow-Origin', '*')
1630 ->withHeader(
1631 'Access-Control-Allow-Headers',
1632 'X-Requested-With, Content-Type, Accept, Origin, Authorization'
1633 )
1634 ->withHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
1635 $app->respond($response);
1636 }