]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - index.php
Add settings history only when they're updated
[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 * Requires: PHP 5.5.x
15 */
16
17 // Set 'UTC' as the default timezone if it is not defined in php.ini
18 // See http://php.net/manual/en/datetime.configuration.php#ini.date.timezone
19 if (date_default_timezone_get() == '') {
20 date_default_timezone_set('UTC');
21 }
22
23 /*
24 * PHP configuration
25 */
26
27 // http://server.com/x/shaarli --> /shaarli/
28 define('WEB_PATH', substr($_SERVER['REQUEST_URI'], 0, 1+strrpos($_SERVER['REQUEST_URI'], '/', 0)));
29
30 // High execution time in case of problematic imports/exports.
31 ini_set('max_input_time','60');
32
33 // Try to set max upload file size and read
34 ini_set('memory_limit', '128M');
35 ini_set('post_max_size', '16M');
36 ini_set('upload_max_filesize', '16M');
37
38 // See all error except warnings
39 error_reporting(E_ALL^E_WARNING);
40 // See all errors (for debugging only)
41 //error_reporting(-1);
42
43
44 // 3rd-party libraries
45 if (! file_exists(__DIR__ . '/vendor/autoload.php')) {
46 header('Content-Type: text/plain; charset=utf-8');
47 echo "Error: missing Composer configuration\n\n"
48 ."If you installed Shaarli through Git or using the development branch,\n"
49 ."please refer to the installation documentation to install PHP"
50 ." dependencies using Composer:\n"
51 ."- https://github.com/shaarli/Shaarli/wiki/Server-requirements\n"
52 ."- https://github.com/shaarli/Shaarli/wiki/Download-and-Installation";
53 exit;
54 }
55 require_once 'inc/rain.tpl.class.php';
56 require_once __DIR__ . '/vendor/autoload.php';
57
58 // Shaarli library
59 require_once 'application/ApplicationUtils.php';
60 require_once 'application/Cache.php';
61 require_once 'application/CachedPage.php';
62 require_once 'application/config/ConfigPlugin.php';
63 require_once 'application/FeedBuilder.php';
64 require_once 'application/FileUtils.php';
65 require_once 'application/History.php';
66 require_once 'application/HttpUtils.php';
67 require_once 'application/Languages.php';
68 require_once 'application/LinkDB.php';
69 require_once 'application/LinkFilter.php';
70 require_once 'application/LinkUtils.php';
71 require_once 'application/NetscapeBookmarkUtils.php';
72 require_once 'application/PageBuilder.php';
73 require_once 'application/TimeZone.php';
74 require_once 'application/Url.php';
75 require_once 'application/Utils.php';
76 require_once 'application/PluginManager.php';
77 require_once 'application/Router.php';
78 require_once 'application/Updater.php';
79 use \Shaarli\ThemeUtils;
80 use \Shaarli\Config\ConfigManager;
81
82 // Ensure the PHP version is supported
83 try {
84 ApplicationUtils::checkPHPVersion('5.5', PHP_VERSION);
85 } catch(Exception $exc) {
86 header('Content-Type: text/plain; charset=utf-8');
87 echo $exc->getMessage();
88 exit;
89 }
90
91 define('shaarli_version', ApplicationUtils::getVersion(__DIR__ .'/'. ApplicationUtils::$VERSION_FILE));
92
93 // Force cookie path (but do not change lifetime)
94 $cookie = session_get_cookie_params();
95 $cookiedir = '';
96 if (dirname($_SERVER['SCRIPT_NAME']) != '/') {
97 $cookiedir = dirname($_SERVER["SCRIPT_NAME"]).'/';
98 }
99 // Set default cookie expiration and path.
100 session_set_cookie_params($cookie['lifetime'], $cookiedir, $_SERVER['SERVER_NAME']);
101 // Set session parameters on server side.
102 // If the user does not access any page within this time, his/her session is considered expired.
103 define('INACTIVITY_TIMEOUT', 3600); // in seconds.
104 // Use cookies to store session.
105 ini_set('session.use_cookies', 1);
106 // Force cookies for session (phpsessionID forbidden in URL).
107 ini_set('session.use_only_cookies', 1);
108 // Prevent PHP form using sessionID in URL if cookies are disabled.
109 ini_set('session.use_trans_sid', false);
110
111 session_name('shaarli');
112 // Start session if needed (Some server auto-start sessions).
113 if (session_id() == '') {
114 session_start();
115 }
116
117 // Regenerate session ID if invalid or not defined in cookie.
118 if (isset($_COOKIE['shaarli']) && !is_session_id_valid($_COOKIE['shaarli'])) {
119 session_regenerate_id(true);
120 $_COOKIE['shaarli'] = session_id();
121 }
122
123 $conf = new ConfigManager();
124 $conf->setEmpty('general.timezone', date_default_timezone_get());
125 $conf->setEmpty('general.title', 'Shared links on '. escape(index_url($_SERVER)));
126 RainTPL::$tpl_dir = $conf->get('resource.raintpl_tpl').'/'.$conf->get('resource.theme').'/'; // template directory
127 RainTPL::$cache_dir = $conf->get('resource.raintpl_tmp'); // cache directory
128
129 $pluginManager = new PluginManager($conf);
130 $pluginManager->load($conf->get('general.enabled_plugins'));
131
132 date_default_timezone_set($conf->get('general.timezone', 'UTC'));
133
134 ob_start(); // Output buffering for the page cache.
135
136 // In case stupid admin has left magic_quotes enabled in php.ini:
137 if (get_magic_quotes_gpc())
138 {
139 function stripslashes_deep($value) { $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value); return $value; }
140 $_POST = array_map('stripslashes_deep', $_POST);
141 $_GET = array_map('stripslashes_deep', $_GET);
142 $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
143 }
144
145 // Prevent caching on client side or proxy: (yes, it's ugly)
146 header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
147 header("Cache-Control: no-store, no-cache, must-revalidate");
148 header("Cache-Control: post-check=0, pre-check=0", false);
149 header("Pragma: no-cache");
150
151 if (! is_file($conf->getConfigFileExt())) {
152 // Ensure Shaarli has proper access to its resources
153 $errors = ApplicationUtils::checkResourcePermissions($conf);
154
155 if ($errors != array()) {
156 $message = '<p>Insufficient permissions:</p><ul>';
157
158 foreach ($errors as $error) {
159 $message .= '<li>'.$error.'</li>';
160 }
161 $message .= '</ul>';
162
163 header('Content-Type: text/html; charset=utf-8');
164 echo $message;
165 exit;
166 }
167
168 // Display the installation form if no existing config is found
169 install($conf);
170 }
171
172 // a token depending of deployment salt, user password, and the current ip
173 define('STAY_SIGNED_IN_TOKEN', sha1($conf->get('credentials.hash') . $_SERVER['REMOTE_ADDR'] . $conf->get('credentials.salt')));
174
175 // Sniff browser language and set date format accordingly.
176 if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
177 autoLocale($_SERVER['HTTP_ACCEPT_LANGUAGE']);
178 }
179
180 /**
181 * Checking session state (i.e. is the user still logged in)
182 *
183 * @param ConfigManager $conf The configuration manager.
184 *
185 * @return bool: true if the user is logged in, false otherwise.
186 */
187 function setup_login_state($conf)
188 {
189 if ($conf->get('security.open_shaarli')) {
190 return true;
191 }
192 $userIsLoggedIn = false; // By default, we do not consider the user as logged in;
193 $loginFailure = false; // If set to true, every attempt to authenticate the user will fail. This indicates that an important condition isn't met.
194 if (! $conf->exists('credentials.login')) {
195 $userIsLoggedIn = false; // Shaarli is not configured yet.
196 $loginFailure = true;
197 }
198 if (isset($_COOKIE['shaarli_staySignedIn']) &&
199 $_COOKIE['shaarli_staySignedIn']===STAY_SIGNED_IN_TOKEN &&
200 !$loginFailure)
201 {
202 fillSessionInfo($conf);
203 $userIsLoggedIn = true;
204 }
205 // If session does not exist on server side, or IP address has changed, or session has expired, logout.
206 if (empty($_SESSION['uid'])
207 || ($conf->get('security.session_protection_disabled') === false && $_SESSION['ip'] != allIPs())
208 || time() >= $_SESSION['expires_on'])
209 {
210 logout();
211 $userIsLoggedIn = false;
212 $loginFailure = true;
213 }
214 if (!empty($_SESSION['longlastingsession'])) {
215 $_SESSION['expires_on']=time()+$_SESSION['longlastingsession']; // In case of "Stay signed in" checked.
216 }
217 else {
218 $_SESSION['expires_on']=time()+INACTIVITY_TIMEOUT; // Standard session expiration date.
219 }
220 if (!$loginFailure) {
221 $userIsLoggedIn = true;
222 }
223
224 return $userIsLoggedIn;
225 }
226 $userIsLoggedIn = setup_login_state($conf);
227
228 /**
229 * PubSubHubbub protocol support (if enabled) [UNTESTED]
230 * (Source: http://aldarone.fr/les-flux-rss-shaarli-et-pubsubhubbub/ )
231 *
232 * @param ConfigManager $conf Configuration Manager instance.
233 */
234 function pubsubhub($conf)
235 {
236 $pshUrl = $conf->get('config.PUBSUBHUB_URL');
237 if (!empty($pshUrl))
238 {
239 include_once './publisher.php';
240 $p = new Publisher($pshUrl);
241 $topic_url = array (
242 index_url($_SERVER).'?do=atom',
243 index_url($_SERVER).'?do=rss'
244 );
245 $p->publish_update($topic_url);
246 }
247 }
248
249 // ------------------------------------------------------------------------------------------
250 // Session management
251
252 // Returns the IP address of the client (Used to prevent session cookie hijacking.)
253 function allIPs()
254 {
255 $ip = $_SERVER['REMOTE_ADDR'];
256 // Then we use more HTTP headers to prevent session hijacking from users behind the same proxy.
257 if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { $ip=$ip.'_'.$_SERVER['HTTP_X_FORWARDED_FOR']; }
258 if (isset($_SERVER['HTTP_CLIENT_IP'])) { $ip=$ip.'_'.$_SERVER['HTTP_CLIENT_IP']; }
259 return $ip;
260 }
261
262 /**
263 * Load user session.
264 *
265 * @param ConfigManager $conf Configuration Manager instance.
266 */
267 function fillSessionInfo($conf)
268 {
269 $_SESSION['uid'] = sha1(uniqid('',true).'_'.mt_rand()); // Generate unique random number (different than phpsessionid)
270 $_SESSION['ip']=allIPs(); // We store IP address(es) of the client to make sure session is not hijacked.
271 $_SESSION['username']= $conf->get('credentials.login');
272 $_SESSION['expires_on']=time()+INACTIVITY_TIMEOUT; // Set session expiration.
273 }
274
275 /**
276 * Check that user/password is correct.
277 *
278 * @param string $login Username
279 * @param string $password User password
280 * @param ConfigManager $conf Configuration Manager instance.
281 *
282 * @return bool: authentication successful or not.
283 */
284 function check_auth($login, $password, $conf)
285 {
286 $hash = sha1($password . $login . $conf->get('credentials.salt'));
287 if ($login == $conf->get('credentials.login') && $hash == $conf->get('credentials.hash'))
288 { // Login/password is correct.
289 fillSessionInfo($conf);
290 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Login successful');
291 return true;
292 }
293 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Login failed for user '.$login);
294 return false;
295 }
296
297 // Returns true if the user is logged in.
298 function isLoggedIn()
299 {
300 global $userIsLoggedIn;
301 return $userIsLoggedIn;
302 }
303
304 // Force logout.
305 function logout() {
306 if (isset($_SESSION)) {
307 unset($_SESSION['uid']);
308 unset($_SESSION['ip']);
309 unset($_SESSION['username']);
310 unset($_SESSION['privateonly']);
311 }
312 setcookie('shaarli_staySignedIn', FALSE, 0, WEB_PATH);
313 }
314
315
316 // ------------------------------------------------------------------------------------------
317 // Brute force protection system
318 // Several consecutive failed logins will ban the IP address for 30 minutes.
319 if (!is_file($conf->get('resource.ban_file', 'data/ipbans.php'))) {
320 // FIXME! globals
321 file_put_contents(
322 $conf->get('resource.ban_file', 'data/ipbans.php'),
323 "<?php\n\$GLOBALS['IPBANS']=".var_export(array('FAILURES'=>array(),'BANS'=>array()),true).";\n?>"
324 );
325 }
326 include $conf->get('resource.ban_file', 'data/ipbans.php');
327 /**
328 * Signal a failed login. Will ban the IP if too many failures:
329 *
330 * @param ConfigManager $conf Configuration Manager instance.
331 */
332 function ban_loginFailed($conf)
333 {
334 $ip = $_SERVER['REMOTE_ADDR'];
335 $trusted = $conf->get('security.trusted_proxies', array());
336 if (in_array($ip, $trusted)) {
337 $ip = getIpAddressFromProxy($_SERVER, $trusted);
338 if (!$ip) {
339 return;
340 }
341 }
342 $gb = $GLOBALS['IPBANS'];
343 if (! isset($gb['FAILURES'][$ip])) {
344 $gb['FAILURES'][$ip]=0;
345 }
346 $gb['FAILURES'][$ip]++;
347 if ($gb['FAILURES'][$ip] > ($conf->get('security.ban_after') - 1))
348 {
349 $gb['BANS'][$ip] = time() + $conf->get('security.ban_after', 1800);
350 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'IP address banned from login');
351 }
352 $GLOBALS['IPBANS'] = $gb;
353 file_put_contents(
354 $conf->get('resource.ban_file', 'data/ipbans.php'),
355 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
356 );
357 }
358
359 /**
360 * Signals a successful login. Resets failed login counter.
361 *
362 * @param ConfigManager $conf Configuration Manager instance.
363 */
364 function ban_loginOk($conf)
365 {
366 $ip = $_SERVER['REMOTE_ADDR'];
367 $gb = $GLOBALS['IPBANS'];
368 unset($gb['FAILURES'][$ip]); unset($gb['BANS'][$ip]);
369 $GLOBALS['IPBANS'] = $gb;
370 file_put_contents(
371 $conf->get('resource.ban_file', 'data/ipbans.php'),
372 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
373 );
374 }
375
376 /**
377 * Checks if the user CAN login. If 'true', the user can try to login.
378 *
379 * @param ConfigManager $conf Configuration Manager instance.
380 *
381 * @return bool: true if the user is allowed to login.
382 */
383 function ban_canLogin($conf)
384 {
385 $ip=$_SERVER["REMOTE_ADDR"]; $gb=$GLOBALS['IPBANS'];
386 if (isset($gb['BANS'][$ip]))
387 {
388 // User is banned. Check if the ban has expired:
389 if ($gb['BANS'][$ip]<=time())
390 { // Ban expired, user can try to login again.
391 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Ban lifted.');
392 unset($gb['FAILURES'][$ip]); unset($gb['BANS'][$ip]);
393 file_put_contents(
394 $conf->get('resource.ban_file', 'data/ipbans.php'),
395 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
396 );
397 return true; // Ban has expired, user can login.
398 }
399 return false; // User is banned.
400 }
401 return true; // User is not banned.
402 }
403
404 // ------------------------------------------------------------------------------------------
405 // Process login form: Check if login/password is correct.
406 if (isset($_POST['login']))
407 {
408 if (!ban_canLogin($conf)) die('I said: NO. You are banned for the moment. Go away.');
409 if (isset($_POST['password'])
410 && tokenOk($_POST['token'])
411 && (check_auth($_POST['login'], $_POST['password'], $conf))
412 ) { // Login/password is OK.
413 ban_loginOk($conf);
414 // If user wants to keep the session cookie even after the browser closes:
415 if (!empty($_POST['longlastingsession']))
416 {
417 setcookie('shaarli_staySignedIn', STAY_SIGNED_IN_TOKEN, time()+31536000, WEB_PATH);
418 $_SESSION['longlastingsession']=31536000; // (31536000 seconds = 1 year)
419 $_SESSION['expires_on']=time()+$_SESSION['longlastingsession']; // Set session expiration on server-side.
420
421 $cookiedir = ''; if(dirname($_SERVER['SCRIPT_NAME'])!='/') $cookiedir=dirname($_SERVER["SCRIPT_NAME"]).'/';
422 session_set_cookie_params($_SESSION['longlastingsession'],$cookiedir,$_SERVER['SERVER_NAME']); // Set session cookie expiration on client side
423 // Note: Never forget the trailing slash on the cookie path!
424 session_regenerate_id(true); // Send cookie with new expiration date to browser.
425 }
426 else // Standard session expiration (=when browser closes)
427 {
428 $cookiedir = ''; if(dirname($_SERVER['SCRIPT_NAME'])!='/') $cookiedir=dirname($_SERVER["SCRIPT_NAME"]).'/';
429 session_set_cookie_params(0,$cookiedir,$_SERVER['SERVER_NAME']); // 0 means "When browser closes"
430 session_regenerate_id(true);
431 }
432
433 // Optional redirect after login:
434 if (isset($_GET['post'])) {
435 $uri = '?post='. urlencode($_GET['post']);
436 foreach (array('description', 'source', 'title', 'tags') as $param) {
437 if (!empty($_GET[$param])) {
438 $uri .= '&'.$param.'='.urlencode($_GET[$param]);
439 }
440 }
441 header('Location: '. $uri);
442 exit;
443 }
444
445 if (isset($_GET['edit_link'])) {
446 header('Location: ?edit_link='. escape($_GET['edit_link']));
447 exit;
448 }
449
450 if (isset($_POST['returnurl'])) {
451 // Prevent loops over login screen.
452 if (strpos($_POST['returnurl'], 'do=login') === false) {
453 header('Location: '. generateLocation($_POST['returnurl'], $_SERVER['HTTP_HOST']));
454 exit;
455 }
456 }
457 header('Location: ?'); exit;
458 }
459 else
460 {
461 ban_loginFailed($conf);
462 $redir = '&username='. $_POST['login'];
463 if (isset($_GET['post'])) {
464 $redir .= '&post=' . urlencode($_GET['post']);
465 foreach (array('description', 'source', 'title', 'tags') as $param) {
466 if (!empty($_GET[$param])) {
467 $redir .= '&' . $param . '=' . urlencode($_GET[$param]);
468 }
469 }
470 }
471 echo '<script>alert("Wrong login/password.");document.location=\'?do=login'.$redir.'\';</script>'; // Redirect to login screen.
472 exit;
473 }
474 }
475
476 // ------------------------------------------------------------------------------------------
477 // Token management for XSRF protection
478 // Token should be used in any form which acts on data (create,update,delete,import...).
479 if (!isset($_SESSION['tokens'])) $_SESSION['tokens']=array(); // Token are attached to the session.
480
481 /**
482 * Returns a token.
483 *
484 * @param ConfigManager $conf Configuration Manager instance.
485 *
486 * @return string token.
487 */
488 function getToken($conf)
489 {
490 $rnd = sha1(uniqid('', true) .'_'. mt_rand() . $conf->get('credentials.salt')); // We generate a random string.
491 $_SESSION['tokens'][$rnd]=1; // Store it on the server side.
492 return $rnd;
493 }
494
495 // Tells if a token is OK. Using this function will destroy the token.
496 // true=token is OK.
497 function tokenOk($token)
498 {
499 if (isset($_SESSION['tokens'][$token]))
500 {
501 unset($_SESSION['tokens'][$token]); // Token is used: destroy it.
502 return true; // Token is OK.
503 }
504 return false; // Wrong token, or already used.
505 }
506
507 /**
508 * Daily RSS feed: 1 RSS entry per day giving all the links on that day.
509 * Gives the last 7 days (which have links).
510 * This RSS feed cannot be filtered.
511 *
512 * @param ConfigManager $conf Configuration Manager instance.
513 */
514 function showDailyRSS($conf) {
515 // Cache system
516 $query = $_SERVER['QUERY_STRING'];
517 $cache = new CachedPage(
518 $conf->get('config.PAGE_CACHE'),
519 page_url($_SERVER),
520 startsWith($query,'do=dailyrss') && !isLoggedIn()
521 );
522 $cached = $cache->cachedVersion();
523 if (!empty($cached)) {
524 echo $cached;
525 exit;
526 }
527
528 // If cached was not found (or not usable), then read the database and build the response:
529 // Read links from database (and filter private links if used it not logged in).
530 $LINKSDB = new LinkDB(
531 $conf->get('resource.datastore'),
532 isLoggedIn(),
533 $conf->get('privacy.hide_public_links'),
534 $conf->get('redirector.url'),
535 $conf->get('redirector.encode_url')
536 );
537
538 /* Some Shaarlies may have very few links, so we need to look
539 back in time until we have enough days ($nb_of_days).
540 */
541 $nb_of_days = 7; // We take 7 days.
542 $today = date('Ymd');
543 $days = array();
544
545 foreach ($LINKSDB as $link) {
546 $day = $link['created']->format('Ymd'); // Extract day (without time)
547 if (strcmp($day, $today) < 0) {
548 if (empty($days[$day])) {
549 $days[$day] = array();
550 }
551 $days[$day][] = $link;
552 }
553
554 if (count($days) > $nb_of_days) {
555 break; // Have we collected enough days?
556 }
557 }
558
559 // Build the RSS feed.
560 header('Content-Type: application/rss+xml; charset=utf-8');
561 $pageaddr = escape(index_url($_SERVER));
562 echo '<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">';
563 echo '<channel>';
564 echo '<title>Daily - '. $conf->get('general.title') . '</title>';
565 echo '<link>'. $pageaddr .'</link>';
566 echo '<description>Daily shared links</description>';
567 echo '<language>en-en</language>';
568 echo '<copyright>'. $pageaddr .'</copyright>'. PHP_EOL;
569
570 // For each day.
571 foreach ($days as $day => $links) {
572 $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000');
573 $absurl = escape(index_url($_SERVER).'?do=daily&day='.$day); // Absolute URL of the corresponding "Daily" page.
574
575 // We pre-format some fields for proper output.
576 foreach ($links as &$link) {
577 $link['formatedDescription'] = format_description($link['description'], $conf->get('redirector.url'));
578 $link['thumbnail'] = thumbnail($conf, $link['url']);
579 $link['timestamp'] = $link['created']->getTimestamp();
580 if (startsWith($link['url'], '?')) {
581 $link['url'] = index_url($_SERVER) . $link['url']; // make permalink URL absolute
582 }
583 }
584
585 // Then build the HTML for this day:
586 $tpl = new RainTPL;
587 $tpl->assign('title', $conf->get('general.title'));
588 $tpl->assign('daydate', $dayDate->getTimestamp());
589 $tpl->assign('absurl', $absurl);
590 $tpl->assign('links', $links);
591 $tpl->assign('rssdate', escape($dayDate->format(DateTime::RSS)));
592 $tpl->assign('hide_timestamps', $conf->get('privacy.hide_timestamps', false));
593 $html = $tpl->draw('dailyrss', true);
594
595 echo $html . PHP_EOL;
596 }
597 echo '</channel></rss><!-- Cached version of '. escape(page_url($_SERVER)) .' -->';
598
599 $cache->cache(ob_get_contents());
600 ob_end_flush();
601 exit;
602 }
603
604 /**
605 * Show the 'Daily' page.
606 *
607 * @param PageBuilder $pageBuilder Template engine wrapper.
608 * @param LinkDB $LINKSDB LinkDB instance.
609 * @param ConfigManager $conf Configuration Manager instance.
610 * @param PluginManager $pluginManager Plugin Manager instane.
611 */
612 function showDaily($pageBuilder, $LINKSDB, $conf, $pluginManager)
613 {
614 $day=date('Ymd',strtotime('-1 day')); // Yesterday, in format YYYYMMDD.
615 if (isset($_GET['day'])) $day=$_GET['day'];
616
617 $days = $LINKSDB->days();
618 $i = array_search($day,$days);
619 if ($i===false) { $i=count($days)-1; $day=$days[$i]; }
620 $previousday='';
621 $nextday='';
622 if ($i!==false)
623 {
624 if ($i>=1) $previousday=$days[$i-1];
625 if ($i<count($days)-1) $nextday=$days[$i+1];
626 }
627
628 try {
629 $linksToDisplay = $LINKSDB->filterDay($day);
630 } catch (Exception $exc) {
631 error_log($exc);
632 $linksToDisplay = array();
633 }
634
635 // We pre-format some fields for proper output.
636 foreach($linksToDisplay as $key=>$link)
637 {
638
639 $taglist = explode(' ',$link['tags']);
640 uasort($taglist, 'strcasecmp');
641 $linksToDisplay[$key]['taglist']=$taglist;
642 $linksToDisplay[$key]['formatedDescription'] = format_description($link['description'], $conf->get('redirector.url'));
643 $linksToDisplay[$key]['thumbnail'] = thumbnail($conf, $link['url']);
644 $linksToDisplay[$key]['timestamp'] = $link['created']->getTimestamp();
645 }
646
647 /* We need to spread the articles on 3 columns.
648 I did not want to use a JavaScript lib like http://masonry.desandro.com/
649 so I manually spread entries with a simple method: I roughly evaluate the
650 height of a div according to title and description length.
651 */
652 $columns=array(array(),array(),array()); // Entries to display, for each column.
653 $fill=array(0,0,0); // Rough estimate of columns fill.
654 foreach($linksToDisplay as $key=>$link)
655 {
656 // Roughly estimate length of entry (by counting characters)
657 // Title: 30 chars = 1 line. 1 line is 30 pixels height.
658 // Description: 836 characters gives roughly 342 pixel height.
659 // This is not perfect, but it's usually OK.
660 $length=strlen($link['title'])+(342*strlen($link['description']))/836;
661 if ($link['thumbnail']) $length +=100; // 1 thumbnails roughly takes 100 pixels height.
662 // Then put in column which is the less filled:
663 $smallest=min($fill); // find smallest value in array.
664 $index=array_search($smallest,$fill); // find index of this smallest value.
665 array_push($columns[$index],$link); // Put entry in this column.
666 $fill[$index]+=$length;
667 }
668
669 $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000');
670 $data = array(
671 'pagetitle' => $conf->get('general.title') .' - '. format_date($dayDate, false),
672 'linksToDisplay' => $linksToDisplay,
673 'cols' => $columns,
674 'day' => $dayDate->getTimestamp(),
675 'dayDate' => $dayDate,
676 'previousday' => $previousday,
677 'nextday' => $nextday,
678 );
679
680 $pluginManager->executeHooks('render_daily', $data, array('loggedin' => isLoggedIn()));
681
682 foreach ($data as $key => $value) {
683 $pageBuilder->assign($key, $value);
684 }
685
686 $pageBuilder->renderPage('daily');
687 exit;
688 }
689
690 /**
691 * Renders the linklist
692 *
693 * @param pageBuilder $PAGE pageBuilder instance.
694 * @param LinkDB $LINKSDB LinkDB instance.
695 * @param ConfigManager $conf Configuration Manager instance.
696 * @param PluginManager $pluginManager Plugin Manager instance.
697 */
698 function showLinkList($PAGE, $LINKSDB, $conf, $pluginManager) {
699 buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager); // Compute list of links to display
700 $PAGE->renderPage('linklist');
701 }
702
703 /**
704 * Render HTML page (according to URL parameters and user rights)
705 *
706 * @param ConfigManager $conf Configuration Manager instance.
707 * @param PluginManager $pluginManager Plugin Manager instance,
708 * @param LinkDB $LINKSDB
709 */
710 function renderPage($conf, $pluginManager, $LINKSDB, $history)
711 {
712 $updater = new Updater(
713 read_updates_file($conf->get('resource.updates')),
714 $LINKSDB,
715 $conf,
716 isLoggedIn()
717 );
718 try {
719 $newUpdates = $updater->update();
720 if (! empty($newUpdates)) {
721 write_updates_file(
722 $conf->get('resource.updates'),
723 $updater->getDoneUpdates()
724 );
725 }
726 }
727 catch(Exception $e) {
728 die($e->getMessage());
729 }
730
731 $PAGE = new PageBuilder($conf);
732 $PAGE->assign('linkcount', count($LINKSDB));
733 $PAGE->assign('privateLinkcount', count_private($LINKSDB));
734 $PAGE->assign('plugin_errors', $pluginManager->getErrors());
735
736 // Determine which page will be rendered.
737 $query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : '';
738 $targetPage = Router::findPage($query, $_GET, isLoggedIn());
739
740 // Call plugin hooks for header, footer and includes, specifying which page will be rendered.
741 // Then assign generated data to RainTPL.
742 $common_hooks = array(
743 'includes',
744 'header',
745 'footer',
746 );
747
748 foreach($common_hooks as $name) {
749 $plugin_data = array();
750 $pluginManager->executeHooks('render_' . $name, $plugin_data,
751 array(
752 'target' => $targetPage,
753 'loggedin' => isLoggedIn()
754 )
755 );
756 $PAGE->assign('plugins_' . $name, $plugin_data);
757 }
758
759 // -------- Display login form.
760 if ($targetPage == Router::$PAGE_LOGIN)
761 {
762 if ($conf->get('security.open_shaarli')) { header('Location: ?'); exit; } // No need to login for open Shaarli
763 if (isset($_GET['username'])) {
764 $PAGE->assign('username', escape($_GET['username']));
765 }
766 $PAGE->assign('returnurl',(isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']):''));
767 $PAGE->renderPage('loginform');
768 exit;
769 }
770 // -------- User wants to logout.
771 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=logout'))
772 {
773 invalidateCaches($conf->get('resource.page_cache'));
774 logout();
775 header('Location: ?');
776 exit;
777 }
778
779 // -------- Picture wall
780 if ($targetPage == Router::$PAGE_PICWALL)
781 {
782 // Optionally filter the results:
783 $links = $LINKSDB->filterSearch($_GET);
784 $linksToDisplay = array();
785
786 // Get only links which have a thumbnail.
787 foreach($links as $link)
788 {
789 $permalink='?'.$link['shorturl'];
790 $thumb=lazyThumbnail($conf, $link['url'],$permalink);
791 if ($thumb!='') // Only output links which have a thumbnail.
792 {
793 $link['thumbnail']=$thumb; // Thumbnail HTML code.
794 $linksToDisplay[]=$link; // Add to array.
795 }
796 }
797
798 $data = array(
799 'linksToDisplay' => $linksToDisplay,
800 );
801 $pluginManager->executeHooks('render_picwall', $data, array('loggedin' => isLoggedIn()));
802
803 foreach ($data as $key => $value) {
804 $PAGE->assign($key, $value);
805 }
806
807 $PAGE->renderPage('picwall');
808 exit;
809 }
810
811 // -------- Tag cloud
812 if ($targetPage == Router::$PAGE_TAGCLOUD)
813 {
814 $tags= $LINKSDB->allTags();
815
816 // We sort tags alphabetically, then choose a font size according to count.
817 // First, find max value.
818 $maxcount = 0;
819 foreach ($tags as $value) {
820 $maxcount = max($maxcount, $value);
821 }
822
823 // Sort tags alphabetically: case insensitive, support locale if available.
824 uksort($tags, function($a, $b) {
825 // Collator is part of PHP intl.
826 if (class_exists('Collator')) {
827 $c = new Collator(setlocale(LC_COLLATE, 0));
828 if (!intl_is_failure(intl_get_error_code())) {
829 return $c->compare($a, $b);
830 }
831 }
832 return strcasecmp($a, $b);
833 });
834
835 $tagList = array();
836 foreach($tags as $key => $value) {
837 // Tag font size scaling:
838 // default 15 and 30 logarithm bases affect scaling,
839 // 22 and 6 are arbitrary font sizes for max and min sizes.
840 $size = log($value, 15) / log($maxcount, 30) * 2.2 + 0.8;
841 $tagList[$key] = array(
842 'count' => $value,
843 'size' => number_format($size, 2, '.', ''),
844 );
845 }
846
847 $data = array(
848 'tags' => $tagList,
849 );
850 $pluginManager->executeHooks('render_tagcloud', $data, array('loggedin' => isLoggedIn()));
851
852 foreach ($data as $key => $value) {
853 $PAGE->assign($key, $value);
854 }
855
856 $PAGE->renderPage('tagcloud');
857 exit;
858 }
859
860 // Daily page.
861 if ($targetPage == Router::$PAGE_DAILY) {
862 showDaily($PAGE, $LINKSDB, $conf, $pluginManager);
863 }
864
865 // ATOM and RSS feed.
866 if ($targetPage == Router::$PAGE_FEED_ATOM || $targetPage == Router::$PAGE_FEED_RSS) {
867 $feedType = $targetPage == Router::$PAGE_FEED_RSS ? FeedBuilder::$FEED_RSS : FeedBuilder::$FEED_ATOM;
868 header('Content-Type: application/'. $feedType .'+xml; charset=utf-8');
869
870 // Cache system
871 $query = $_SERVER['QUERY_STRING'];
872 $cache = new CachedPage(
873 $conf->get('resource.page_cache'),
874 page_url($_SERVER),
875 startsWith($query,'do='. $targetPage) && !isLoggedIn()
876 );
877 $cached = $cache->cachedVersion();
878 if (!empty($cached)) {
879 echo $cached;
880 exit;
881 }
882
883 // Generate data.
884 $feedGenerator = new FeedBuilder($LINKSDB, $feedType, $_SERVER, $_GET, isLoggedIn());
885 $feedGenerator->setLocale(strtolower(setlocale(LC_COLLATE, 0)));
886 $feedGenerator->setHideDates($conf->get('privacy.hide_timestamps') && !isLoggedIn());
887 $feedGenerator->setUsePermalinks(isset($_GET['permalinks']) || !$conf->get('feed.rss_permalinks'));
888 $data = $feedGenerator->buildData();
889
890 // Process plugin hook.
891 $pluginManager->executeHooks('render_feed', $data, array(
892 'loggedin' => isLoggedIn(),
893 'target' => $targetPage,
894 ));
895
896 // Render the template.
897 $PAGE->assignAll($data);
898 $PAGE->renderPage('feed.'. $feedType);
899 $cache->cache(ob_get_contents());
900 ob_end_flush();
901 exit;
902 }
903
904 // Display opensearch plugin (XML)
905 if ($targetPage == Router::$PAGE_OPENSEARCH) {
906 header('Content-Type: application/xml; charset=utf-8');
907 $PAGE->assign('serverurl', index_url($_SERVER));
908 $PAGE->renderPage('opensearch');
909 exit;
910 }
911
912 // -------- User clicks on a tag in a link: The tag is added to the list of searched tags (searchtags=...)
913 if (isset($_GET['addtag']))
914 {
915 // Get previous URL (http_referer) and add the tag to the searchtags parameters in query.
916 if (empty($_SERVER['HTTP_REFERER'])) { header('Location: ?searchtags='.urlencode($_GET['addtag'])); exit; } // In case browser does not send HTTP_REFERER
917 parse_str(parse_url($_SERVER['HTTP_REFERER'],PHP_URL_QUERY), $params);
918
919 // Prevent redirection loop
920 if (isset($params['addtag'])) {
921 unset($params['addtag']);
922 }
923
924 // Check if this tag is already in the search query and ignore it if it is.
925 // Each tag is always separated by a space
926 if (isset($params['searchtags'])) {
927 $current_tags = explode(' ', $params['searchtags']);
928 } else {
929 $current_tags = array();
930 }
931 $addtag = true;
932 foreach ($current_tags as $value) {
933 if ($value === $_GET['addtag']) {
934 $addtag = false;
935 break;
936 }
937 }
938 // Append the tag if necessary
939 if (empty($params['searchtags'])) {
940 $params['searchtags'] = trim($_GET['addtag']);
941 }
942 else if ($addtag) {
943 $params['searchtags'] = trim($params['searchtags']).' '.trim($_GET['addtag']);
944 }
945
946 unset($params['page']); // We also remove page (keeping the same page has no sense, since the results are different)
947 header('Location: ?'.http_build_query($params));
948 exit;
949 }
950
951 // -------- User clicks on a tag in result count: Remove the tag from the list of searched tags (searchtags=...)
952 if (isset($_GET['removetag'])) {
953 // Get previous URL (http_referer) and remove the tag from the searchtags parameters in query.
954 if (empty($_SERVER['HTTP_REFERER'])) {
955 header('Location: ?');
956 exit;
957 }
958
959 // In case browser does not send HTTP_REFERER
960 parse_str(parse_url($_SERVER['HTTP_REFERER'], PHP_URL_QUERY), $params);
961
962 // Prevent redirection loop
963 if (isset($params['removetag'])) {
964 unset($params['removetag']);
965 }
966
967 if (isset($params['searchtags'])) {
968 $tags = explode(' ', $params['searchtags']);
969 // Remove value from array $tags.
970 $tags = array_diff($tags, array($_GET['removetag']));
971 $params['searchtags'] = implode(' ',$tags);
972
973 if (empty($params['searchtags'])) {
974 unset($params['searchtags']);
975 }
976
977 unset($params['page']); // We also remove page (keeping the same page has no sense, since the results are different)
978 }
979 header('Location: ?'.http_build_query($params));
980 exit;
981 }
982
983 // -------- User wants to change the number of links per page (linksperpage=...)
984 if (isset($_GET['linksperpage'])) {
985 if (is_numeric($_GET['linksperpage'])) {
986 $_SESSION['LINKS_PER_PAGE']=abs(intval($_GET['linksperpage']));
987 }
988
989 if (! empty($_SERVER['HTTP_REFERER'])) {
990 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('linksperpage'));
991 } else {
992 $location = '?';
993 }
994 header('Location: '. $location);
995 exit;
996 }
997
998 // -------- User wants to see only private links (toggle)
999 if (isset($_GET['privateonly'])) {
1000 if (empty($_SESSION['privateonly'])) {
1001 $_SESSION['privateonly'] = 1; // See only private links
1002 } else {
1003 unset($_SESSION['privateonly']); // See all links
1004 }
1005
1006 if (! empty($_SERVER['HTTP_REFERER'])) {
1007 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('privateonly'));
1008 } else {
1009 $location = '?';
1010 }
1011 header('Location: '. $location);
1012 exit;
1013 }
1014
1015 // -------- Handle other actions allowed for non-logged in users:
1016 if (!isLoggedIn())
1017 {
1018 // User tries to post new link but is not logged in:
1019 // Show login screen, then redirect to ?post=...
1020 if (isset($_GET['post']))
1021 {
1022 header( // Redirect to login page, then back to post link.
1023 'Location: ?do=login&post='.urlencode($_GET['post']).
1024 (!empty($_GET['title'])?'&title='.urlencode($_GET['title']):'').
1025 (!empty($_GET['description'])?'&description='.urlencode($_GET['description']):'').
1026 (!empty($_GET['tags'])?'&tags='.urlencode($_GET['tags']):'').
1027 (!empty($_GET['source'])?'&source='.urlencode($_GET['source']):'')
1028 );
1029 exit;
1030 }
1031
1032 showLinkList($PAGE, $LINKSDB, $conf, $pluginManager);
1033 if (isset($_GET['edit_link'])) {
1034 header('Location: ?do=login&edit_link='. escape($_GET['edit_link']));
1035 exit;
1036 }
1037
1038 exit; // Never remove this one! All operations below are reserved for logged in user.
1039 }
1040
1041 // -------- All other functions are reserved for the registered user:
1042
1043 // -------- Display the Tools menu if requested (import/export/bookmarklet...)
1044 if ($targetPage == Router::$PAGE_TOOLS)
1045 {
1046 $data = array(
1047 'pageabsaddr' => index_url($_SERVER),
1048 'sslenabled' => !empty($_SERVER['HTTPS'])
1049 );
1050 $pluginManager->executeHooks('render_tools', $data);
1051
1052 foreach ($data as $key => $value) {
1053 $PAGE->assign($key, $value);
1054 }
1055
1056 $PAGE->renderPage('tools');
1057 exit;
1058 }
1059
1060 // -------- User wants to change his/her password.
1061 if ($targetPage == Router::$PAGE_CHANGEPASSWORD)
1062 {
1063 if ($conf->get('security.open_shaarli')) {
1064 die('You are not supposed to change a password on an Open Shaarli.');
1065 }
1066
1067 if (!empty($_POST['setpassword']) && !empty($_POST['oldpassword']))
1068 {
1069 if (!tokenOk($_POST['token'])) die('Wrong token.'); // Go away!
1070
1071 // Make sure old password is correct.
1072 $oldhash = sha1($_POST['oldpassword'].$conf->get('credentials.login').$conf->get('credentials.salt'));
1073 if ($oldhash!= $conf->get('credentials.hash')) { echo '<script>alert("The old password is not correct.");document.location=\'?do=changepasswd\';</script>'; exit; }
1074 // Save new password
1075 // Salt renders rainbow-tables attacks useless.
1076 $conf->set('credentials.salt', sha1(uniqid('', true) .'_'. mt_rand()));
1077 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $conf->get('credentials.login') . $conf->get('credentials.salt')));
1078 try {
1079 $conf->write(isLoggedIn());
1080 }
1081 catch(Exception $e) {
1082 error_log(
1083 'ERROR while writing config file after changing password.' . PHP_EOL .
1084 $e->getMessage()
1085 );
1086
1087 // TODO: do not handle exceptions/errors in JS.
1088 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do=tools\';</script>';
1089 exit;
1090 }
1091 echo '<script>alert("Your password has been changed.");document.location=\'?do=tools\';</script>';
1092 exit;
1093 }
1094 else // show the change password form.
1095 {
1096 $PAGE->renderPage('changepassword');
1097 exit;
1098 }
1099 }
1100
1101 // -------- User wants to change configuration
1102 if ($targetPage == Router::$PAGE_CONFIGURE)
1103 {
1104 if (!empty($_POST['title']) )
1105 {
1106 if (!tokenOk($_POST['token'])) {
1107 die('Wrong token.'); // Go away!
1108 }
1109 $tz = 'UTC';
1110 if (!empty($_POST['continent']) && !empty($_POST['city'])
1111 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1112 ) {
1113 $tz = $_POST['continent'] . '/' . $_POST['city'];
1114 }
1115 $conf->set('general.timezone', $tz);
1116 $conf->set('general.title', escape($_POST['title']));
1117 $conf->set('general.header_link', escape($_POST['titleLink']));
1118 $conf->set('resource.theme', escape($_POST['theme']));
1119 $conf->set('redirector.url', escape($_POST['redirector']));
1120 $conf->set('security.session_protection_disabled', !empty($_POST['disablesessionprotection']));
1121 $conf->set('privacy.default_private_links', !empty($_POST['privateLinkByDefault']));
1122 $conf->set('feed.rss_permalinks', !empty($_POST['enableRssPermalinks']));
1123 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
1124 $conf->set('privacy.hide_public_links', !empty($_POST['hidePublicLinks']));
1125 $conf->set('api.enabled', !empty($_POST['enableApi']));
1126 $conf->set('api.secret', escape($_POST['apiSecret']));
1127 try {
1128 $conf->write(isLoggedIn());
1129 $history->updateSettings();
1130 invalidateCaches($conf->get('resource.page_cache'));
1131 }
1132 catch(Exception $e) {
1133 error_log(
1134 'ERROR while writing config file after configuration update.' . PHP_EOL .
1135 $e->getMessage()
1136 );
1137
1138 // TODO: do not handle exceptions/errors in JS.
1139 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do=configure\';</script>';
1140 exit;
1141 }
1142 echo '<script>alert("Configuration was saved.");document.location=\'?do=configure\';</script>';
1143 exit;
1144 }
1145 else // Show the configuration form.
1146 {
1147 $PAGE->assign('title', $conf->get('general.title'));
1148 $PAGE->assign('theme', $conf->get('resource.theme'));
1149 $PAGE->assign('theme_available', ThemeUtils::getThemes($conf->get('resource.raintpl_tpl')));
1150 $PAGE->assign('redirector', $conf->get('redirector.url'));
1151 list($continents, $cities) = generateTimeZoneData(
1152 timezone_identifiers_list(),
1153 $conf->get('general.timezone')
1154 );
1155 $PAGE->assign('continents', $continents);
1156 $PAGE->assign('cities', $cities);
1157 $PAGE->assign('private_links_default', $conf->get('privacy.default_private_links', false));
1158 $PAGE->assign('session_protection_disabled', $conf->get('security.session_protection_disabled', false));
1159 $PAGE->assign('enable_rss_permalinks', $conf->get('feed.rss_permalinks', false));
1160 $PAGE->assign('enable_update_check', $conf->get('updates.check_updates', true));
1161 $PAGE->assign('hide_public_links', $conf->get('privacy.hide_public_links', false));
1162 $PAGE->assign('api_enabled', $conf->get('api.enabled', true));
1163 $PAGE->assign('api_secret', $conf->get('api.secret'));
1164 $PAGE->renderPage('configure');
1165 exit;
1166 }
1167 }
1168
1169 // -------- User wants to rename a tag or delete it
1170 if ($targetPage == Router::$PAGE_CHANGETAG)
1171 {
1172 if (empty($_POST['fromtag']) || (empty($_POST['totag']) && isset($_POST['renametag']))) {
1173 $PAGE->assign('tags', $LINKSDB->allTags());
1174 $PAGE->renderPage('changetag');
1175 exit;
1176 }
1177
1178 if (!tokenOk($_POST['token'])) {
1179 die('Wrong token.');
1180 }
1181
1182 // Delete a tag:
1183 if (isset($_POST['deletetag']) && !empty($_POST['fromtag'])) {
1184 $needle = trim($_POST['fromtag']);
1185 // True for case-sensitive tag search.
1186 $linksToAlter = $LINKSDB->filterSearch(array('searchtags' => $needle), true);
1187 foreach($linksToAlter as $key=>$value)
1188 {
1189 $tags = explode(' ',trim($value['tags']));
1190 unset($tags[array_search($needle,$tags)]); // Remove tag.
1191 $value['tags']=trim(implode(' ',$tags));
1192 $LINKSDB[$key]=$value;
1193 $history->updateLink($LINKSDB[$key]);
1194 }
1195 $LINKSDB->save($conf->get('resource.page_cache'));
1196 echo '<script>alert("Tag was removed from '.count($linksToAlter).' links.");document.location=\'?do=changetag\';</script>';
1197 exit;
1198 }
1199
1200 // Rename a tag:
1201 if (isset($_POST['renametag']) && !empty($_POST['fromtag']) && !empty($_POST['totag'])) {
1202 $needle = trim($_POST['fromtag']);
1203 // True for case-sensitive tag search.
1204 $linksToAlter = $LINKSDB->filterSearch(array('searchtags' => $needle), true);
1205 foreach($linksToAlter as $key=>$value) {
1206 $tags = preg_split('/\s+/', trim($value['tags']));
1207 // Replace tags value.
1208 $tags[array_search($needle, $tags)] = trim($_POST['totag']);
1209 $value['tags'] = implode(' ', array_unique($tags));
1210 $LINKSDB[$key] = $value;
1211 $history->updateLink($LINKSDB[$key]);
1212 }
1213 $LINKSDB->save($conf->get('resource.page_cache')); // Save to disk.
1214 echo '<script>alert("Tag was renamed in '.count($linksToAlter).' links.");document.location=\'?searchtags='.urlencode(escape($_POST['totag'])).'\';</script>';
1215 exit;
1216 }
1217 }
1218
1219 // -------- User wants to add a link without using the bookmarklet: Show form.
1220 if ($targetPage == Router::$PAGE_ADDLINK)
1221 {
1222 $PAGE->renderPage('addlink');
1223 exit;
1224 }
1225
1226 // -------- User clicked the "Save" button when editing a link: Save link to database.
1227 if (isset($_POST['save_edit']))
1228 {
1229 // Go away!
1230 if (! tokenOk($_POST['token'])) {
1231 die('Wrong token.');
1232 }
1233
1234 // lf_id should only be present if the link exists.
1235 $id = isset($_POST['lf_id']) ? intval(escape($_POST['lf_id'])) : $LINKSDB->getNextId();
1236 // Linkdate is kept here to:
1237 // - use the same permalink for notes as they're displayed when creating them
1238 // - let users hack creation date of their posts
1239 // See: https://github.com/shaarli/Shaarli/wiki/Datastore-hacks#changing-the-timestamp-for-a-link
1240 $linkdate = escape($_POST['lf_linkdate']);
1241 if (isset($LINKSDB[$id])) {
1242 // Edit
1243 $created = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $linkdate);
1244 $updated = new DateTime();
1245 $shortUrl = $LINKSDB[$id]['shorturl'];
1246 $new = false;
1247 } else {
1248 // New link
1249 $created = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $linkdate);
1250 $updated = null;
1251 $shortUrl = link_small_hash($created, $id);
1252 $new = true;
1253 }
1254
1255 // Remove multiple spaces.
1256 $tags = trim(preg_replace('/\s\s+/', ' ', $_POST['lf_tags']));
1257 // Remove first '-' char in tags.
1258 $tags = preg_replace('/(^| )\-/', '$1', $tags);
1259 // Remove duplicates.
1260 $tags = implode(' ', array_unique(explode(' ', $tags)));
1261
1262 $url = trim($_POST['lf_url']);
1263 if (! startsWith($url, 'http:') && ! startsWith($url, 'https:')
1264 && ! startsWith($url, 'ftp:') && ! startsWith($url, 'magnet:')
1265 && ! startsWith($url, '?') && ! startsWith($url, 'javascript:')
1266 ) {
1267 $url = 'http://' . $url;
1268 }
1269
1270 $link = array(
1271 'id' => $id,
1272 'title' => trim($_POST['lf_title']),
1273 'url' => $url,
1274 'description' => $_POST['lf_description'],
1275 'private' => (isset($_POST['lf_private']) ? 1 : 0),
1276 'created' => $created,
1277 'updated' => $updated,
1278 'tags' => str_replace(',', ' ', $tags),
1279 'shorturl' => $shortUrl,
1280 );
1281
1282 // If title is empty, use the URL as title.
1283 if ($link['title'] == '') {
1284 $link['title'] = $link['url'];
1285 }
1286
1287 $pluginManager->executeHooks('save_link', $link);
1288
1289 $LINKSDB[$id] = $link;
1290 $LINKSDB->save($conf->get('resource.page_cache'));
1291 if ($new) {
1292 $history->addLink($link);
1293 } else {
1294 $history->updateLink($link);
1295 }
1296
1297 // If we are called from the bookmarklet, we must close the popup:
1298 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
1299 echo '<script>self.close();</script>';
1300 exit;
1301 }
1302
1303 $returnurl = !empty($_POST['returnurl']) ? $_POST['returnurl'] : '?';
1304 $location = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
1305 // Scroll to the link which has been edited.
1306 $location .= '#' . $link['shorturl'];
1307 // After saving the link, redirect to the page the user was on.
1308 header('Location: '. $location);
1309 exit;
1310 }
1311
1312 // -------- User clicked the "Cancel" button when editing a link.
1313 if (isset($_POST['cancel_edit']))
1314 {
1315 $id = isset($_POST['lf_id']) ? (int) escape($_POST['lf_id']) : false;
1316 if (! isset($LINKSDB[$id])) {
1317 header('Location: ?');
1318 }
1319 // If we are called from the bookmarklet, we must close the popup:
1320 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) { echo '<script>self.close();</script>'; exit; }
1321 $link = $LINKSDB[$id];
1322 $returnurl = ( isset($_POST['returnurl']) ? $_POST['returnurl'] : '?' );
1323 // Scroll to the link which has been edited.
1324 $returnurl .= '#'. $link['shorturl'];
1325 $returnurl = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
1326 header('Location: '.$returnurl); // After canceling, redirect to the page the user was on.
1327 exit;
1328 }
1329
1330 // -------- User clicked the "Delete" button when editing a link: Delete link from database.
1331 if ($targetPage == Router::$PAGE_DELETELINK)
1332 {
1333 // We do not need to ask for confirmation:
1334 // - confirmation is handled by JavaScript
1335 // - we are protected from XSRF by the token.
1336
1337 if (! tokenOk($_GET['token'])) {
1338 die('Wrong token.');
1339 }
1340
1341 $id = intval(escape($_GET['lf_linkdate']));
1342 $link = $LINKSDB[$id];
1343 $pluginManager->executeHooks('delete_link', $link);
1344 unset($LINKSDB[$id]);
1345 $LINKSDB->save($conf->get('resource.page_cache')); // save to disk
1346 $history->deleteLink($link);
1347
1348 // If we are called from the bookmarklet, we must close the popup:
1349 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) { echo '<script>self.close();</script>'; exit; }
1350
1351 $location = '?';
1352 if (isset($_SERVER['HTTP_REFERER'])) {
1353 // Don't redirect to where we were previously if it was a permalink or an edit_link, because it would 404.
1354 $location = generateLocation(
1355 $_SERVER['HTTP_REFERER'],
1356 $_SERVER['HTTP_HOST'],
1357 ['delete_link', 'edit_link', $link['shorturl']]
1358 );
1359 }
1360
1361 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
1362 exit;
1363 }
1364
1365 // -------- User clicked the "EDIT" button on a link: Display link edit form.
1366 if (isset($_GET['edit_link']))
1367 {
1368 $id = (int) escape($_GET['edit_link']);
1369 $link = $LINKSDB[$id]; // Read database
1370 if (!$link) { header('Location: ?'); exit; } // Link not found in database.
1371 $link['linkdate'] = $link['created']->format(LinkDB::LINK_DATE_FORMAT);
1372 $data = array(
1373 'link' => $link,
1374 'link_is_new' => false,
1375 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
1376 'tags' => $LINKSDB->allTags(),
1377 );
1378 $pluginManager->executeHooks('render_editlink', $data);
1379
1380 foreach ($data as $key => $value) {
1381 $PAGE->assign($key, $value);
1382 }
1383
1384 $PAGE->renderPage('editlink');
1385 exit;
1386 }
1387
1388 // -------- User want to post a new link: Display link edit form.
1389 if (isset($_GET['post'])) {
1390 $url = cleanup_url($_GET['post']);
1391
1392 $link_is_new = false;
1393 // Check if URL is not already in database (in this case, we will edit the existing link)
1394 $link = $LINKSDB->getLinkFromUrl($url);
1395 if (! $link)
1396 {
1397 $link_is_new = true;
1398 $linkdate = strval(date(LinkDB::LINK_DATE_FORMAT));
1399 // Get title if it was provided in URL (by the bookmarklet).
1400 $title = empty($_GET['title']) ? '' : escape($_GET['title']);
1401 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that]
1402 $description = empty($_GET['description']) ? '' : escape($_GET['description']);
1403 $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']);
1404 $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0;
1405 // If this is an HTTP(S) link, we try go get the page to extract the title (otherwise we will to straight to the edit form.)
1406 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) {
1407 // Short timeout to keep the application responsive
1408 list($headers, $content) = get_http_response($url, 4);
1409 if (strpos($headers[0], '200 OK') !== false) {
1410 // Retrieve charset.
1411 $charset = get_charset($headers, $content);
1412 // Extract title.
1413 $title = html_extract_title($content);
1414 // Re-encode title in utf-8 if necessary.
1415 if (! empty($title) && strtolower($charset) != 'utf-8') {
1416 $title = mb_convert_encoding($title, 'utf-8', $charset);
1417 }
1418 }
1419 }
1420
1421 if ($url == '') {
1422 $url = '?' . smallHash($linkdate . $LINKSDB->getNextId());
1423 $title = 'Note: ';
1424 }
1425 $url = escape($url);
1426 $title = escape($title);
1427
1428 $link = array(
1429 'linkdate' => $linkdate,
1430 'title' => $title,
1431 'url' => $url,
1432 'description' => $description,
1433 'tags' => $tags,
1434 'private' => $private
1435 );
1436 } else {
1437 $link['linkdate'] = $link['created']->format(LinkDB::LINK_DATE_FORMAT);
1438 }
1439
1440 $data = array(
1441 'link' => $link,
1442 'link_is_new' => $link_is_new,
1443 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
1444 'source' => (isset($_GET['source']) ? $_GET['source'] : ''),
1445 'tags' => $LINKSDB->allTags(),
1446 'default_private_links' => $conf->get('privacy.default_private_links', false),
1447 );
1448 $pluginManager->executeHooks('render_editlink', $data);
1449
1450 foreach ($data as $key => $value) {
1451 $PAGE->assign($key, $value);
1452 }
1453
1454 $PAGE->renderPage('editlink');
1455 exit;
1456 }
1457
1458 if ($targetPage == Router::$PAGE_EXPORT) {
1459 // Export links as a Netscape Bookmarks file
1460
1461 if (empty($_GET['selection'])) {
1462 $PAGE->renderPage('export');
1463 exit;
1464 }
1465
1466 // export as bookmarks_(all|private|public)_YYYYmmdd_HHMMSS.html
1467 $selection = $_GET['selection'];
1468 if (isset($_GET['prepend_note_url'])) {
1469 $prependNoteUrl = $_GET['prepend_note_url'];
1470 } else {
1471 $prependNoteUrl = false;
1472 }
1473
1474 try {
1475 $PAGE->assign(
1476 'links',
1477 NetscapeBookmarkUtils::filterAndFormat(
1478 $LINKSDB,
1479 $selection,
1480 $prependNoteUrl,
1481 index_url($_SERVER)
1482 )
1483 );
1484 } catch (Exception $exc) {
1485 header('Content-Type: text/plain; charset=utf-8');
1486 echo $exc->getMessage();
1487 exit;
1488 }
1489 $now = new DateTime();
1490 header('Content-Type: text/html; charset=utf-8');
1491 header(
1492 'Content-disposition: attachment; filename=bookmarks_'
1493 .$selection.'_'.$now->format(LinkDB::LINK_DATE_FORMAT).'.html'
1494 );
1495 $PAGE->assign('date', $now->format(DateTime::RFC822));
1496 $PAGE->assign('eol', PHP_EOL);
1497 $PAGE->assign('selection', $selection);
1498 $PAGE->renderPage('export.bookmarks');
1499 exit;
1500 }
1501
1502 if ($targetPage == Router::$PAGE_IMPORT) {
1503 // Upload a Netscape bookmark dump to import its contents
1504
1505 if (! isset($_POST['token']) || ! isset($_FILES['filetoupload'])) {
1506 // Show import dialog
1507 $PAGE->assign(
1508 'maxfilesize',
1509 get_max_upload_size(
1510 ini_get('post_max_size'),
1511 ini_get('upload_max_filesize'),
1512 false
1513 )
1514 );
1515 $PAGE->assign(
1516 'maxfilesizeHuman',
1517 get_max_upload_size(
1518 ini_get('post_max_size'),
1519 ini_get('upload_max_filesize'),
1520 true
1521 )
1522 );
1523 $PAGE->renderPage('import');
1524 exit;
1525 }
1526
1527 // Import bookmarks from an uploaded file
1528 if (isset($_FILES['filetoupload']['size']) && $_FILES['filetoupload']['size'] == 0) {
1529 // The file is too big or some form field may be missing.
1530 echo '<script>alert("The file you are trying to upload is probably'
1531 .' bigger than what this webserver can accept ('
1532 .get_max_upload_size(ini_get('post_max_size'), ini_get('upload_max_filesize')).').'
1533 .' Please upload in smaller chunks.");document.location=\'?do='
1534 .Router::$PAGE_IMPORT .'\';</script>';
1535 exit;
1536 }
1537 if (! tokenOk($_POST['token'])) {
1538 die('Wrong token.');
1539 }
1540 $status = NetscapeBookmarkUtils::import(
1541 $_POST,
1542 $_FILES,
1543 $LINKSDB,
1544 $conf,
1545 $history
1546 );
1547 echo '<script>alert("'.$status.'");document.location=\'?do='
1548 .Router::$PAGE_IMPORT .'\';</script>';
1549 exit;
1550 }
1551
1552 // Plugin administration page
1553 if ($targetPage == Router::$PAGE_PLUGINSADMIN) {
1554 $pluginMeta = $pluginManager->getPluginsMeta();
1555
1556 // Split plugins into 2 arrays: ordered enabled plugins and disabled.
1557 $enabledPlugins = array_filter($pluginMeta, function($v) { return $v['order'] !== false; });
1558 // Load parameters.
1559 $enabledPlugins = load_plugin_parameter_values($enabledPlugins, $conf->get('plugins', array()));
1560 uasort(
1561 $enabledPlugins,
1562 function($a, $b) { return $a['order'] - $b['order']; }
1563 );
1564 $disabledPlugins = array_filter($pluginMeta, function($v) { return $v['order'] === false; });
1565
1566 $PAGE->assign('enabledPlugins', $enabledPlugins);
1567 $PAGE->assign('disabledPlugins', $disabledPlugins);
1568 $PAGE->renderPage('pluginsadmin');
1569 exit;
1570 }
1571
1572 // Plugin administration form action
1573 if ($targetPage == Router::$PAGE_SAVE_PLUGINSADMIN) {
1574 try {
1575 if (isset($_POST['parameters_form'])) {
1576 unset($_POST['parameters_form']);
1577 foreach ($_POST as $param => $value) {
1578 $conf->set('plugins.'. $param, escape($value));
1579 }
1580 }
1581 else {
1582 $conf->set('general.enabled_plugins', save_plugin_config($_POST));
1583 }
1584 $conf->write(isLoggedIn());
1585 $history->updateSettings();
1586 }
1587 catch (Exception $e) {
1588 error_log(
1589 'ERROR while saving plugin configuration:.' . PHP_EOL .
1590 $e->getMessage()
1591 );
1592
1593 // TODO: do not handle exceptions/errors in JS.
1594 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do='. Router::$PAGE_PLUGINSADMIN .'\';</script>';
1595 exit;
1596 }
1597 header('Location: ?do='. Router::$PAGE_PLUGINSADMIN);
1598 exit;
1599 }
1600
1601 // -------- Otherwise, simply display search form and links:
1602 showLinkList($PAGE, $LINKSDB, $conf, $pluginManager);
1603 exit;
1604 }
1605
1606 /**
1607 * Template for the list of links (<div id="linklist">)
1608 * This function fills all the necessary fields in the $PAGE for the template 'linklist.html'
1609 *
1610 * @param pageBuilder $PAGE pageBuilder instance.
1611 * @param LinkDB $LINKSDB LinkDB instance.
1612 * @param ConfigManager $conf Configuration Manager instance.
1613 * @param PluginManager $pluginManager Plugin Manager instance.
1614 */
1615 function buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager)
1616 {
1617 // Used in templates
1618 $searchtags = !empty($_GET['searchtags']) ? escape(normalize_spaces($_GET['searchtags'])) : '';
1619 $searchterm = !empty($_GET['searchterm']) ? escape(normalize_spaces($_GET['searchterm'])) : '';
1620
1621 // Smallhash filter
1622 if (! empty($_SERVER['QUERY_STRING'])
1623 && preg_match('/^[a-zA-Z0-9-_@]{6}($|&|#)/', $_SERVER['QUERY_STRING'])) {
1624 try {
1625 $linksToDisplay = $LINKSDB->filterHash($_SERVER['QUERY_STRING']);
1626 } catch (LinkNotFoundException $e) {
1627 $PAGE->render404($e->getMessage());
1628 exit;
1629 }
1630 } else {
1631 // Filter links according search parameters.
1632 $visibility = ! empty($_SESSION['privateonly']) ? 'private' : 'all';
1633 $linksToDisplay = $LINKSDB->filterSearch($_GET, false, $visibility);
1634 }
1635
1636 // ---- Handle paging.
1637 $keys = array();
1638 foreach ($linksToDisplay as $key => $value) {
1639 $keys[] = $key;
1640 }
1641
1642
1643
1644 // Select articles according to paging.
1645 $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']);
1646 $pagecount = $pagecount == 0 ? 1 : $pagecount;
1647 $page= empty($_GET['page']) ? 1 : intval($_GET['page']);
1648 $page = $page < 1 ? 1 : $page;
1649 $page = $page > $pagecount ? $pagecount : $page;
1650 // Start index.
1651 $i = ($page-1) * $_SESSION['LINKS_PER_PAGE'];
1652 $end = $i + $_SESSION['LINKS_PER_PAGE'];
1653 $linkDisp = array();
1654 while ($i<$end && $i<count($keys))
1655 {
1656 $link = $linksToDisplay[$keys[$i]];
1657 $link['description'] = format_description($link['description'], $conf->get('redirector.url'));
1658 $classLi = ($i % 2) != 0 ? '' : 'publicLinkHightLight';
1659 $link['class'] = $link['private'] == 0 ? $classLi : 'private';
1660 $link['timestamp'] = $link['created']->getTimestamp();
1661 if (! empty($link['updated'])) {
1662 $link['updated_timestamp'] = $link['updated']->getTimestamp();
1663 } else {
1664 $link['updated_timestamp'] = '';
1665 }
1666 $taglist = preg_split('/\s+/', $link['tags'], -1, PREG_SPLIT_NO_EMPTY);
1667 uasort($taglist, 'strcasecmp');
1668 $link['taglist'] = $taglist;
1669 // Check for both signs of a note: starting with ? and 7 chars long.
1670 if ($link['url'][0] === '?' &&
1671 strlen($link['url']) === 7) {
1672 $link['url'] = index_url($_SERVER) . $link['url'];
1673 }
1674
1675 $linkDisp[$keys[$i]] = $link;
1676 $i++;
1677 }
1678
1679 // Compute paging navigation
1680 $searchtagsUrl = empty($searchtags) ? '' : '&searchtags=' . urlencode($searchtags);
1681 $searchtermUrl = empty($searchterm) ? '' : '&searchterm=' . urlencode($searchterm);
1682 $previous_page_url = '';
1683 if ($i != count($keys)) {
1684 $previous_page_url = '?page=' . ($page+1) . $searchtermUrl . $searchtagsUrl;
1685 }
1686 $next_page_url='';
1687 if ($page>1) {
1688 $next_page_url = '?page=' . ($page-1) . $searchtermUrl . $searchtagsUrl;
1689 }
1690
1691 // Fill all template fields.
1692 $data = array(
1693 'previous_page_url' => $previous_page_url,
1694 'next_page_url' => $next_page_url,
1695 'page_current' => $page,
1696 'page_max' => $pagecount,
1697 'result_count' => count($linksToDisplay),
1698 'search_term' => $searchterm,
1699 'search_tags' => $searchtags,
1700 'visibility' => ! empty($_SESSION['privateonly']) ? 'private' : '',
1701 'redirector' => $conf->get('redirector.url'), // Optional redirector URL.
1702 'links' => $linkDisp,
1703 'tags' => $LINKSDB->allTags(),
1704 );
1705
1706 // If there is only a single link, we change on-the-fly the title of the page.
1707 if (count($linksToDisplay) == 1) {
1708 $data['pagetitle'] = $linksToDisplay[$keys[0]]['title'] .' - '. $conf->get('general.title');
1709 }
1710
1711 $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => isLoggedIn()));
1712
1713 foreach ($data as $key => $value) {
1714 $PAGE->assign($key, $value);
1715 }
1716
1717 return;
1718 }
1719
1720 /**
1721 * Compute the thumbnail for a link.
1722 *
1723 * With a link to the original URL.
1724 * Understands various services (youtube.com...)
1725 * Input: $url = URL for which the thumbnail must be found.
1726 * $href = if provided, this URL will be followed instead of $url
1727 * Returns an associative array with thumbnail attributes (src,href,width,height,style,alt)
1728 * Some of them may be missing.
1729 * Return an empty array if no thumbnail available.
1730 *
1731 * @param ConfigManager $conf Configuration Manager instance.
1732 * @param string $url
1733 * @param string|bool $href
1734 *
1735 * @return array
1736 */
1737 function computeThumbnail($conf, $url, $href = false)
1738 {
1739 if (!$conf->get('thumbnail.enable_thumbnails')) return array();
1740 if ($href==false) $href=$url;
1741
1742 // For most hosts, the URL of the thumbnail can be easily deduced from the URL of the link.
1743 // (e.g. http://www.youtube.com/watch?v=spVypYk4kto ---> http://img.youtube.com/vi/spVypYk4kto/default.jpg )
1744 // ^^^^^^^^^^^ ^^^^^^^^^^^
1745 $domain = parse_url($url,PHP_URL_HOST);
1746 if ($domain=='youtube.com' || $domain=='www.youtube.com')
1747 {
1748 parse_str(parse_url($url,PHP_URL_QUERY), $params); // Extract video ID and get thumbnail
1749 if (!empty($params['v'])) return array('src'=>'https://img.youtube.com/vi/'.$params['v'].'/default.jpg',
1750 'href'=>$href,'width'=>'120','height'=>'90','alt'=>'YouTube thumbnail');
1751 }
1752 if ($domain=='youtu.be') // Youtube short links
1753 {
1754 $path = parse_url($url,PHP_URL_PATH);
1755 return array('src'=>'https://img.youtube.com/vi'.$path.'/default.jpg',
1756 'href'=>$href,'width'=>'120','height'=>'90','alt'=>'YouTube thumbnail');
1757 }
1758 if ($domain=='pix.toile-libre.org') // pix.toile-libre.org image hosting
1759 {
1760 parse_str(parse_url($url,PHP_URL_QUERY), $params); // Extract image filename.
1761 if (!empty($params) && !empty($params['img'])) return array('src'=>'http://pix.toile-libre.org/upload/thumb/'.urlencode($params['img']),
1762 'href'=>$href,'style'=>'max-width:120px; max-height:150px','alt'=>'pix.toile-libre.org thumbnail');
1763 }
1764
1765 if ($domain=='imgur.com')
1766 {
1767 $path = parse_url($url,PHP_URL_PATH);
1768 if (startsWith($path,'/a/')) return array(); // Thumbnails for albums are not available.
1769 if (startsWith($path,'/r/')) return array('src'=>'https://i.imgur.com/'.basename($path).'s.jpg',
1770 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1771 if (startsWith($path,'/gallery/')) return array('src'=>'https://i.imgur.com'.substr($path,8).'s.jpg',
1772 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1773
1774 if (substr_count($path,'/')==1) return array('src'=>'https://i.imgur.com/'.substr($path,1).'s.jpg',
1775 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1776 }
1777 if ($domain=='i.imgur.com')
1778 {
1779 $pi = pathinfo(parse_url($url,PHP_URL_PATH));
1780 if (!empty($pi['filename'])) return array('src'=>'https://i.imgur.com/'.$pi['filename'].'s.jpg',
1781 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1782 }
1783 if ($domain=='dailymotion.com' || $domain=='www.dailymotion.com')
1784 {
1785 if (strpos($url,'dailymotion.com/video/')!==false)
1786 {
1787 $thumburl=str_replace('dailymotion.com/video/','dailymotion.com/thumbnail/video/',$url);
1788 return array('src'=>$thumburl,
1789 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'DailyMotion thumbnail');
1790 }
1791 }
1792 if (endsWith($domain,'.imageshack.us'))
1793 {
1794 $ext=strtolower(pathinfo($url,PATHINFO_EXTENSION));
1795 if ($ext=='jpg' || $ext=='jpeg' || $ext=='png' || $ext=='gif')
1796 {
1797 $thumburl = substr($url,0,strlen($url)-strlen($ext)).'th.'.$ext;
1798 return array('src'=>$thumburl,
1799 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'imageshack.us thumbnail');
1800 }
1801 }
1802
1803 // Some other hosts are SLOW AS HELL and usually require an extra HTTP request to get the thumbnail URL.
1804 // So we deport the thumbnail generation in order not to slow down page generation
1805 // (and we also cache the thumbnail)
1806
1807 if (! $conf->get('thumbnail.enable_localcache')) return array(); // If local cache is disabled, no thumbnails for services which require the use a local cache.
1808
1809 if ($domain=='flickr.com' || endsWith($domain,'.flickr.com')
1810 || $domain=='vimeo.com'
1811 || $domain=='ted.com' || endsWith($domain,'.ted.com')
1812 || $domain=='xkcd.com' || endsWith($domain,'.xkcd.com')
1813 )
1814 {
1815 if ($domain=='vimeo.com')
1816 { // Make sure this vimeo URL points to a video (/xxx... where xxx is numeric)
1817 $path = parse_url($url,PHP_URL_PATH);
1818 if (!preg_match('!/\d+.+?!',$path)) return array(); // This is not a single video URL.
1819 }
1820 if ($domain=='xkcd.com' || endsWith($domain,'.xkcd.com'))
1821 { // Make sure this URL points to a single comic (/xxx... where xxx is numeric)
1822 $path = parse_url($url,PHP_URL_PATH);
1823 if (!preg_match('!/\d+.+?!',$path)) return array();
1824 }
1825 if ($domain=='ted.com' || endsWith($domain,'.ted.com'))
1826 { // Make sure this TED URL points to a video (/talks/...)
1827 $path = parse_url($url,PHP_URL_PATH);
1828 if ("/talks/" !== substr($path,0,7)) return array(); // This is not a single video URL.
1829 }
1830 $sign = hash_hmac('sha256', $url, $conf->get('credentials.salt')); // We use the salt to sign data (it's random, secret, and specific to each installation)
1831 return array('src'=>index_url($_SERVER).'?do=genthumbnail&hmac='.$sign.'&url='.urlencode($url),
1832 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'thumbnail');
1833 }
1834
1835 // For all other, we try to make a thumbnail of links ending with .jpg/jpeg/png/gif
1836 // Technically speaking, we should download ALL links and check their Content-Type to see if they are images.
1837 // But using the extension will do.
1838 $ext=strtolower(pathinfo($url,PATHINFO_EXTENSION));
1839 if ($ext=='jpg' || $ext=='jpeg' || $ext=='png' || $ext=='gif')
1840 {
1841 $sign = hash_hmac('sha256', $url, $conf->get('credentials.salt')); // We use the salt to sign data (it's random, secret, and specific to each installation)
1842 return array('src'=>index_url($_SERVER).'?do=genthumbnail&hmac='.$sign.'&url='.urlencode($url),
1843 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'thumbnail');
1844 }
1845 return array(); // No thumbnail.
1846
1847 }
1848
1849
1850 // Returns the HTML code to display a thumbnail for a link
1851 // with a link to the original URL.
1852 // Understands various services (youtube.com...)
1853 // Input: $url = URL for which the thumbnail must be found.
1854 // $href = if provided, this URL will be followed instead of $url
1855 // Returns '' if no thumbnail available.
1856 function thumbnail($url,$href=false)
1857 {
1858 // FIXME!
1859 global $conf;
1860 $t = computeThumbnail($conf, $url,$href);
1861 if (count($t)==0) return ''; // Empty array = no thumbnail for this URL.
1862
1863 $html='<a href="'.escape($t['href']).'"><img src="'.escape($t['src']).'"';
1864 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1865 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1866 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1867 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
1868 $html.='></a>';
1869 return $html;
1870 }
1871
1872 // Returns the HTML code to display a thumbnail for a link
1873 // for the picture wall (using lazy image loading)
1874 // Understands various services (youtube.com...)
1875 // Input: $url = URL for which the thumbnail must be found.
1876 // $href = if provided, this URL will be followed instead of $url
1877 // Returns '' if no thumbnail available.
1878 function lazyThumbnail($conf, $url,$href=false)
1879 {
1880 // FIXME!
1881 global $conf;
1882 $t = computeThumbnail($conf, $url,$href);
1883 if (count($t)==0) return ''; // Empty array = no thumbnail for this URL.
1884
1885 $html='<a href="'.escape($t['href']).'">';
1886
1887 // Lazy image
1888 $html.='<img class="b-lazy" src="#" data-src="'.escape($t['src']).'"';
1889
1890 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1891 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1892 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1893 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
1894 $html.='>';
1895
1896 // No-JavaScript fallback.
1897 $html.='<noscript><img src="'.escape($t['src']).'"';
1898 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1899 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1900 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1901 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
1902 $html.='></noscript></a>';
1903
1904 return $html;
1905 }
1906
1907
1908 /**
1909 * Installation
1910 * This function should NEVER be called if the file data/config.php exists.
1911 *
1912 * @param ConfigManager $conf Configuration Manager instance.
1913 */
1914 function install($conf)
1915 {
1916 // On free.fr host, make sure the /sessions directory exists, otherwise login will not work.
1917 if (endsWith($_SERVER['HTTP_HOST'],'.free.fr') && !is_dir($_SERVER['DOCUMENT_ROOT'].'/sessions')) mkdir($_SERVER['DOCUMENT_ROOT'].'/sessions',0705);
1918
1919
1920 // This part makes sure sessions works correctly.
1921 // (Because on some hosts, session.save_path may not be set correctly,
1922 // or we may not have write access to it.)
1923 if (isset($_GET['test_session']) && ( !isset($_SESSION) || !isset($_SESSION['session_tested']) || $_SESSION['session_tested']!='Working'))
1924 { // Step 2: Check if data in session is correct.
1925 echo '<pre>Sessions do not seem to work correctly on your server.<br>';
1926 echo 'Make sure the variable session.save_path is set correctly in your php config, and that you have write access to it.<br>';
1927 echo 'It currently points to '.session_save_path().'<br>';
1928 echo 'Check that the hostname used to access Shaarli contains a dot. On some browsers, accessing your server via a hostname like \'localhost\' or any custom hostname without a dot causes cookie storage to fail. We recommend accessing your server via it\'s IP address or Fully Qualified Domain Name.<br>';
1929 echo '<br><a href="?">Click to try again.</a></pre>';
1930 die;
1931 }
1932 if (!isset($_SESSION['session_tested']))
1933 { // Step 1 : Try to store data in session and reload page.
1934 $_SESSION['session_tested'] = 'Working'; // Try to set a variable in session.
1935 header('Location: '.index_url($_SERVER).'?test_session'); // Redirect to check stored data.
1936 }
1937 if (isset($_GET['test_session']))
1938 { // Step 3: Sessions are OK. Remove test parameter from URL.
1939 header('Location: '.index_url($_SERVER));
1940 }
1941
1942
1943 if (!empty($_POST['setlogin']) && !empty($_POST['setpassword']))
1944 {
1945 $tz = 'UTC';
1946 if (!empty($_POST['continent']) && !empty($_POST['city'])
1947 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1948 ) {
1949 $tz = $_POST['continent'].'/'.$_POST['city'];
1950 }
1951 $conf->set('general.timezone', $tz);
1952 $login = $_POST['setlogin'];
1953 $conf->set('credentials.login', $login);
1954 $salt = sha1(uniqid('', true) .'_'. mt_rand());
1955 $conf->set('credentials.salt', $salt);
1956 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $login . $salt));
1957 if (!empty($_POST['title'])) {
1958 $conf->set('general.title', escape($_POST['title']));
1959 } else {
1960 $conf->set('general.title', 'Shared links on '.escape(index_url($_SERVER)));
1961 }
1962 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
1963 $conf->set('api.enabled', !empty($_POST['enableApi']));
1964 $conf->set(
1965 'api.secret',
1966 generate_api_secret(
1967 $conf->get('credentials.login'),
1968 $conf->get('credentials.salt')
1969 )
1970 );
1971 try {
1972 // Everything is ok, let's create config file.
1973 $conf->write(isLoggedIn());
1974 }
1975 catch(Exception $e) {
1976 error_log(
1977 'ERROR while writing config file after installation.' . PHP_EOL .
1978 $e->getMessage()
1979 );
1980
1981 // TODO: do not handle exceptions/errors in JS.
1982 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?\';</script>';
1983 exit;
1984 }
1985 echo '<script>alert("Shaarli is now configured. Please enter your login/password and start shaaring your links!");document.location=\'?do=login\';</script>';
1986 exit;
1987 }
1988
1989 $PAGE = new PageBuilder($conf);
1990 list($continents, $cities) = generateTimeZoneData(timezone_identifiers_list(), date_default_timezone_get());
1991 $PAGE->assign('continents', $continents);
1992 $PAGE->assign('cities', $cities);
1993 $PAGE->renderPage('install');
1994 exit;
1995 }
1996
1997 /**
1998 * Because some f*cking services like flickr require an extra HTTP request to get the thumbnail URL,
1999 * I have deported the thumbnail URL code generation here, otherwise this would slow down page generation.
2000 * The following function takes the URL a link (e.g. a flickr page) and return the proper thumbnail.
2001 * This function is called by passing the URL:
2002 * http://mywebsite.com/shaarli/?do=genthumbnail&hmac=[HMAC]&url=[URL]
2003 * [URL] is the URL of the link (e.g. a flickr page)
2004 * [HMAC] is the signature for the [URL] (so that these URL cannot be forged).
2005 * The function below will fetch the image from the webservice and store it in the cache.
2006 *
2007 * @param ConfigManager $conf Configuration Manager instance,
2008 */
2009 function genThumbnail($conf)
2010 {
2011 // Make sure the parameters in the URL were generated by us.
2012 $sign = hash_hmac('sha256', $_GET['url'], $conf->get('credentials.salt'));
2013 if ($sign!=$_GET['hmac']) die('Naughty boy!');
2014
2015 $cacheDir = $conf->get('resource.thumbnails_cache', 'cache');
2016 // Let's see if we don't already have the image for this URL in the cache.
2017 $thumbname=hash('sha1',$_GET['url']).'.jpg';
2018 if (is_file($cacheDir .'/'. $thumbname))
2019 { // We have the thumbnail, just serve it:
2020 header('Content-Type: image/jpeg');
2021 echo file_get_contents($cacheDir .'/'. $thumbname);
2022 return;
2023 }
2024 // We may also serve a blank image (if service did not respond)
2025 $blankname=hash('sha1',$_GET['url']).'.gif';
2026 if (is_file($cacheDir .'/'. $blankname))
2027 {
2028 header('Content-Type: image/gif');
2029 echo file_get_contents($cacheDir .'/'. $blankname);
2030 return;
2031 }
2032
2033 // Otherwise, generate the thumbnail.
2034 $url = $_GET['url'];
2035 $domain = parse_url($url,PHP_URL_HOST);
2036
2037 if ($domain=='flickr.com' || endsWith($domain,'.flickr.com'))
2038 {
2039 // Crude replacement to handle new flickr domain policy (They prefer www. now)
2040 $url = str_replace('http://flickr.com/','http://www.flickr.com/',$url);
2041
2042 // Is this a link to an image, or to a flickr page ?
2043 $imageurl='';
2044 if (endsWith(parse_url($url, PHP_URL_PATH), '.jpg'))
2045 { // This is a direct link to an image. e.g. http://farm1.staticflickr.com/5/5921913_ac83ed27bd_o.jpg
2046 preg_match('!(http://farm\d+\.staticflickr\.com/\d+/\d+_\w+_)\w.jpg!',$url,$matches);
2047 if (!empty($matches[1])) $imageurl=$matches[1].'m.jpg';
2048 }
2049 else // This is a flickr page (html)
2050 {
2051 // Get the flickr html page.
2052 list($headers, $content) = get_http_response($url, 20);
2053 if (strpos($headers[0], '200 OK') !== false)
2054 {
2055 // flickr now nicely provides the URL of the thumbnail in each flickr page.
2056 preg_match('!<link rel=\"image_src\" href=\"(.+?)\"!', $content, $matches);
2057 if (!empty($matches[1])) $imageurl=$matches[1];
2058
2059 // In albums (and some other pages), the link rel="image_src" is not provided,
2060 // but flickr provides:
2061 // <meta property="og:image" content="http://farm4.staticflickr.com/3398/3239339068_25d13535ff_z.jpg" />
2062 if ($imageurl=='')
2063 {
2064 preg_match('!<meta property=\"og:image\" content=\"(.+?)\"!', $content, $matches);
2065 if (!empty($matches[1])) $imageurl=$matches[1];
2066 }
2067 }
2068 }
2069
2070 if ($imageurl!='')
2071 { // Let's download the image.
2072 // Image is 240x120, so 10 seconds to download should be enough.
2073 list($headers, $content) = get_http_response($imageurl, 10);
2074 if (strpos($headers[0], '200 OK') !== false) {
2075 // Save image to cache.
2076 file_put_contents($cacheDir .'/'. $thumbname, $content);
2077 header('Content-Type: image/jpeg');
2078 echo $content;
2079 return;
2080 }
2081 }
2082 }
2083
2084 elseif ($domain=='vimeo.com' )
2085 {
2086 // This is more complex: we have to perform a HTTP request, then parse the result.
2087 // Maybe we should deport this to JavaScript ? Example: http://stackoverflow.com/questions/1361149/get-img-thumbnails-from-vimeo/4285098#4285098
2088 $vid = substr(parse_url($url,PHP_URL_PATH),1);
2089 list($headers, $content) = get_http_response('https://vimeo.com/api/v2/video/'.escape($vid).'.php', 5);
2090 if (strpos($headers[0], '200 OK') !== false) {
2091 $t = unserialize($content);
2092 $imageurl = $t[0]['thumbnail_medium'];
2093 // Then we download the image and serve it to our client.
2094 list($headers, $content) = get_http_response($imageurl, 10);
2095 if (strpos($headers[0], '200 OK') !== false) {
2096 // Save image to cache.
2097 file_put_contents($cacheDir .'/'. $thumbname, $content);
2098 header('Content-Type: image/jpeg');
2099 echo $content;
2100 return;
2101 }
2102 }
2103 }
2104
2105 elseif ($domain=='ted.com' || endsWith($domain,'.ted.com'))
2106 {
2107 // The thumbnail for TED talks is located in the <link rel="image_src" [...]> tag on that page
2108 // http://www.ted.com/talks/mikko_hypponen_fighting_viruses_defending_the_net.html
2109 // <link rel="image_src" href="http://images.ted.com/images/ted/28bced335898ba54d4441809c5b1112ffaf36781_389x292.jpg" />
2110 list($headers, $content) = get_http_response($url, 5);
2111 if (strpos($headers[0], '200 OK') !== false) {
2112 // Extract the link to the thumbnail
2113 preg_match('!link rel="image_src" href="(http://images.ted.com/images/ted/.+_\d+x\d+\.jpg)"!', $content, $matches);
2114 if (!empty($matches[1]))
2115 { // Let's download the image.
2116 $imageurl=$matches[1];
2117 // No control on image size, so wait long enough
2118 list($headers, $content) = get_http_response($imageurl, 20);
2119 if (strpos($headers[0], '200 OK') !== false) {
2120 $filepath = $cacheDir .'/'. $thumbname;
2121 file_put_contents($filepath, $content); // Save image to cache.
2122 if (resizeImage($filepath))
2123 {
2124 header('Content-Type: image/jpeg');
2125 echo file_get_contents($filepath);
2126 return;
2127 }
2128 }
2129 }
2130 }
2131 }
2132
2133 elseif ($domain=='xkcd.com' || endsWith($domain,'.xkcd.com'))
2134 {
2135 // There is no thumbnail available for xkcd comics, so download the whole image and resize it.
2136 // http://xkcd.com/327/
2137 // <img src="http://imgs.xkcd.com/comics/exploits_of_a_mom.png" title="<BLABLA>" alt="<BLABLA>" />
2138 list($headers, $content) = get_http_response($url, 5);
2139 if (strpos($headers[0], '200 OK') !== false) {
2140 // Extract the link to the thumbnail
2141 preg_match('!<img src="(http://imgs.xkcd.com/comics/.*)" title="[^s]!', $content, $matches);
2142 if (!empty($matches[1]))
2143 { // Let's download the image.
2144 $imageurl=$matches[1];
2145 // No control on image size, so wait long enough
2146 list($headers, $content) = get_http_response($imageurl, 20);
2147 if (strpos($headers[0], '200 OK') !== false) {
2148 $filepath = $cacheDir.'/'.$thumbname;
2149 // Save image to cache.
2150 file_put_contents($filepath, $content);
2151 if (resizeImage($filepath))
2152 {
2153 header('Content-Type: image/jpeg');
2154 echo file_get_contents($filepath);
2155 return;
2156 }
2157 }
2158 }
2159 }
2160 }
2161
2162 else
2163 {
2164 // For all other domains, we try to download the image and make a thumbnail.
2165 // We allow 30 seconds max to download (and downloads are limited to 4 Mb)
2166 list($headers, $content) = get_http_response($url, 30);
2167 if (strpos($headers[0], '200 OK') !== false) {
2168 $filepath = $cacheDir .'/'.$thumbname;
2169 // Save image to cache.
2170 file_put_contents($filepath, $content);
2171 if (resizeImage($filepath))
2172 {
2173 header('Content-Type: image/jpeg');
2174 echo file_get_contents($filepath);
2175 return;
2176 }
2177 }
2178 }
2179
2180
2181 // Otherwise, return an empty image (8x8 transparent gif)
2182 $blankgif = base64_decode('R0lGODlhCAAIAIAAAP///////yH5BAEKAAEALAAAAAAIAAgAAAIHjI+py+1dAAA7');
2183 // Also put something in cache so that this URL is not requested twice.
2184 file_put_contents($cacheDir .'/'. $blankname, $blankgif);
2185 header('Content-Type: image/gif');
2186 echo $blankgif;
2187 }
2188
2189 // Make a thumbnail of the image (to width: 120 pixels)
2190 // Returns true if success, false otherwise.
2191 function resizeImage($filepath)
2192 {
2193 if (!function_exists('imagecreatefromjpeg')) return false; // GD not present: no thumbnail possible.
2194
2195 // Trick: some stupid people rename GIF as JPEG... or else.
2196 // So we really try to open each image type whatever the extension is.
2197 $header=file_get_contents($filepath,false,NULL,0,256); // Read first 256 bytes and try to sniff file type.
2198 $im=false;
2199 $i=strpos($header,'GIF8'); if (($i!==false) && ($i==0)) $im = imagecreatefromgif($filepath); // Well this is crude, but it should be enough.
2200 $i=strpos($header,'PNG'); if (($i!==false) && ($i==1)) $im = imagecreatefrompng($filepath);
2201 $i=strpos($header,'JFIF'); if ($i!==false) $im = imagecreatefromjpeg($filepath);
2202 if (!$im) return false; // Unable to open image (corrupted or not an image)
2203 $w = imagesx($im);
2204 $h = imagesy($im);
2205 $ystart = 0; $yheight=$h;
2206 if ($h>$w) { $ystart= ($h/2)-($w/2); $yheight=$w/2; }
2207 $nw = 120; // Desired width
2208 $nh = min(floor(($h*$nw)/$w),120); // Compute new width/height, but maximum 120 pixels height.
2209 // Resize image:
2210 $im2 = imagecreatetruecolor($nw,$nh);
2211 imagecopyresampled($im2, $im, 0, 0, 0, $ystart, $nw, $nh, $w, $yheight);
2212 imageinterlace($im2,true); // For progressive JPEG.
2213 $tempname=$filepath.'_TEMP.jpg';
2214 imagejpeg($im2, $tempname, 90);
2215 imagedestroy($im);
2216 imagedestroy($im2);
2217 unlink($filepath);
2218 rename($tempname,$filepath); // Overwrite original picture with thumbnail.
2219 return true;
2220 }
2221
2222 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=genthumbnail')) { genThumbnail($conf); exit; } // Thumbnail generation/cache does not need the link database.
2223 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=dailyrss')) { showDailyRSS($conf); exit; }
2224 if (!isset($_SESSION['LINKS_PER_PAGE'])) {
2225 $_SESSION['LINKS_PER_PAGE'] = $conf->get('general.links_per_page', 20);
2226 }
2227
2228 $linkDb = new LinkDB(
2229 $conf->get('resource.datastore'),
2230 isLoggedIn(),
2231 $conf->get('privacy.hide_public_links'),
2232 $conf->get('redirector.url'),
2233 $conf->get('redirector.encode_url')
2234 );
2235
2236 try {
2237 $history = new History($conf->get('resource.history'));
2238 } catch(Exception $e) {
2239 die($e->getMessage());
2240 }
2241
2242 $container = new \Slim\Container();
2243 $container['conf'] = $conf;
2244 $container['plugins'] = $pluginManager;
2245 $container['history'] = $history;
2246 $app = new \Slim\App($container);
2247
2248 // REST API routes
2249 $app->group('/api/v1', function() {
2250 $this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo')->setName('getInfo');
2251 $this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks')->setName('getLinks');
2252 $this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink')->setName('getLink');
2253 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
2254 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
2255 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
2256 $this->get('/history', '\Shaarli\Api\Controllers\History:getHistory')->setName('getHistory');
2257 })->add('\Shaarli\Api\ApiMiddleware');
2258
2259 $response = $app->run(true);
2260 // Hack to make Slim and Shaarli router work together:
2261 // If a Slim route isn't found and NOT API call, we call renderPage().
2262 if ($response->getStatusCode() == 404 && strpos($_SERVER['REQUEST_URI'], '/api/v1') === false) {
2263 // We use UTF-8 for proper international characters handling.
2264 header('Content-Type: text/html; charset=utf-8');
2265 renderPage($conf, $pluginManager, $linkDb, $history);
2266 } else {
2267 $app->respond($response);
2268 }