]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - index.php
Process session filters through Slim controllers
[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
436 header('Location: ./feed-'. $feedType .'?'. http_build_query($_GET));
437 exit;
438 }
439
440 // Display opensearch plugin (XML)
441 if ($targetPage == Router::$PAGE_OPENSEARCH) {
442 header('Location: ./open-search');
443 exit;
444 }
445
446 // -------- User clicks on a tag in a link: The tag is added to the list of searched tags (searchtags=...)
447 if (isset($_GET['addtag'])) {
448 header('Location: ./add-tag/'. $_GET['addtag']);
449 exit;
450 }
451
452 // -------- User clicks on a tag in result count: Remove the tag from the list of searched tags (searchtags=...)
453 if (isset($_GET['removetag'])) {
454 header('Location: ./remove-tag/'. $_GET['removetag']);
455 exit;
456 }
457
458 // -------- User wants to change the number of bookmarks per page (linksperpage=...)
459 if (isset($_GET['linksperpage'])) {
460 header('Location: ./links-per-page?nb='. $_GET['linksperpage']);
461 exit;
462 }
463
464 // -------- User wants to see only private bookmarks (toggle)
465 if (isset($_GET['visibility'])) {
466 header('Location: ./visibility/'. $_GET['visibility']);
467 exit;
468 }
469
470 // -------- User wants to see only untagged bookmarks (toggle)
471 if (isset($_GET['untaggedonly'])) {
472 header('Location: ./untagged-only');
473 exit;
474 }
475
476 // -------- Handle other actions allowed for non-logged in users:
477 if (!$loginManager->isLoggedIn()) {
478 // User tries to post new link but is not logged in:
479 // Show login screen, then redirect to ?post=...
480 if (isset($_GET['post'])) {
481 header( // Redirect to login page, then back to post link.
482 'Location: ./login?post='.urlencode($_GET['post']).
483 (!empty($_GET['title'])?'&title='.urlencode($_GET['title']):'').
484 (!empty($_GET['description'])?'&description='.urlencode($_GET['description']):'').
485 (!empty($_GET['tags'])?'&tags='.urlencode($_GET['tags']):'').
486 (!empty($_GET['source'])?'&source='.urlencode($_GET['source']):'')
487 );
488 exit;
489 }
490
491 showLinkList($PAGE, $bookmarkService, $conf, $pluginManager, $loginManager);
492 if (isset($_GET['edit_link'])) {
493 header('Location: ./login?edit_link='. escape($_GET['edit_link']));
494 exit;
495 }
496
497 exit; // Never remove this one! All operations below are reserved for logged in user.
498 }
499
500 // -------- All other functions are reserved for the registered user:
501
502 // -------- Display the Tools menu if requested (import/export/bookmarklet...)
503 if ($targetPage == Router::$PAGE_TOOLS) {
504 $data = [
505 'pageabsaddr' => index_url($_SERVER),
506 'sslenabled' => is_https($_SERVER),
507 ];
508 $pluginManager->executeHooks('render_tools', $data);
509
510 foreach ($data as $key => $value) {
511 $PAGE->assign($key, $value);
512 }
513
514 $PAGE->assign('pagetitle', t('Tools') .' - '. $conf->get('general.title', 'Shaarli'));
515 $PAGE->renderPage('tools');
516 exit;
517 }
518
519 // -------- User wants to change his/her password.
520 if ($targetPage == Router::$PAGE_CHANGEPASSWORD) {
521 if ($conf->get('security.open_shaarli')) {
522 die(t('You are not supposed to change a password on an Open Shaarli.'));
523 }
524
525 if (!empty($_POST['setpassword']) && !empty($_POST['oldpassword'])) {
526 if (!$sessionManager->checkToken($_POST['token'])) {
527 die(t('Wrong token.')); // Go away!
528 }
529
530 // Make sure old password is correct.
531 $oldhash = sha1(
532 $_POST['oldpassword'].$conf->get('credentials.login').$conf->get('credentials.salt')
533 );
534 if ($oldhash != $conf->get('credentials.hash')) {
535 echo '<script>alert("'
536 . t('The old password is not correct.')
537 .'");document.location=\'./?do=changepasswd\';</script>';
538 exit;
539 }
540 // Save new password
541 // Salt renders rainbow-tables attacks useless.
542 $conf->set('credentials.salt', sha1(uniqid('', true) .'_'. mt_rand()));
543 $conf->set(
544 'credentials.hash',
545 sha1(
546 $_POST['setpassword']
547 . $conf->get('credentials.login')
548 . $conf->get('credentials.salt')
549 )
550 );
551 try {
552 $conf->write($loginManager->isLoggedIn());
553 } catch (Exception $e) {
554 error_log(
555 'ERROR while writing config file after changing password.' . PHP_EOL .
556 $e->getMessage()
557 );
558
559 // TODO: do not handle exceptions/errors in JS.
560 echo '<script>alert("'. $e->getMessage() .'");document.location=\'./?do=tools\';</script>';
561 exit;
562 }
563 echo '<script>alert("'. t('Your password has been changed') .'");document.location=\'./?do=tools\';</script>';
564 exit;
565 } else {
566 // show the change password form.
567 $PAGE->assign('pagetitle', t('Change password') .' - '. $conf->get('general.title', 'Shaarli'));
568 $PAGE->renderPage('changepassword');
569 exit;
570 }
571 }
572
573 // -------- User wants to change configuration
574 if ($targetPage == Router::$PAGE_CONFIGURE) {
575 if (!empty($_POST['title'])) {
576 if (!$sessionManager->checkToken($_POST['token'])) {
577 die(t('Wrong token.')); // Go away!
578 }
579 $tz = 'UTC';
580 if (!empty($_POST['continent']) && !empty($_POST['city'])
581 && isTimeZoneValid($_POST['continent'], $_POST['city'])
582 ) {
583 $tz = $_POST['continent'] . '/' . $_POST['city'];
584 }
585 $conf->set('general.timezone', $tz);
586 $conf->set('general.title', escape($_POST['title']));
587 $conf->set('general.header_link', escape($_POST['titleLink']));
588 $conf->set('general.retrieve_description', !empty($_POST['retrieveDescription']));
589 $conf->set('resource.theme', escape($_POST['theme']));
590 $conf->set('security.session_protection_disabled', !empty($_POST['disablesessionprotection']));
591 $conf->set('privacy.default_private_links', !empty($_POST['privateLinkByDefault']));
592 $conf->set('feed.rss_permalinks', !empty($_POST['enableRssPermalinks']));
593 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
594 $conf->set('privacy.hide_public_links', !empty($_POST['hidePublicLinks']));
595 $conf->set('api.enabled', !empty($_POST['enableApi']));
596 $conf->set('api.secret', escape($_POST['apiSecret']));
597 $conf->set('formatter', escape($_POST['formatter']));
598
599 if (! empty($_POST['language'])) {
600 $conf->set('translation.language', escape($_POST['language']));
601 }
602
603 $thumbnailsMode = extension_loaded('gd') ? $_POST['enableThumbnails'] : Thumbnailer::MODE_NONE;
604 if ($thumbnailsMode !== Thumbnailer::MODE_NONE
605 && $thumbnailsMode !== $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE)
606 ) {
607 $_SESSION['warnings'][] = t(
608 'You have enabled or changed thumbnails mode. '
609 .'<a href="./?do=thumbs_update">Please synchronize them</a>.'
610 );
611 }
612 $conf->set('thumbnails.mode', $thumbnailsMode);
613
614 try {
615 $conf->write($loginManager->isLoggedIn());
616 $history->updateSettings();
617 $pageCacheManager->invalidateCaches();
618 } catch (Exception $e) {
619 error_log(
620 'ERROR while writing config file after configuration update.' . PHP_EOL .
621 $e->getMessage()
622 );
623
624 // TODO: do not handle exceptions/errors in JS.
625 echo '<script>alert("'. $e->getMessage() .'");document.location=\'./?do=configure\';</script>';
626 exit;
627 }
628 echo '<script>alert("'. t('Configuration was saved.') .'");document.location=\'./?do=configure\';</script>';
629 exit;
630 } else {
631 // Show the configuration form.
632 $PAGE->assign('title', $conf->get('general.title'));
633 $PAGE->assign('theme', $conf->get('resource.theme'));
634 $PAGE->assign('theme_available', ThemeUtils::getThemes($conf->get('resource.raintpl_tpl')));
635 $PAGE->assign('formatter_available', ['default', 'markdown']);
636 list($continents, $cities) = generateTimeZoneData(
637 timezone_identifiers_list(),
638 $conf->get('general.timezone')
639 );
640 $PAGE->assign('continents', $continents);
641 $PAGE->assign('cities', $cities);
642 $PAGE->assign('retrieve_description', $conf->get('general.retrieve_description'));
643 $PAGE->assign('private_links_default', $conf->get('privacy.default_private_links', false));
644 $PAGE->assign('session_protection_disabled', $conf->get('security.session_protection_disabled', false));
645 $PAGE->assign('enable_rss_permalinks', $conf->get('feed.rss_permalinks', false));
646 $PAGE->assign('enable_update_check', $conf->get('updates.check_updates', true));
647 $PAGE->assign('hide_public_links', $conf->get('privacy.hide_public_links', false));
648 $PAGE->assign('api_enabled', $conf->get('api.enabled', true));
649 $PAGE->assign('api_secret', $conf->get('api.secret'));
650 $PAGE->assign('languages', Languages::getAvailableLanguages());
651 $PAGE->assign('gd_enabled', extension_loaded('gd'));
652 $PAGE->assign('thumbnails_mode', $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE));
653 $PAGE->assign('pagetitle', t('Configure') .' - '. $conf->get('general.title', 'Shaarli'));
654 $PAGE->renderPage('configure');
655 exit;
656 }
657 }
658
659 // -------- User wants to rename a tag or delete it
660 if ($targetPage == Router::$PAGE_CHANGETAG) {
661 if (empty($_POST['fromtag']) || (empty($_POST['totag']) && isset($_POST['renametag']))) {
662 $PAGE->assign('fromtag', ! empty($_GET['fromtag']) ? escape($_GET['fromtag']) : '');
663 $PAGE->assign('pagetitle', t('Manage tags') .' - '. $conf->get('general.title', 'Shaarli'));
664 $PAGE->renderPage('changetag');
665 exit;
666 }
667
668 if (!$sessionManager->checkToken($_POST['token'])) {
669 die(t('Wrong token.'));
670 }
671
672 $toTag = isset($_POST['totag']) ? escape($_POST['totag']) : null;
673 $fromTag = escape($_POST['fromtag']);
674 $count = 0;
675 $bookmarks = $bookmarkService->search(['searchtags' => $fromTag], BookmarkFilter::$ALL, true);
676 foreach ($bookmarks as $bookmark) {
677 if ($toTag) {
678 $bookmark->renameTag($fromTag, $toTag);
679 } else {
680 $bookmark->deleteTag($fromTag);
681 }
682 $bookmarkService->set($bookmark, false);
683 $history->updateLink($bookmark);
684 $count++;
685 }
686 $bookmarkService->save();
687 $delete = empty($_POST['totag']);
688 $redirect = $delete ? './do=changetag' : 'searchtags='. urlencode(escape($_POST['totag']));
689 $alert = $delete
690 ? sprintf(t('The tag was removed from %d link.', 'The tag was removed from %d bookmarks.', $count), $count)
691 : sprintf(t('The tag was renamed in %d link.', 'The tag was renamed in %d bookmarks.', $count), $count);
692 echo '<script>alert("'. $alert .'");document.location=\'?'. $redirect .'\';</script>';
693 exit;
694 }
695
696 // -------- User wants to add a link without using the bookmarklet: Show form.
697 if ($targetPage == Router::$PAGE_ADDLINK) {
698 $PAGE->assign('pagetitle', t('Shaare a new link') .' - '. $conf->get('general.title', 'Shaarli'));
699 $PAGE->renderPage('addlink');
700 exit;
701 }
702
703 // -------- User clicked the "Save" button when editing a link: Save link to database.
704 if (isset($_POST['save_edit'])) {
705 // Go away!
706 if (! $sessionManager->checkToken($_POST['token'])) {
707 die(t('Wrong token.'));
708 }
709
710 // lf_id should only be present if the link exists.
711 $id = isset($_POST['lf_id']) ? intval(escape($_POST['lf_id'])) : null;
712 if ($id && $bookmarkService->exists($id)) {
713 // Edit
714 $bookmark = $bookmarkService->get($id);
715 } else {
716 // New link
717 $bookmark = new Bookmark();
718 }
719
720 $bookmark->setTitle($_POST['lf_title']);
721 $bookmark->setDescription($_POST['lf_description']);
722 $bookmark->setUrl($_POST['lf_url'], $conf->get('security.allowed_protocols'));
723 $bookmark->setPrivate(isset($_POST['lf_private']));
724 $bookmark->setTagsString($_POST['lf_tags']);
725
726 if ($conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE
727 && ! $bookmark->isNote()
728 ) {
729 $thumbnailer = new Thumbnailer($conf);
730 $bookmark->setThumbnail($thumbnailer->get($bookmark->getUrl()));
731 }
732 $bookmarkService->addOrSet($bookmark, false);
733
734 // To preserve backward compatibility with 3rd parties, plugins still use arrays
735 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
736 $formatter = $factory->getFormatter('raw');
737 $data = $formatter->format($bookmark);
738 $pluginManager->executeHooks('save_link', $data);
739
740 $bookmark->fromArray($data);
741 $bookmarkService->set($bookmark);
742
743 // If we are called from the bookmarklet, we must close the popup:
744 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
745 echo '<script>self.close();</script>';
746 exit;
747 }
748
749 $returnurl = !empty($_POST['returnurl']) ? $_POST['returnurl'] : '?';
750 $location = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
751 // Scroll to the link which has been edited.
752 $location .= '#' . $bookmark->getShortUrl();
753 // After saving the link, redirect to the page the user was on.
754 header('Location: '. $location);
755 exit;
756 }
757
758 // -------- User clicked the "Delete" button when editing a link: Delete link from database.
759 if ($targetPage == Router::$PAGE_DELETELINK) {
760 if (! $sessionManager->checkToken($_GET['token'])) {
761 die(t('Wrong token.'));
762 }
763
764 $ids = trim($_GET['lf_linkdate']);
765 if (strpos($ids, ' ') !== false) {
766 // multiple, space-separated ids provided
767 $ids = array_values(array_filter(
768 preg_split('/\s+/', escape($ids)),
769 function ($item) {
770 return $item !== '';
771 }
772 ));
773 } else {
774 // only a single id provided
775 $shortUrl = $bookmarkService->get($ids)->getShortUrl();
776 $ids = [$ids];
777 }
778 // assert at least one id is given
779 if (!count($ids)) {
780 die('no id provided');
781 }
782 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
783 $formatter = $factory->getFormatter('raw');
784 foreach ($ids as $id) {
785 $id = (int) escape($id);
786 $bookmark = $bookmarkService->get($id);
787 $data = $formatter->format($bookmark);
788 $pluginManager->executeHooks('delete_link', $data);
789 $bookmarkService->remove($bookmark, false);
790 }
791 $bookmarkService->save();
792
793 // If we are called from the bookmarklet, we must close the popup:
794 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
795 echo '<script>self.close();</script>';
796 exit;
797 }
798
799 $location = '?';
800 if (isset($_SERVER['HTTP_REFERER'])) {
801 // Don't redirect to where we were previously if it was a permalink or an edit_link, because it would 404.
802 $location = generateLocation(
803 $_SERVER['HTTP_REFERER'],
804 $_SERVER['HTTP_HOST'],
805 ['delete_link', 'edit_link', ! empty($shortUrl) ? $shortUrl : null]
806 );
807 }
808
809 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
810 exit;
811 }
812
813 // -------- User clicked either "Set public" or "Set private" bulk operation
814 if ($targetPage == Router::$PAGE_CHANGE_VISIBILITY) {
815 if (! $sessionManager->checkToken($_GET['token'])) {
816 die(t('Wrong token.'));
817 }
818
819 $ids = trim($_GET['ids']);
820 if (strpos($ids, ' ') !== false) {
821 // multiple, space-separated ids provided
822 $ids = array_values(array_filter(preg_split('/\s+/', escape($ids))));
823 } else {
824 // only a single id provided
825 $ids = [$ids];
826 }
827
828 // assert at least one id is given
829 if (!count($ids)) {
830 die('no id provided');
831 }
832 // assert that the visibility is valid
833 if (!isset($_GET['newVisibility']) || !in_array($_GET['newVisibility'], ['public', 'private'])) {
834 die('invalid visibility');
835 } else {
836 $private = $_GET['newVisibility'] === 'private';
837 }
838 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
839 $formatter = $factory->getFormatter('raw');
840 foreach ($ids as $id) {
841 $id = (int) escape($id);
842 $bookmark = $bookmarkService->get($id);
843 $bookmark->setPrivate($private);
844
845 // To preserve backward compatibility with 3rd parties, plugins still use arrays
846 $data = $formatter->format($bookmark);
847 $pluginManager->executeHooks('save_link', $data);
848 $bookmark->fromArray($data);
849
850 $bookmarkService->set($bookmark);
851 }
852 $bookmarkService->save();
853
854 $location = '?';
855 if (isset($_SERVER['HTTP_REFERER'])) {
856 $location = generateLocation(
857 $_SERVER['HTTP_REFERER'],
858 $_SERVER['HTTP_HOST']
859 );
860 }
861 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
862 exit;
863 }
864
865 // -------- User clicked the "EDIT" button on a link: Display link edit form.
866 if (isset($_GET['edit_link'])) {
867 $id = (int) escape($_GET['edit_link']);
868 try {
869 $link = $bookmarkService->get($id); // Read database
870 } catch (BookmarkNotFoundException $e) {
871 // Link not found in database.
872 header('Location: ?');
873 exit;
874 }
875
876 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
877 $formatter = $factory->getFormatter('raw');
878 $formattedLink = $formatter->format($link);
879 $tags = $bookmarkService->bookmarksCountPerTag();
880 if ($conf->get('formatter') === 'markdown') {
881 $tags[BookmarkMarkdownFormatter::NO_MD_TAG] = 1;
882 }
883 $data = array(
884 'link' => $formattedLink,
885 'link_is_new' => false,
886 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
887 'tags' => $tags,
888 );
889 $pluginManager->executeHooks('render_editlink', $data);
890
891 foreach ($data as $key => $value) {
892 $PAGE->assign($key, $value);
893 }
894
895 $PAGE->assign('pagetitle', t('Edit') .' '. t('Shaare') .' - '. $conf->get('general.title', 'Shaarli'));
896 $PAGE->renderPage('editlink');
897 exit;
898 }
899
900 // -------- User want to post a new link: Display link edit form.
901 if (isset($_GET['post'])) {
902 $url = cleanup_url($_GET['post']);
903
904 $link_is_new = false;
905 // Check if URL is not already in database (in this case, we will edit the existing link)
906 $bookmark = $bookmarkService->findByUrl($url);
907 if (! $bookmark) {
908 $link_is_new = true;
909 // Get title if it was provided in URL (by the bookmarklet).
910 $title = empty($_GET['title']) ? '' : escape($_GET['title']);
911 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that]
912 $description = empty($_GET['description']) ? '' : escape($_GET['description']);
913 $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']);
914 $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0;
915
916 // If this is an HTTP(S) link, we try go get the page to extract
917 // the title (otherwise we will to straight to the edit form.)
918 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) {
919 $retrieveDescription = $conf->get('general.retrieve_description');
920 // Short timeout to keep the application responsive
921 // The callback will fill $charset and $title with data from the downloaded page.
922 get_http_response(
923 $url,
924 $conf->get('general.download_timeout', 30),
925 $conf->get('general.download_max_size', 4194304),
926 get_curl_download_callback($charset, $title, $description, $tags, $retrieveDescription)
927 );
928 if (! empty($title) && strtolower($charset) != 'utf-8') {
929 $title = mb_convert_encoding($title, 'utf-8', $charset);
930 }
931 }
932
933 if ($url == '') {
934 $title = $conf->get('general.default_note_title', t('Note: '));
935 }
936 $url = escape($url);
937 $title = escape($title);
938
939 $link = [
940 'title' => $title,
941 'url' => $url,
942 'description' => $description,
943 'tags' => $tags,
944 'private' => $private,
945 ];
946 } else {
947 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
948 $formatter = $factory->getFormatter('raw');
949 $link = $formatter->format($bookmark);
950 }
951
952 $tags = $bookmarkService->bookmarksCountPerTag();
953 if ($conf->get('formatter') === 'markdown') {
954 $tags[BookmarkMarkdownFormatter::NO_MD_TAG] = 1;
955 }
956 $data = [
957 'link' => $link,
958 'link_is_new' => $link_is_new,
959 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
960 'source' => (isset($_GET['source']) ? $_GET['source'] : ''),
961 'tags' => $tags,
962 'default_private_links' => $conf->get('privacy.default_private_links', false),
963 ];
964 $pluginManager->executeHooks('render_editlink', $data);
965
966 foreach ($data as $key => $value) {
967 $PAGE->assign($key, $value);
968 }
969
970 $PAGE->assign('pagetitle', t('Shaare') .' - '. $conf->get('general.title', 'Shaarli'));
971 $PAGE->renderPage('editlink');
972 exit;
973 }
974
975 if ($targetPage == Router::$PAGE_PINLINK) {
976 if (! isset($_GET['id']) || !$bookmarkService->exists($_GET['id'])) {
977 // FIXME! Use a proper error system.
978 $msg = t('Invalid link ID provided');
979 echo '<script>alert("'. $msg .'");document.location=\''. index_url($_SERVER) .'\';</script>';
980 exit;
981 }
982 if (! $sessionManager->checkToken($_GET['token'])) {
983 die('Wrong token.');
984 }
985
986 $link = $bookmarkService->get($_GET['id']);
987 $link->setSticky(! $link->isSticky());
988 $bookmarkService->set($link);
989 header('Location: '.index_url($_SERVER));
990 exit;
991 }
992
993 if ($targetPage == Router::$PAGE_EXPORT) {
994 // Export bookmarks as a Netscape Bookmarks file
995
996 if (empty($_GET['selection'])) {
997 $PAGE->assign('pagetitle', t('Export') .' - '. $conf->get('general.title', 'Shaarli'));
998 $PAGE->renderPage('export');
999 exit;
1000 }
1001
1002 // export as bookmarks_(all|private|public)_YYYYmmdd_HHMMSS.html
1003 $selection = $_GET['selection'];
1004 if (isset($_GET['prepend_note_url'])) {
1005 $prependNoteUrl = $_GET['prepend_note_url'];
1006 } else {
1007 $prependNoteUrl = false;
1008 }
1009
1010 try {
1011 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
1012 $formatter = $factory->getFormatter('raw');
1013 $PAGE->assign(
1014 'links',
1015 NetscapeBookmarkUtils::filterAndFormat(
1016 $bookmarkService,
1017 $formatter,
1018 $selection,
1019 $prependNoteUrl,
1020 index_url($_SERVER)
1021 )
1022 );
1023 } catch (Exception $exc) {
1024 header('Content-Type: text/plain; charset=utf-8');
1025 echo $exc->getMessage();
1026 exit;
1027 }
1028 $now = new DateTime();
1029 header('Content-Type: text/html; charset=utf-8');
1030 header(
1031 'Content-disposition: attachment; filename=bookmarks_'
1032 .$selection.'_'.$now->format(Bookmark::LINK_DATE_FORMAT).'.html'
1033 );
1034 $PAGE->assign('date', $now->format(DateTime::RFC822));
1035 $PAGE->assign('eol', PHP_EOL);
1036 $PAGE->assign('selection', $selection);
1037 $PAGE->renderPage('export.bookmarks');
1038 exit;
1039 }
1040
1041 if ($targetPage == Router::$PAGE_IMPORT) {
1042 // Upload a Netscape bookmark dump to import its contents
1043
1044 if (! isset($_POST['token']) || ! isset($_FILES['filetoupload'])) {
1045 // Show import dialog
1046 $PAGE->assign(
1047 'maxfilesize',
1048 get_max_upload_size(
1049 ini_get('post_max_size'),
1050 ini_get('upload_max_filesize'),
1051 false
1052 )
1053 );
1054 $PAGE->assign(
1055 'maxfilesizeHuman',
1056 get_max_upload_size(
1057 ini_get('post_max_size'),
1058 ini_get('upload_max_filesize'),
1059 true
1060 )
1061 );
1062 $PAGE->assign('pagetitle', t('Import') .' - '. $conf->get('general.title', 'Shaarli'));
1063 $PAGE->renderPage('import');
1064 exit;
1065 }
1066
1067 // Import bookmarks from an uploaded file
1068 if (isset($_FILES['filetoupload']['size']) && $_FILES['filetoupload']['size'] == 0) {
1069 // The file is too big or some form field may be missing.
1070 $msg = sprintf(
1071 t(
1072 'The file you are trying to upload is probably bigger than what this webserver can accept'
1073 .' (%s). Please upload in smaller chunks.'
1074 ),
1075 get_max_upload_size(ini_get('post_max_size'), ini_get('upload_max_filesize'))
1076 );
1077 echo '<script>alert("'. $msg .'");document.location=\'./?do='.Router::$PAGE_IMPORT .'\';</script>';
1078 exit;
1079 }
1080 if (! $sessionManager->checkToken($_POST['token'])) {
1081 die('Wrong token.');
1082 }
1083 $status = NetscapeBookmarkUtils::import(
1084 $_POST,
1085 $_FILES,
1086 $bookmarkService,
1087 $conf,
1088 $history
1089 );
1090 echo '<script>alert("'.$status.'");document.location=\'./?do='
1091 .Router::$PAGE_IMPORT .'\';</script>';
1092 exit;
1093 }
1094
1095 // Plugin administration page
1096 if ($targetPage == Router::$PAGE_PLUGINSADMIN) {
1097 $pluginMeta = $pluginManager->getPluginsMeta();
1098
1099 // Split plugins into 2 arrays: ordered enabled plugins and disabled.
1100 $enabledPlugins = array_filter($pluginMeta, function ($v) {
1101 return $v['order'] !== false;
1102 });
1103 // Load parameters.
1104 $enabledPlugins = load_plugin_parameter_values($enabledPlugins, $conf->get('plugins', array()));
1105 uasort(
1106 $enabledPlugins,
1107 function ($a, $b) {
1108 return $a['order'] - $b['order'];
1109 }
1110 );
1111 $disabledPlugins = array_filter($pluginMeta, function ($v) {
1112 return $v['order'] === false;
1113 });
1114
1115 $PAGE->assign('enabledPlugins', $enabledPlugins);
1116 $PAGE->assign('disabledPlugins', $disabledPlugins);
1117 $PAGE->assign('pagetitle', t('Plugin administration') .' - '. $conf->get('general.title', 'Shaarli'));
1118 $PAGE->renderPage('pluginsadmin');
1119 exit;
1120 }
1121
1122 // Plugin administration form action
1123 if ($targetPage == Router::$PAGE_SAVE_PLUGINSADMIN) {
1124 try {
1125 if (isset($_POST['parameters_form'])) {
1126 $pluginManager->executeHooks('save_plugin_parameters', $_POST);
1127 unset($_POST['parameters_form']);
1128 foreach ($_POST as $param => $value) {
1129 $conf->set('plugins.'. $param, escape($value));
1130 }
1131 } else {
1132 $conf->set('general.enabled_plugins', save_plugin_config($_POST));
1133 }
1134 $conf->write($loginManager->isLoggedIn());
1135 $history->updateSettings();
1136 } catch (Exception $e) {
1137 error_log(
1138 'ERROR while saving plugin configuration:.' . PHP_EOL .
1139 $e->getMessage()
1140 );
1141
1142 // TODO: do not handle exceptions/errors in JS.
1143 echo '<script>alert("'
1144 . $e->getMessage()
1145 .'");document.location=\'./?do='
1146 . Router::$PAGE_PLUGINSADMIN
1147 .'\';</script>';
1148 exit;
1149 }
1150 header('Location: ./?do='. Router::$PAGE_PLUGINSADMIN);
1151 exit;
1152 }
1153
1154 // Get a fresh token
1155 if ($targetPage == Router::$GET_TOKEN) {
1156 header('Content-Type:text/plain');
1157 echo $sessionManager->generateToken();
1158 exit;
1159 }
1160
1161 // -------- Thumbnails Update
1162 if ($targetPage == Router::$PAGE_THUMBS_UPDATE) {
1163 $ids = [];
1164 foreach ($bookmarkService->search() as $bookmark) {
1165 // A note or not HTTP(S)
1166 if ($bookmark->isNote() || ! startsWith(strtolower($bookmark->getUrl()), 'http')) {
1167 continue;
1168 }
1169 $ids[] = $bookmark->getId();
1170 }
1171 $PAGE->assign('ids', $ids);
1172 $PAGE->assign('pagetitle', t('Thumbnails update') .' - '. $conf->get('general.title', 'Shaarli'));
1173 $PAGE->renderPage('thumbnails');
1174 exit;
1175 }
1176
1177 // -------- Single Thumbnail Update
1178 if ($targetPage == Router::$AJAX_THUMB_UPDATE) {
1179 if (! isset($_POST['id']) || ! ctype_digit($_POST['id'])) {
1180 http_response_code(400);
1181 exit;
1182 }
1183 $id = (int) $_POST['id'];
1184 if (! $bookmarkService->exists($id)) {
1185 http_response_code(404);
1186 exit;
1187 }
1188 $thumbnailer = new Thumbnailer($conf);
1189 $bookmark = $bookmarkService->get($id);
1190 $bookmark->setThumbnail($thumbnailer->get($bookmark->getUrl()));
1191 $bookmarkService->set($bookmark);
1192
1193 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
1194 echo json_encode($factory->getFormatter('raw')->format($bookmark));
1195 exit;
1196 }
1197
1198 // -------- Otherwise, simply display search form and bookmarks:
1199 showLinkList($PAGE, $bookmarkService, $conf, $pluginManager, $loginManager);
1200 exit;
1201 }
1202
1203 /**
1204 * Template for the list of bookmarks (<div id="linklist">)
1205 * This function fills all the necessary fields in the $PAGE for the template 'linklist.html'
1206 *
1207 * @param pageBuilder $PAGE pageBuilder instance.
1208 * @param BookmarkServiceInterface $linkDb LinkDB instance.
1209 * @param ConfigManager $conf Configuration Manager instance.
1210 * @param PluginManager $pluginManager Plugin Manager instance.
1211 * @param LoginManager $loginManager LoginManager instance
1212 */
1213 function buildLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager)
1214 {
1215 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
1216 $formatter = $factory->getFormatter();
1217
1218 // Used in templates
1219 if (isset($_GET['searchtags'])) {
1220 if (! empty($_GET['searchtags'])) {
1221 $searchtags = escape(normalize_spaces($_GET['searchtags']));
1222 } else {
1223 $searchtags = false;
1224 }
1225 } else {
1226 $searchtags = '';
1227 }
1228 $searchterm = !empty($_GET['searchterm']) ? escape(normalize_spaces($_GET['searchterm'])) : '';
1229
1230 // Smallhash filter
1231 if (! empty($_SERVER['QUERY_STRING'])
1232 && preg_match('/^[a-zA-Z0-9-_@]{6}($|&|#)/', $_SERVER['QUERY_STRING'])) {
1233 try {
1234 $linksToDisplay = $linkDb->findByHash($_SERVER['QUERY_STRING']);
1235 } catch (BookmarkNotFoundException $e) {
1236 $PAGE->render404($e->getMessage());
1237 exit;
1238 }
1239 } else {
1240 // Filter bookmarks according search parameters.
1241 $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : null;
1242 $request = [
1243 'searchtags' => $searchtags,
1244 'searchterm' => $searchterm,
1245 ];
1246 $linksToDisplay = $linkDb->search($request, $visibility, false, !empty($_SESSION['untaggedonly']));
1247 }
1248
1249 // ---- Handle paging.
1250 $keys = array();
1251 foreach ($linksToDisplay as $key => $value) {
1252 $keys[] = $key;
1253 }
1254
1255 // Select articles according to paging.
1256 $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']);
1257 $pagecount = $pagecount == 0 ? 1 : $pagecount;
1258 $page= empty($_GET['page']) ? 1 : intval($_GET['page']);
1259 $page = $page < 1 ? 1 : $page;
1260 $page = $page > $pagecount ? $pagecount : $page;
1261 // Start index.
1262 $i = ($page-1) * $_SESSION['LINKS_PER_PAGE'];
1263 $end = $i + $_SESSION['LINKS_PER_PAGE'];
1264
1265 $thumbnailsEnabled = $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE;
1266 if ($thumbnailsEnabled) {
1267 $thumbnailer = new Thumbnailer($conf);
1268 }
1269
1270 $linkDisp = array();
1271 while ($i<$end && $i<count($keys)) {
1272 $link = $formatter->format($linksToDisplay[$keys[$i]]);
1273
1274 // Logged in, thumbnails enabled, not a note,
1275 // and (never retrieved yet or no valid cache file)
1276 if ($loginManager->isLoggedIn()
1277 && $thumbnailsEnabled
1278 && !$linksToDisplay[$keys[$i]]->isNote()
1279 && $linksToDisplay[$keys[$i]]->getThumbnail() !== false
1280 && ! is_file($linksToDisplay[$keys[$i]]->getThumbnail())
1281 ) {
1282 $linksToDisplay[$keys[$i]]->setThumbnail($thumbnailer->get($link['url']));
1283 $linkDb->set($linksToDisplay[$keys[$i]], false);
1284 $updateDB = true;
1285 $link['thumbnail'] = $linksToDisplay[$keys[$i]]->getThumbnail();
1286 }
1287
1288 // Check for both signs of a note: starting with ? and 7 chars long.
1289 // if ($link['url'][0] === '?' && strlen($link['url']) === 7) {
1290 // $link['url'] = index_url($_SERVER) . $link['url'];
1291 // }
1292
1293 $linkDisp[$keys[$i]] = $link;
1294 $i++;
1295 }
1296
1297 // If we retrieved new thumbnails, we update the database.
1298 if (!empty($updateDB)) {
1299 $linkDb->save();
1300 }
1301
1302 // Compute paging navigation
1303 $searchtagsUrl = $searchtags === '' ? '' : '&searchtags=' . urlencode($searchtags);
1304 $searchtermUrl = empty($searchterm) ? '' : '&searchterm=' . urlencode($searchterm);
1305 $previous_page_url = '';
1306 if ($i != count($keys)) {
1307 $previous_page_url = '?page=' . ($page+1) . $searchtermUrl . $searchtagsUrl;
1308 }
1309 $next_page_url='';
1310 if ($page>1) {
1311 $next_page_url = '?page=' . ($page-1) . $searchtermUrl . $searchtagsUrl;
1312 }
1313
1314 // Fill all template fields.
1315 $data = array(
1316 'previous_page_url' => $previous_page_url,
1317 'next_page_url' => $next_page_url,
1318 'page_current' => $page,
1319 'page_max' => $pagecount,
1320 'result_count' => count($linksToDisplay),
1321 'search_term' => $searchterm,
1322 'search_tags' => $searchtags,
1323 'visibility' => ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : '',
1324 'links' => $linkDisp,
1325 );
1326
1327 // If there is only a single link, we change on-the-fly the title of the page.
1328 if (count($linksToDisplay) == 1) {
1329 $data['pagetitle'] = $linksToDisplay[$keys[0]]->getTitle() .' - '. $conf->get('general.title');
1330 } elseif (! empty($searchterm) || ! empty($searchtags)) {
1331 $data['pagetitle'] = t('Search: ');
1332 $data['pagetitle'] .= ! empty($searchterm) ? $searchterm .' ' : '';
1333 $bracketWrap = function ($tag) {
1334 return '['. $tag .']';
1335 };
1336 $data['pagetitle'] .= ! empty($searchtags)
1337 ? implode(' ', array_map($bracketWrap, preg_split('/\s+/', $searchtags))).' '
1338 : '';
1339 $data['pagetitle'] .= '- '. $conf->get('general.title');
1340 }
1341
1342 $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => $loginManager->isLoggedIn()));
1343
1344 foreach ($data as $key => $value) {
1345 $PAGE->assign($key, $value);
1346 }
1347
1348 return;
1349 }
1350
1351 /**
1352 * Installation
1353 * This function should NEVER be called if the file data/config.php exists.
1354 *
1355 * @param ConfigManager $conf Configuration Manager instance.
1356 * @param SessionManager $sessionManager SessionManager instance
1357 * @param LoginManager $loginManager LoginManager instance
1358 */
1359 function install($conf, $sessionManager, $loginManager)
1360 {
1361 // On free.fr host, make sure the /sessions directory exists, otherwise login will not work.
1362 if (endsWith($_SERVER['HTTP_HOST'], '.free.fr') && !is_dir($_SERVER['DOCUMENT_ROOT'].'/sessions')) {
1363 mkdir($_SERVER['DOCUMENT_ROOT'].'/sessions', 0705);
1364 }
1365
1366
1367 // This part makes sure sessions works correctly.
1368 // (Because on some hosts, session.save_path may not be set correctly,
1369 // or we may not have write access to it.)
1370 if (isset($_GET['test_session'])
1371 && ( !isset($_SESSION) || !isset($_SESSION['session_tested']) || $_SESSION['session_tested']!='Working')) {
1372 // Step 2: Check if data in session is correct.
1373 $msg = t(
1374 '<pre>Sessions do not seem to work correctly on your server.<br>'.
1375 'Make sure the variable "session.save_path" is set correctly in your PHP config, '.
1376 'and that you have write access to it.<br>'.
1377 'It currently points to %s.<br>'.
1378 'On some browsers, accessing your server via a hostname like \'localhost\' '.
1379 'or any custom hostname without a dot causes cookie storage to fail. '.
1380 'We recommend accessing your server via it\'s IP address or Fully Qualified Domain Name.<br>'
1381 );
1382 $msg = sprintf($msg, session_save_path());
1383 echo $msg;
1384 echo '<br><a href="?">'. t('Click to try again.') .'</a></pre>';
1385 die;
1386 }
1387 if (!isset($_SESSION['session_tested'])) {
1388 // Step 1 : Try to store data in session and reload page.
1389 $_SESSION['session_tested'] = 'Working'; // Try to set a variable in session.
1390 header('Location: '.index_url($_SERVER).'?test_session'); // Redirect to check stored data.
1391 }
1392 if (isset($_GET['test_session'])) {
1393 // Step 3: Sessions are OK. Remove test parameter from URL.
1394 header('Location: '.index_url($_SERVER));
1395 }
1396
1397
1398 if (!empty($_POST['setlogin']) && !empty($_POST['setpassword'])) {
1399 $tz = 'UTC';
1400 if (!empty($_POST['continent']) && !empty($_POST['city'])
1401 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1402 ) {
1403 $tz = $_POST['continent'].'/'.$_POST['city'];
1404 }
1405 $conf->set('general.timezone', $tz);
1406 $login = $_POST['setlogin'];
1407 $conf->set('credentials.login', $login);
1408 $salt = sha1(uniqid('', true) .'_'. mt_rand());
1409 $conf->set('credentials.salt', $salt);
1410 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $login . $salt));
1411 if (!empty($_POST['title'])) {
1412 $conf->set('general.title', escape($_POST['title']));
1413 } else {
1414 $conf->set('general.title', 'Shared bookmarks on '.escape(index_url($_SERVER)));
1415 }
1416 $conf->set('translation.language', escape($_POST['language']));
1417 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
1418 $conf->set('api.enabled', !empty($_POST['enableApi']));
1419 $conf->set(
1420 'api.secret',
1421 generate_api_secret(
1422 $conf->get('credentials.login'),
1423 $conf->get('credentials.salt')
1424 )
1425 );
1426 try {
1427 // Everything is ok, let's create config file.
1428 $conf->write($loginManager->isLoggedIn());
1429 } catch (Exception $e) {
1430 error_log(
1431 'ERROR while writing config file after installation.' . PHP_EOL .
1432 $e->getMessage()
1433 );
1434
1435 // TODO: do not handle exceptions/errors in JS.
1436 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?\';</script>';
1437 exit;
1438 }
1439
1440 $history = new History($conf->get('resource.history'));
1441 $bookmarkService = new BookmarkFileService($conf, $history, true);
1442 if ($bookmarkService->count() === 0) {
1443 $bookmarkService->initialize();
1444 }
1445
1446 echo '<script>alert('
1447 .'"Shaarli is now configured. '
1448 .'Please enter your login/password and start shaaring your bookmarks!"'
1449 .');document.location=\'./login\';</script>';
1450 exit;
1451 }
1452
1453 $PAGE = new PageBuilder($conf, $_SESSION, null, $sessionManager->generateToken());
1454 list($continents, $cities) = generateTimeZoneData(timezone_identifiers_list(), date_default_timezone_get());
1455 $PAGE->assign('continents', $continents);
1456 $PAGE->assign('cities', $cities);
1457 $PAGE->assign('languages', Languages::getAvailableLanguages());
1458 $PAGE->renderPage('install');
1459 exit;
1460 }
1461
1462 if (!isset($_SESSION['LINKS_PER_PAGE'])) {
1463 $_SESSION['LINKS_PER_PAGE'] = $conf->get('general.links_per_page', 20);
1464 }
1465
1466 try {
1467 $history = new History($conf->get('resource.history'));
1468 } catch (Exception $e) {
1469 die($e->getMessage());
1470 }
1471
1472 $linkDb = new BookmarkFileService($conf, $history, $loginManager->isLoggedIn());
1473
1474 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=dailyrss')) {
1475 header('Location: ./daily-rss');
1476 exit;
1477 }
1478
1479 $containerBuilder = new ContainerBuilder($conf, $sessionManager, $loginManager, WEB_PATH);
1480 $container = $containerBuilder->build();
1481 $app = new App($container);
1482
1483 // REST API routes
1484 $app->group('/api/v1', function () {
1485 $this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo')->setName('getInfo');
1486 $this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks')->setName('getLinks');
1487 $this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink')->setName('getLink');
1488 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
1489 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
1490 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
1491
1492 $this->get('/tags', '\Shaarli\Api\Controllers\Tags:getTags')->setName('getTags');
1493 $this->get('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:getTag')->setName('getTag');
1494 $this->put('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:putTag')->setName('putTag');
1495 $this->delete('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:deleteTag')->setName('deleteTag');
1496
1497 $this->get('/history', '\Shaarli\Api\Controllers\HistoryController:getHistory')->setName('getHistory');
1498 })->add('\Shaarli\Api\ApiMiddleware');
1499
1500 $app->group('', function () {
1501 $this->get('/login', '\Shaarli\Front\Controller\LoginController:index')->setName('login');
1502 $this->get('/logout', '\Shaarli\Front\Controller\LogoutController:index')->setName('logout');
1503 $this->get('/picture-wall', '\Shaarli\Front\Controller\PictureWallController:index')->setName('picwall');
1504 $this->get('/tag-cloud', '\Shaarli\Front\Controller\TagCloudController:cloud')->setName('tagcloud');
1505 $this->get('/tag-list', '\Shaarli\Front\Controller\TagCloudController:list')->setName('taglist');
1506 $this->get('/daily', '\Shaarli\Front\Controller\DailyController:index')->setName('daily');
1507 $this->get('/daily-rss', '\Shaarli\Front\Controller\DailyController:rss')->setName('dailyrss');
1508 $this->get('/feed-atom', '\Shaarli\Front\Controller\FeedController:atom')->setName('feedatom');
1509 $this->get('/feed-rss', '\Shaarli\Front\Controller\FeedController:rss')->setName('feedrss');
1510 $this->get('/open-search', '\Shaarli\Front\Controller\OpenSearchController:index')->setName('opensearch');
1511
1512 $this->get('/add-tag/{newTag}', '\Shaarli\Front\Controller\TagController:addTag')->setName('add-tag');
1513 $this->get('/remove-tag/{tag}', '\Shaarli\Front\Controller\TagController:removeTag')->setName('remove-tag');
1514
1515 $this
1516 ->get('/links-per-page', '\Shaarli\Front\Controller\SessionFilterController:linksPerPage')
1517 ->setName('filter-links-per-page')
1518 ;
1519 $this
1520 ->get('/visibility/{visibility}', '\Shaarli\Front\Controller\SessionFilterController:visibility')
1521 ->setName('visibility')
1522 ;
1523 $this
1524 ->get('/untagged-only', '\Shaarli\Front\Controller\SessionFilterController:untaggedOnly')
1525 ->setName('untagged-only')
1526 ;
1527 })->add('\Shaarli\Front\ShaarliMiddleware');
1528
1529 $response = $app->run(true);
1530
1531 // Hack to make Slim and Shaarli router work together:
1532 // If a Slim route isn't found and NOT API call, we call renderPage().
1533 if ($response->getStatusCode() == 404 && strpos($_SERVER['REQUEST_URI'], '/api/v1') === false) {
1534 // We use UTF-8 for proper international characters handling.
1535 header('Content-Type: text/html; charset=utf-8');
1536 renderPage($conf, $pluginManager, $linkDb, $history, $sessionManager, $loginManager);
1537 } else {
1538 $response = $response
1539 ->withHeader('Access-Control-Allow-Origin', '*')
1540 ->withHeader(
1541 'Access-Control-Allow-Headers',
1542 'X-Requested-With, Content-Type, Accept, Origin, Authorization'
1543 )
1544 ->withHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
1545 $app->respond($response);
1546 }