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