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