]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - index.php
Merge pull request #939 from ArthurHoaro/hotfix/firefox-social-title
[github/shaarli/Shaarli.git] / index.php
CommitLineData
45034273 1<?php
49e2b35b 2/**
b786c883 3 * Shaarli - The personal, minimalist, super-fast, database free, bookmarking service.
49e2b35b
V
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 *
3947bbb0 14 * Requires: PHP 5.5.x
49e2b35b 15 */
afd7b77b
V
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
19if (date_default_timezone_get() == '') {
20 date_default_timezone_set('UTC');
21}
cb49ab94 22
28bb2b74
V
23/*
24 * PHP configuration
25 */
28bb2b74 26
ae00595b 27// http://server.com/x/shaarli --> /shaarli/
684e662a 28define('WEB_PATH', substr($_SERVER['REQUEST_URI'], 0, 1+strrpos($_SERVER['REQUEST_URI'], '/', 0)));
45034273 29
28bb2b74
V
30// High execution time in case of problematic imports/exports.
31ini_set('max_input_time','60');
32
33// Try to set max upload file size and read
34ini_set('memory_limit', '128M');
45034273
SS
35ini_set('post_max_size', '16M');
36ini_set('upload_max_filesize', '16M');
45034273 37
28bb2b74
V
38// See all error except warnings
39error_reporting(E_ALL^E_WARNING);
40// See all errors (for debugging only)
41//error_reporting(-1);
42
50c9a12e 43
a973afea 44// 3rd-party libraries
52831753
V
45if (! 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"
cc8f572b
WE
51 ."- https://shaarli.readthedocs.io/en/master/Server-requirements/\n"
52 ."- https://shaarli.readthedocs.io/en/master/Download-and-Installation/";
52831753
V
53 exit;
54}
a973afea
V
55require_once 'inc/rain.tpl.class.php';
56require_once __DIR__ . '/vendor/autoload.php';
57
ca74886f 58// Shaarli library
2e28269b 59require_once 'application/ApplicationUtils.php';
01e48f26
V
60require_once 'application/Cache.php';
61require_once 'application/CachedPage.php';
e6cd773f 62require_once 'application/config/ConfigPlugin.php';
82e36802 63require_once 'application/FeedBuilder.php';
2e28269b 64require_once 'application/FileUtils.php';
4306b184 65require_once 'application/History.php';
451314eb 66require_once 'application/HttpUtils.php';
edf3ff5a 67require_once 'application/Languages.php';
ca74886f 68require_once 'application/LinkDB.php';
822bffce 69require_once 'application/LinkFilter.php';
1557cefb 70require_once 'application/LinkUtils.php';
cd5327be 71require_once 'application/NetscapeBookmarkUtils.php';
03eb19ac 72require_once 'application/PageBuilder.php';
d1e2f8e5 73require_once 'application/TimeZone.php';
d9d776af 74require_once 'application/Url.php';
ca74886f 75require_once 'application/Utils.php';
6fc14d53
A
76require_once 'application/PluginManager.php';
77require_once 'application/Router.php';
510377d2 78require_once 'application/Updater.php';
a0df0651 79use \Shaarli\ThemeUtils;
3c66e564 80use \Shaarli\Config\ConfigManager;
ca74886f 81
d1e2f8e5
V
82// Ensure the PHP version is supported
83try {
3947bbb0 84 ApplicationUtils::checkPHPVersion('5.5', PHP_VERSION);
2e28269b 85} catch(Exception $exc) {
d1e2f8e5 86 header('Content-Type: text/plain; charset=utf-8');
2e28269b 87 echo $exc->getMessage();
d1e2f8e5
V
88 exit;
89}
90
b786c883
A
91define('shaarli_version', ApplicationUtils::getVersion(__DIR__ .'/'. ApplicationUtils::$VERSION_FILE));
92
06b6660a
A
93// Force cookie path (but do not change lifetime)
94$cookie = session_get_cookie_params();
95$cookiedir = '';
96if (dirname($_SERVER['SCRIPT_NAME']) != '/') {
97 $cookiedir = dirname($_SERVER["SCRIPT_NAME"]).'/';
98}
99// Set default cookie expiration and path.
100session_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.
103define('INACTIVITY_TIMEOUT', 3600); // in seconds.
104// Use cookies to store session.
105ini_set('session.use_cookies', 1);
106// Force cookies for session (phpsessionID forbidden in URL).
107ini_set('session.use_only_cookies', 1);
108// Prevent PHP form using sessionID in URL if cookies are disabled.
109ini_set('session.use_trans_sid', false);
110
06b6660a
A
111session_name('shaarli');
112// Start session if needed (Some server auto-start sessions).
113if (session_id() == '') {
114 session_start();
115}
116
68bc2135
V
117// Regenerate session ID if invalid or not defined in cookie.
118if (isset($_COOKIE['shaarli']) && !is_session_id_valid($_COOKIE['shaarli'])) {
119 session_regenerate_id(true);
120 $_COOKIE['shaarli'] = session_id();
121}
122
278d9ee2 123$conf = new ConfigManager();
7f179985
A
124$conf->setEmpty('general.timezone', date_default_timezone_get());
125$conf->setEmpty('general.title', 'Shared links on '. escape(index_url($_SERVER)));
adc4aee8 126RainTPL::$tpl_dir = $conf->get('resource.raintpl_tpl').'/'.$conf->get('resource.theme').'/'; // template directory
894a3c4b 127RainTPL::$cache_dir = $conf->get('resource.raintpl_tmp'); // cache directory
45034273 128
278d9ee2 129$pluginManager = new PluginManager($conf);
da10377b 130$pluginManager->load($conf->get('general.enabled_plugins'));
6fc14d53 131
da10377b 132date_default_timezone_set($conf->get('general.timezone', 'UTC'));
d93d51b2 133
45034273
SS
134ob_start(); // Output buffering for the page cache.
135
45034273
SS
136// Prevent caching on client side or proxy: (yes, it's ugly)
137header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
138header("Cache-Control: no-store, no-cache, must-revalidate");
139header("Cache-Control: post-check=0, pre-check=0", false);
140header("Pragma: no-cache");
141
278d9ee2 142if (! is_file($conf->getConfigFileExt())) {
2e28269b 143 // Ensure Shaarli has proper access to its resources
278d9ee2 144 $errors = ApplicationUtils::checkResourcePermissions($conf);
2e28269b
V
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
278d9ee2 160 install($conf);
50c9a12e 161}
8a80e4fe 162
ae00595b 163// a token depending of deployment salt, user password, and the current ip
da10377b 164define('STAY_SIGNED_IN_TOKEN', sha1($conf->get('credentials.hash') . $_SERVER['REMOTE_ADDR'] . $conf->get('credentials.salt')));
8a80e4fe 165
408def1a
A
166// Sniff browser language and set date format accordingly.
167if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
168 autoLocale($_SERVER['HTTP_ACCEPT_LANGUAGE']);
169}
45034273 170
278d9ee2
A
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 */
178function setup_login_state($conf)
179{
a544b113
WE
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'])
ee6f4b64 198 || ($conf->get('security.session_protection_disabled') === false && $_SESSION['ip'] != allIPs())
684e662a 199 || time() >= $_SESSION['expires_on'])
a544b113
WE
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;
ff69d87e 216}
278d9ee2 217$userIsLoggedIn = setup_login_state($conf);
45034273 218
45034273
SS
219// ------------------------------------------------------------------------------------------
220// Session management
45034273
SS
221
222// Returns the IP address of the client (Used to prevent session cookie hijacking.)
223function allIPs()
224{
684e662a 225 $ip = $_SERVER['REMOTE_ADDR'];
45034273
SS
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
278d9ee2
A
232/**
233 * Load user session.
234 *
235 * @param ConfigManager $conf Configuration Manager instance.
236 */
237function fillSessionInfo($conf)
238{
a544b113
WE
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.
ae00595b
CH
243}
244
278d9ee2
A
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 */
254function check_auth($login, $password, $conf)
45034273 255{
da10377b
A
256 $hash = sha1($password . $login . $conf->get('credentials.salt'));
257 if ($login == $conf->get('credentials.login') && $hash == $conf->get('credentials.hash'))
45034273 258 { // Login/password is correct.
a544b113 259 fillSessionInfo($conf);
894a3c4b 260 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Login successful');
278d9ee2 261 return true;
45034273 262 }
894a3c4b 263 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Login failed for user '.$login);
278d9ee2 264 return false;
45034273
SS
265}
266
267// Returns true if the user is logged in.
268function isLoggedIn()
269{
ff69d87e
FE
270 global $userIsLoggedIn;
271 return $userIsLoggedIn;
45034273
SS
272}
273
274// Force logout.
ff69d87e
FE
275function logout() {
276 if (isset($_SESSION)) {
277 unset($_SESSION['uid']);
278 unset($_SESSION['ip']);
279 unset($_SESSION['username']);
280 unset($_SESSION['privateonly']);
f210d94f 281 unset($_SESSION['untaggedonly']);
ff69d87e
FE
282 }
283 setcookie('shaarli_staySignedIn', FALSE, 0, WEB_PATH);
ae00595b 284}
45034273
SS
285
286
287// ------------------------------------------------------------------------------------------
288// Brute force protection system
289// Several consecutive failed logins will ban the IP address for 30 minutes.
894a3c4b 290if (!is_file($conf->get('resource.ban_file', 'data/ipbans.php'))) {
684e662a
A
291 // FIXME! globals
292 file_put_contents(
894a3c4b 293 $conf->get('resource.ban_file', 'data/ipbans.php'),
684e662a
A
294 "<?php\n\$GLOBALS['IPBANS']=".var_export(array('FAILURES'=>array(),'BANS'=>array()),true).";\n?>"
295 );
296}
894a3c4b 297include $conf->get('resource.ban_file', 'data/ipbans.php');
278d9ee2
A
298/**
299 * Signal a failed login. Will ban the IP if too many failures:
300 *
301 * @param ConfigManager $conf Configuration Manager instance.
302 */
303function ban_loginFailed($conf)
45034273 304{
684e662a 305 $ip = $_SERVER['REMOTE_ADDR'];
50d17918
A
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 }
684e662a 313 $gb = $GLOBALS['IPBANS'];
50d17918
A
314 if (! isset($gb['FAILURES'][$ip])) {
315 $gb['FAILURES'][$ip]=0;
316 }
45034273 317 $gb['FAILURES'][$ip]++;
da10377b 318 if ($gb['FAILURES'][$ip] > ($conf->get('security.ban_after') - 1))
45034273 319 {
da10377b 320 $gb['BANS'][$ip] = time() + $conf->get('security.ban_after', 1800);
894a3c4b 321 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'IP address banned from login');
45034273
SS
322 }
323 $GLOBALS['IPBANS'] = $gb;
684e662a 324 file_put_contents(
894a3c4b 325 $conf->get('resource.ban_file', 'data/ipbans.php'),
684e662a
A
326 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
327 );
45034273
SS
328}
329
278d9ee2
A
330/**
331 * Signals a successful login. Resets failed login counter.
332 *
333 * @param ConfigManager $conf Configuration Manager instance.
334 */
335function ban_loginOk($conf)
45034273 336{
684e662a
A
337 $ip = $_SERVER['REMOTE_ADDR'];
338 $gb = $GLOBALS['IPBANS'];
45034273
SS
339 unset($gb['FAILURES'][$ip]); unset($gb['BANS'][$ip]);
340 $GLOBALS['IPBANS'] = $gb;
684e662a 341 file_put_contents(
894a3c4b 342 $conf->get('resource.ban_file', 'data/ipbans.php'),
684e662a
A
343 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
344 );
45034273
SS
345}
346
278d9ee2
A
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 */
354function ban_canLogin($conf)
45034273
SS
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.
894a3c4b 362 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Ban lifted.');
45034273 363 unset($gb['FAILURES'][$ip]); unset($gb['BANS'][$ip]);
684e662a 364 file_put_contents(
894a3c4b 365 $conf->get('resource.ban_file', 'data/ipbans.php'),
684e662a
A
366 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
367 );
45034273
SS
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.
377if (isset($_POST['login']))
378{
278d9ee2
A
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);
45034273
SS
385 // If user wants to keep the session cookie even after the browser closes:
386 if (!empty($_POST['longlastingsession']))
387 {
a544b113
WE
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.
2d9fab88
SS
392
393 $cookiedir = ''; if(dirname($_SERVER['SCRIPT_NAME'])!='/') $cookiedir=dirname($_SERVER["SCRIPT_NAME"]).'/';
2f32d074 394 session_set_cookie_params($_SESSION['longlastingsession'],$cookiedir,$_SERVER['SERVER_NAME']); // Set session cookie expiration on client side
ad6c27b7 395 // Note: Never forget the trailing slash on the cookie path!
45034273
SS
396 session_regenerate_id(true); // Send cookie with new expiration date to browser.
397 }
398 else // Standard session expiration (=when browser closes)
399 {
2d9fab88 400 $cookiedir = ''; if(dirname($_SERVER['SCRIPT_NAME'])!='/') $cookiedir=dirname($_SERVER["SCRIPT_NAME"]).'/';
2f32d074 401 session_set_cookie_params(0,$cookiedir,$_SERVER['SERVER_NAME']); // 0 means "When browser closes"
45034273
SS
402 session_regenerate_id(true);
403 }
f4c84ad7 404
45034273 405 // Optional redirect after login:
5fbabbb9
A
406 if (isset($_GET['post'])) {
407 $uri = '?post='. urlencode($_GET['post']);
0b04f797 408 foreach (array('description', 'source', 'title', 'tags') as $param) {
5fbabbb9
A
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) {
e15f08d7 425 header('Location: '. generateLocation($_POST['returnurl'], $_SERVER['HTTP_HOST']));
5fbabbb9
A
426 exit;
427 }
45034273
SS
428 }
429 header('Location: ?'); exit;
430 }
431 else
432 {
278d9ee2 433 ban_loginFailed($conf);
85c4bdc2 434 $redir = '&username='. $_POST['login'];
5fbabbb9 435 if (isset($_GET['post'])) {
85c4bdc2 436 $redir .= '&post=' . urlencode($_GET['post']);
0b04f797 437 foreach (array('description', 'source', 'title', 'tags') as $param) {
5fbabbb9
A
438 if (!empty($_GET[$param])) {
439 $redir .= '&' . $param . '=' . urlencode($_GET[$param]);
440 }
441 }
442 }
fe16b01e 443 echo '<script>alert("Wrong login/password.");document.location=\'?do=login'.$redir.'\';</script>'; // Redirect to login screen.
45034273
SS
444 exit;
445 }
446}
447
45034273
SS
448// ------------------------------------------------------------------------------------------
449// Token management for XSRF protection
450// Token should be used in any form which acts on data (create,update,delete,import...).
451if (!isset($_SESSION['tokens'])) $_SESSION['tokens']=array(); // Token are attached to the session.
452
278d9ee2
A
453/**
454 * Returns a token.
455 *
456 * @param ConfigManager $conf Configuration Manager instance.
457 *
458 * @return string token.
459 */
460function getToken($conf)
45034273 461{
da10377b 462 $rnd = sha1(uniqid('', true) .'_'. mt_rand() . $conf->get('credentials.salt')); // We generate a random string.
45034273
SS
463 $_SESSION['tokens'][$rnd]=1; // Store it on the server side.
464 return $rnd;
465}
466
ad6c27b7 467// Tells if a token is OK. Using this function will destroy the token.
468// true=token is OK.
45034273
SS
469function tokenOk($token)
470{
471 if (isset($_SESSION['tokens'][$token]))
472 {
473 unset($_SESSION['tokens'][$token]); // Token is used: destroy it.
ad6c27b7 474 return true; // Token is OK.
45034273
SS
475 }
476 return false; // Wrong token, or already used.
477}
478
278d9ee2
A
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 */
486function showDailyRSS($conf) {
45034273 487 // Cache system
5046bcb6 488 $query = $_SERVER['QUERY_STRING'];
01e48f26 489 $cache = new CachedPage(
684e662a 490 $conf->get('config.PAGE_CACHE'),
482d67bd 491 page_url($_SERVER),
01e48f26
V
492 startsWith($query,'do=dailyrss') && !isLoggedIn()
493 );
f3b8f9f0
A
494 $cached = $cache->cachedVersion();
495 if (!empty($cached)) {
496 echo $cached;
497 exit;
498 }
9f15ca9e 499
f3b8f9f0
A
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).
9f15ca9e 502 $LINKSDB = new LinkDB(
894a3c4b 503 $conf->get('resource.datastore'),
02ad8fb6 504 isLoggedIn(),
894a3c4b
A
505 $conf->get('privacy.hide_public_links'),
506 $conf->get('redirector.url'),
507 $conf->get('redirector.encode_url')
9f15ca9e 508 );
bb8f712d 509
45034273 510 /* Some Shaarlies may have very few links, so we need to look
01878a75 511 back in time until we have enough days ($nb_of_days).
45034273 512 */
f3b8f9f0 513 $nb_of_days = 7; // We take 7 days.
684e662a 514 $today = date('Ymd');
f3b8f9f0
A
515 $days = array();
516
d592daea
A
517 foreach ($LINKSDB as $link) {
518 $day = $link['created']->format('Ymd'); // Extract day (without time)
01878a75 519 if (strcmp($day, $today) < 0) {
f3b8f9f0
A
520 if (empty($days[$day])) {
521 $days[$day] = array();
522 }
d592daea 523 $days[$day][] = $link;
f3b8f9f0
A
524 }
525
526 if (count($days) > $nb_of_days) {
527 break; // Have we collected enough days?
45034273 528 }
45034273 529 }
bb8f712d 530
45034273
SS
531 // Build the RSS feed.
532 header('Content-Type: application/rss+xml; charset=utf-8');
482d67bd 533 $pageaddr = escape(index_url($_SERVER));
45034273 534 echo '<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">';
f3b8f9f0 535 echo '<channel>';
da10377b 536 echo '<title>Daily - '. $conf->get('general.title') . '</title>';
f3b8f9f0
A
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.
d592daea 543 foreach ($days as $day => $links) {
205a4277 544 $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000');
482d67bd 545 $absurl = escape(index_url($_SERVER).'?do=daily&day='.$day); // Absolute URL of the corresponding "Daily" page.
bb8f712d 546
45034273 547 // We pre-format some fields for proper output.
d592daea
A
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
f3b8f9f0 554 }
45034273 555 }
f3b8f9f0 556
45034273 557 // Then build the HTML for this day:
bb8f712d 558 $tpl = new RainTPL;
da10377b 559 $tpl->assign('title', $conf->get('general.title'));
205a4277 560 $tpl->assign('daydate', $dayDate->getTimestamp());
f3b8f9f0
A
561 $tpl->assign('absurl', $absurl);
562 $tpl->assign('links', $links);
205a4277 563 $tpl->assign('rssdate', escape($dayDate->format(DateTime::RSS)));
894a3c4b 564 $tpl->assign('hide_timestamps', $conf->get('privacy.hide_timestamps', false));
724f1e32 565 $html = $tpl->draw('dailyrss', true);
45034273 566
f3b8f9f0 567 echo $html . PHP_EOL;
bb8f712d 568 }
482d67bd 569 echo '</channel></rss><!-- Cached version of '. escape(page_url($_SERVER)) .' -->';
bb8f712d 570
45034273
SS
571 $cache->cache(ob_get_contents());
572 ob_end_flush();
573 exit;
574}
575
38603b24
A
576/**
577 * Show the 'Daily' page.
578 *
278d9ee2
A
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.
38603b24 583 */
278d9ee2 584function showDaily($pageBuilder, $LINKSDB, $conf, $pluginManager)
45034273 585{
5a0045be
WE
586 $day = date('Ymd', strtotime('-1 day')); // Yesterday, in format YYYYMMDD.
587 if (isset($_GET['day'])) {
588 $day = $_GET['day'];
589 }
bb8f712d 590
45034273 591 $days = $LINKSDB->days();
5a0045be
WE
592 $i = array_search($day, $days);
593 if ($i === false && count($days)) {
594 // no links for day, but at least one day with links
595 $i = count($days) - 1;
596 $day = $days[$i];
45034273 597 }
5a0045be
WE
598 $previousday = '';
599 $nextday = '';
45034273 600
5a0045be
WE
601 if ($i !== false) {
602 if ($i >= 1) {
603 $previousday=$days[$i - 1];
604 }
605 if ($i < count($days) - 1) {
606 $nextday = $days[$i + 1];
607 }
608 }
9186ab95 609 try {
528a6f8a 610 $linksToDisplay = $LINKSDB->filterDay($day);
9186ab95
V
611 } catch (Exception $exc) {
612 error_log($exc);
d1e2f8e5 613 $linksToDisplay = array();
9186ab95
V
614 }
615
45034273 616 // We pre-format some fields for proper output.
5a0045be 617 foreach($linksToDisplay as $key => $link) {
dd62b9ba
SS
618 $taglist = explode(' ',$link['tags']);
619 uasort($taglist, 'strcasecmp');
620 $linksToDisplay[$key]['taglist']=$taglist;
894a3c4b 621 $linksToDisplay[$key]['formatedDescription'] = format_description($link['description'], $conf->get('redirector.url'));
278d9ee2 622 $linksToDisplay[$key]['thumbnail'] = thumbnail($conf, $link['url']);
01878a75 623 $linksToDisplay[$key]['timestamp'] = $link['created']->getTimestamp();
45034273 624 }
bb8f712d 625
45034273 626 /* We need to spread the articles on 3 columns.
ad6c27b7 627 I did not want to use a JavaScript lib like http://masonry.desandro.com/
bb8f712d 628 so I manually spread entries with a simple method: I roughly evaluate the
45034273
SS
629 height of a div according to title and description length.
630 */
5a0045be
WE
631 $columns = array(array(), array(), array()); // Entries to display, for each column.
632 $fill = array(0, 0, 0); // Rough estimate of columns fill.
633 foreach($linksToDisplay as $key => $link) {
45034273
SS
634 // Roughly estimate length of entry (by counting characters)
635 // Title: 30 chars = 1 line. 1 line is 30 pixels height.
636 // Description: 836 characters gives roughly 342 pixel height.
ad6c27b7 637 // This is not perfect, but it's usually OK.
5a0045be
WE
638 $length = strlen($link['title']) + (342 * strlen($link['description'])) / 836;
639 if ($link['thumbnail']) {
640 $length += 100; // 1 thumbnails roughly takes 100 pixels height.
641 }
45034273 642 // Then put in column which is the less filled:
5a0045be
WE
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;
45034273 647 }
38603b24 648
205a4277 649 $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000');
6fc14d53 650 $data = array(
935222b8 651 'pagetitle' => $conf->get('general.title') .' - '. format_date($dayDate, false),
6fc14d53 652 'linksToDisplay' => $linksToDisplay,
6fc14d53 653 'cols' => $columns,
205a4277 654 'day' => $dayDate->getTimestamp(),
81bd104d 655 'dayDate' => $dayDate,
6fc14d53
A
656 'previousday' => $previousday,
657 'nextday' => $nextday,
658 );
278d9ee2 659
6fc14d53
A
660 $pluginManager->executeHooks('render_daily', $data, array('loggedin' => isLoggedIn()));
661
662 foreach ($data as $key => $value) {
38603b24 663 $pageBuilder->assign($key, $value);
6fc14d53
A
664 }
665
38603b24 666 $pageBuilder->renderPage('daily');
45034273
SS
667 exit;
668}
669
278d9ee2
A
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 */
678function showLinkList($PAGE, $LINKSDB, $conf, $pluginManager) {
679 buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager); // Compute list of links to display
6fc14d53
A
680 $PAGE->renderPage('linklist');
681}
682
278d9ee2
A
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,
18e67967 688 * @param LinkDB $LINKSDB
3b67b222 689 * @param History $history instance
278d9ee2 690 */
813849e5 691function renderPage($conf, $pluginManager, $LINKSDB, $history)
45034273 692{
510377d2 693 $updater = new Updater(
894a3c4b 694 read_updates_file($conf->get('resource.updates')),
510377d2 695 $LINKSDB,
278d9ee2 696 $conf,
510377d2
A
697 isLoggedIn()
698 );
699 try {
700 $newUpdates = $updater->update();
701 if (! empty($newUpdates)) {
702 write_updates_file(
894a3c4b 703 $conf->get('resource.updates'),
510377d2
A
704 $updater->getDoneUpdates()
705 );
706 }
707 }
708 catch(Exception $e) {
709 die($e->getMessage());
710 }
711
73c89626 712 $PAGE = new PageBuilder($conf, $LINKSDB);
141a86c5
A
713 $PAGE->assign('linkcount', count($LINKSDB));
714 $PAGE->assign('privateLinkcount', count_private($LINKSDB));
7fde6de1 715 $PAGE->assign('plugin_errors', $pluginManager->getErrors());
6fc14d53
A
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(
fea5db7a 724 'includes',
6fc14d53
A
725 'header',
726 'footer',
6fc14d53 727 );
278d9ee2 728
6fc14d53
A
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
45034273 740 // -------- Display login form.
6fc14d53 741 if ($targetPage == Router::$PAGE_LOGIN)
45034273 742 {
894a3c4b 743 if ($conf->get('security.open_shaarli')) { header('Location: ?'); exit; } // No need to login for open Shaarli
85c4bdc2
A
744 if (isset($_GET['username'])) {
745 $PAGE->assign('username', escape($_GET['username']));
746 }
5f85fcd8 747 $PAGE->assign('returnurl',(isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']):''));
2e07e775
WE
748 // add default state of the 'remember me' checkbox
749 $PAGE->assign('remember_user_default', $conf->get('privacy.remember_user_default'));
45034273
SS
750 $PAGE->renderPage('loginform');
751 exit;
752 }
753 // -------- User wants to logout.
5046bcb6 754 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=logout'))
45034273 755 {
894a3c4b 756 invalidateCaches($conf->get('resource.page_cache'));
45034273
SS
757 logout();
758 header('Location: ?');
759 exit;
760 }
761
762 // -------- Picture wall
6fc14d53 763 if ($targetPage == Router::$PAGE_PICWALL)
45034273 764 {
ad6c27b7 765 // Optionally filter the results:
528a6f8a 766 $links = $LINKSDB->filterSearch($_GET);
822bffce 767 $linksToDisplay = array();
45034273
SS
768
769 // Get only links which have a thumbnail.
770 foreach($links as $link)
771 {
d592daea 772 $permalink='?'.$link['shorturl'];
278d9ee2 773 $thumb=lazyThumbnail($conf, $link['url'],$permalink);
45034273
SS
774 if ($thumb!='') // Only output links which have a thumbnail.
775 {
776 $link['thumbnail']=$thumb; // Thumbnail HTML code.
45034273
SS
777 $linksToDisplay[]=$link; // Add to array.
778 }
779 }
f3db3774 780
6fc14d53 781 $data = array(
6fc14d53
A
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
45034273
SS
790 $PAGE->renderPage('picwall');
791 exit;
792 }
793
794 // -------- Tag cloud
6fc14d53 795 if ($targetPage == Router::$PAGE_TAGCLOUD)
45034273 796 {
6ccd0b21 797 $visibility = ! empty($_SESSION['privateonly']) ? 'private' : 'all';
aa4797ba 798 $filteringTags = isset($_GET['searchtags']) ? explode(' ', $_GET['searchtags']) : [];
6ccd0b21 799 $tags = $LINKSDB->linksCountPerTag($filteringTags, $visibility);
a037ac69 800
45034273
SS
801 // We sort tags alphabetically, then choose a font size according to count.
802 // First, find max value.
f1e96a06
A
803 $maxcount = 0;
804 foreach ($tags as $value) {
805 $maxcount = max($maxcount, $value);
806 }
807
f32ec5fb 808 alphabetical_sort($tags, false, true);
f1e96a06 809
b0128609
A
810 $tagList = array();
811 foreach($tags as $key => $value) {
49cc8e5d
LC
812 if (in_array($key, $filteringTags)) {
813 continue;
814 }
b0128609
A
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 );
45034273 823 }
6fc14d53
A
824
825 $data = array(
6ccd0b21 826 'search_tags' => implode(' ', $filteringTags),
6fc14d53
A
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
5893529c 835 $PAGE->renderPage('tag.cloud');
bb8f712d 836 exit;
45034273
SS
837 }
838
49cc8e5d 839 // -------- Tag list
aa4797ba
A
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);
49cc8e5d
LC
845 foreach ($filteringTags as $tag) {
846 if (array_key_exists($tag, $tags)) {
847 unset($tags[$tag]);
848 }
849 }
aa4797ba
A
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
38603b24
A
869 // Daily page.
870 if ($targetPage == Router::$PAGE_DAILY) {
278d9ee2 871 showDaily($PAGE, $LINKSDB, $conf, $pluginManager);
38603b24
A
872 }
873
82e36802
A
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(
894a3c4b 882 $conf->get('resource.page_cache'),
82e36802
A
883 page_url($_SERVER),
884 startsWith($query,'do='. $targetPage) && !isLoggedIn()
885 );
886 $cached = $cache->cachedVersion();
5f143b72 887 if (!empty($cached)) {
82e36802
A
888 echo $cached;
889 exit;
890 }
69c474b9 891
82e36802
A
892 // Generate data.
893 $feedGenerator = new FeedBuilder($LINKSDB, $feedType, $_SERVER, $_GET, isLoggedIn());
894 $feedGenerator->setLocale(strtolower(setlocale(LC_COLLATE, 0)));
894a3c4b
A
895 $feedGenerator->setHideDates($conf->get('privacy.hide_timestamps') && !isLoggedIn());
896 $feedGenerator->setUsePermalinks(isset($_GET['permalinks']) || !$conf->get('feed.rss_permalinks'));
82e36802
A
897 $data = $feedGenerator->buildData();
898
899 // Process plugin hook.
82e36802
A
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;
e67712ba
A
911 }
912
18e67967 913 // Display opensearch plugin (XML)
8f8113b9
A
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
45034273
SS
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);
732e683b 927
775803a0
A
928 // Prevent redirection loop
929 if (isset($params['addtag'])) {
930 unset($params['addtag']);
931 }
932
732e683b
FE
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
6ac95d9c
A
935 if (isset($params['searchtags'])) {
936 $current_tags = explode(' ', $params['searchtags']);
937 } else {
938 $current_tags = array();
939 }
732e683b
FE
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
45034273
SS
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=...)
775803a0 961 if (isset($_GET['removetag'])) {
45034273 962 // Get previous URL (http_referer) and remove the tag from the searchtags parameters in query.
775803a0
A
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'])) {
822bffce 977 $tags = explode(' ', $params['searchtags']);
2c75f8e7
A
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'])) {
775803a0 983 unset($params['searchtags']);
775803a0 984 }
2c75f8e7 985
45034273
SS
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=...)
775803a0
A
993 if (isset($_GET['linksperpage'])) {
994 if (is_numeric($_GET['linksperpage'])) {
995 $_SESSION['LINKS_PER_PAGE']=abs(intval($_GET['linksperpage']));
996 }
997
8bbf02e0
A
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);
45034273
SS
1004 exit;
1005 }
bb8f712d 1006
45034273 1007 // -------- User wants to see only private links (toggle)
775803a0
A
1008 if (isset($_GET['privateonly'])) {
1009 if (empty($_SESSION['privateonly'])) {
1010 $_SESSION['privateonly'] = 1; // See only private links
1011 } else {
45034273
SS
1012 unset($_SESSION['privateonly']); // See all links
1013 }
775803a0 1014
8bbf02e0
A
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);
45034273
SS
1021 exit;
1022 }
1023
f210d94f
LC
1024 // -------- User wants to see only untagged links (toggle)
1025 if (isset($_GET['untaggedonly'])) {
c4925c1f 1026 $_SESSION['untaggedonly'] = empty($_SESSION['untaggedonly']);
f210d94f
LC
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
45034273
SS
1037 // -------- Handle other actions allowed for non-logged in users:
1038 if (!isLoggedIn())
1039 {
ad6c27b7 1040 // User tries to post new link but is not logged in:
45034273
SS
1041 // Show login screen, then redirect to ?post=...
1042 if (isset($_GET['post']))
1043 {
0b04f797 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 );
45034273
SS
1051 exit;
1052 }
aedc912d 1053
278d9ee2 1054 showLinkList($PAGE, $LINKSDB, $conf, $pluginManager);
5fbabbb9
A
1055 if (isset($_GET['edit_link'])) {
1056 header('Location: ?do=login&edit_link='. escape($_GET['edit_link']));
1057 exit;
1058 }
1059
ad6c27b7 1060 exit; // Never remove this one! All operations below are reserved for logged in user.
45034273
SS
1061 }
1062
1063 // -------- All other functions are reserved for the registered user:
1064
1065 // -------- Display the Tools menu if requested (import/export/bookmarklet...)
6fc14d53 1066 if ($targetPage == Router::$PAGE_TOOLS)
45034273 1067 {
a3130d2c 1068 $data = [
6fc14d53 1069 'pageabsaddr' => index_url($_SERVER),
a3130d2c
A
1070 'sslenabled' => is_https($_SERVER),
1071 ];
6fc14d53
A
1072 $pluginManager->executeHooks('render_tools', $data);
1073
1074 foreach ($data as $key => $value) {
1075 $PAGE->assign($key, $value);
1076 }
1077
45034273
SS
1078 $PAGE->renderPage('tools');
1079 exit;
1080 }
1081
1082 // -------- User wants to change his/her password.
6fc14d53 1083 if ($targetPage == Router::$PAGE_CHANGEPASSWORD)
45034273 1084 {
894a3c4b 1085 if ($conf->get('security.open_shaarli')) {
684e662a
A
1086 die('You are not supposed to change a password on an Open Shaarli.');
1087 }
1088
45034273
SS
1089 if (!empty($_POST['setpassword']) && !empty($_POST['oldpassword']))
1090 {
ad6c27b7 1091 if (!tokenOk($_POST['token'])) die('Wrong token.'); // Go away!
45034273
SS
1092
1093 // Make sure old password is correct.
da10377b
A
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; }
45034273 1096 // Save new password
684e662a 1097 // Salt renders rainbow-tables attacks useless.
da10377b
A
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')));
dd484b90 1100 try {
684e662a 1101 $conf->write(isLoggedIn());
dd484b90
A
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 }
fe16b01e 1113 echo '<script>alert("Your password has been changed.");document.location=\'?do=tools\';</script>';
45034273
SS
1114 exit;
1115 }
1116 else // show the change password form.
1117 {
45034273
SS
1118 $PAGE->renderPage('changepassword');
1119 exit;
1120 }
1121 }
1122
1123 // -------- User wants to change configuration
6fc14d53 1124 if ($targetPage == Router::$PAGE_CONFIGURE)
45034273
SS
1125 {
1126 if (!empty($_POST['title']) )
1127 {
12ff86c9
A
1128 if (!tokenOk($_POST['token'])) {
1129 die('Wrong token.'); // Go away!
1130 }
45034273 1131 $tz = 'UTC';
12ff86c9
A
1132 if (!empty($_POST['continent']) && !empty($_POST['city'])
1133 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1134 ) {
1135 $tz = $_POST['continent'] . '/' . $_POST['city'];
1136 }
da10377b 1137 $conf->set('general.timezone', $tz);
7f179985
A
1138 $conf->set('general.title', escape($_POST['title']));
1139 $conf->set('general.header_link', escape($_POST['titleLink']));
adc4aee8 1140 $conf->set('resource.theme', escape($_POST['theme']));
894a3c4b 1141 $conf->set('redirector.url', escape($_POST['redirector']));
da10377b 1142 $conf->set('security.session_protection_disabled', !empty($_POST['disablesessionprotection']));
894a3c4b
A
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']));
76be95e1 1147 $conf->set('api.enabled', !empty($_POST['enableApi']));
cbfdcff2 1148 $conf->set('api.secret', escape($_POST['apiSecret']));
dd484b90 1149 try {
684e662a 1150 $conf->write(isLoggedIn());
4306b184 1151 $history->updateSettings();
adc4aee8 1152 invalidateCaches($conf->get('resource.page_cache'));
dd484b90
A
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.
684e662a 1161 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do=configure\';</script>';
dd484b90
A
1162 exit;
1163 }
684e662a 1164 echo '<script>alert("Configuration was saved.");document.location=\'?do=configure\';</script>';
45034273
SS
1165 exit;
1166 }
1167 else // Show the configuration form.
1168 {
da10377b 1169 $PAGE->assign('title', $conf->get('general.title'));
adc4aee8 1170 $PAGE->assign('theme', $conf->get('resource.theme'));
a0df0651 1171 $PAGE->assign('theme_available', ThemeUtils::getThemes($conf->get('resource.raintpl_tpl')));
894a3c4b 1172 $PAGE->assign('redirector', $conf->get('redirector.url'));
ae3aa968
A
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);
894a3c4b 1179 $PAGE->assign('private_links_default', $conf->get('privacy.default_private_links', false));
2e193ad3 1180 $PAGE->assign('session_protection_disabled', $conf->get('security.session_protection_disabled', false));
894a3c4b
A
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));
cbfdcff2
A
1184 $PAGE->assign('api_enabled', $conf->get('api.enabled', true));
1185 $PAGE->assign('api_secret', $conf->get('api.secret'));
45034273
SS
1186 $PAGE->renderPage('configure');
1187 exit;
1188 }
1189 }
1190
1191 // -------- User wants to rename a tag or delete it
6fc14d53 1192 if ($targetPage == Router::$PAGE_CHANGETAG)
45034273 1193 {
6a6aa2b9 1194 if (empty($_POST['fromtag']) || (empty($_POST['totag']) && isset($_POST['renametag']))) {
aa4797ba 1195 $PAGE->assign('fromtag', ! empty($_GET['fromtag']) ? escape($_GET['fromtag']) : '');
45034273
SS
1196 $PAGE->renderPage('changetag');
1197 exit;
1198 }
6a6aa2b9
A
1199
1200 if (!tokenOk($_POST['token'])) {
1201 die('Wrong token.');
1202 }
45034273 1203
3b67b222 1204 $alteredLinks = $LINKSDB->renameTag(escape($_POST['fromtag']), escape($_POST['totag']));
d99aef53 1205 $LINKSDB->save($conf->get('resource.page_cache'));
3b67b222
A
1206 foreach ($alteredLinks as $link) {
1207 $history->updateLink($link);
45034273 1208 }
3b67b222 1209 $delete = empty($_POST['totag']);
d99aef53
A
1210 $redirect = $delete ? 'do=changetag' : 'searchtags='. urlencode(escape($_POST['totag']));
1211 $alert = $delete
3b67b222
A
1212 ? sprintf(t('The tag was removed from %d links.'), count($alteredLinks))
1213 : sprintf(t('The tag was renamed in %d links.'), count($alteredLinks));
d99aef53
A
1214 echo '<script>alert("'. $alert .'");document.location=\'?'. $redirect .'\';</script>';
1215 exit;
45034273
SS
1216 }
1217
ad6c27b7 1218 // -------- User wants to add a link without using the bookmarklet: Show form.
6fc14d53 1219 if ($targetPage == Router::$PAGE_ADDLINK)
45034273 1220 {
45034273
SS
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 {
5a23950c
A
1228 // Go away!
1229 if (! tokenOk($_POST['token'])) {
1230 die('Wrong token.');
1231 }
01878a75
A
1232
1233 // lf_id should only be present if the link exists.
b712ab0a 1234 $id = isset($_POST['lf_id']) ? intval(escape($_POST['lf_id'])) : $LINKSDB->getNextId();
01878a75
A
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
cc8f572b 1238 // See: https://shaarli.readthedocs.io/en/master/Various-hacks/#changing-the-timestamp-for-a-shaare
01878a75
A
1239 $linkdate = escape($_POST['lf_linkdate']);
1240 if (isset($LINKSDB[$id])) {
1241 // Edit
d592daea 1242 $created = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $linkdate);
01878a75 1243 $updated = new DateTime();
826c6af7 1244 $shortUrl = $LINKSDB[$id]['shorturl'];
4306b184 1245 $new = false;
01878a75
A
1246 } else {
1247 // New link
d592daea 1248 $created = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $linkdate);
01878a75 1249 $updated = null;
826c6af7 1250 $shortUrl = link_small_hash($created, $id);
4306b184 1251 $new = true;
01878a75
A
1252 }
1253
5a23950c
A
1254 // Remove multiple spaces.
1255 $tags = trim(preg_replace('/\s\s+/', ' ', $_POST['lf_tags']));
ce354bf1
A
1256 // Remove first '-' char in tags.
1257 $tags = preg_replace('/(^| )\-/', '$1', $tags);
5a23950c
A
1258 // Remove duplicates.
1259 $tags = implode(' ', array_unique(explode(' ', $tags)));
9646b7da 1260
c27f2f36
A
1261 if (empty(trim($_POST['lf_url']))) {
1262 $_POST['lf_url'] = '?' . smallHash($linkdate . $id);
1263 }
86ceea05 1264 $url = whitelist_protocols(trim($_POST['lf_url']), $conf->get('security.allowed_protocols'));
5a23950c
A
1265
1266 $link = array(
01878a75 1267 'id' => $id,
5a23950c
A
1268 'title' => trim($_POST['lf_title']),
1269 'url' => $url,
ed853da7 1270 'description' => $_POST['lf_description'],
5a23950c 1271 'private' => (isset($_POST['lf_private']) ? 1 : 0),
01878a75 1272 'created' => $created,
9646b7da 1273 'updated' => $updated,
d592daea 1274 'tags' => str_replace(',', ' ', $tags),
826c6af7 1275 'shorturl' => $shortUrl,
5a23950c 1276 );
01878a75 1277
5a23950c
A
1278 // If title is empty, use the URL as title.
1279 if ($link['title'] == '') {
1280 $link['title'] = $link['url'];
1281 }
6fc14d53
A
1282
1283 $pluginManager->executeHooks('save_link', $link);
1284
01878a75 1285 $LINKSDB[$id] = $link;
f21abf32 1286 $LINKSDB->save($conf->get('resource.page_cache'));
4306b184
A
1287 if ($new) {
1288 $history->addLink($link);
1289 } else {
1290 $history->updateLink($link);
1291 }
45034273
SS
1292
1293 // If we are called from the bookmarklet, we must close the popup:
d01c2342
A
1294 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
1295 echo '<script>self.close();</script>';
1296 exit;
1297 }
1298
fd50e14c 1299 $returnurl = !empty($_POST['returnurl']) ? $_POST['returnurl'] : '?';
775803a0 1300 $location = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
5a23950c 1301 // Scroll to the link which has been edited.
d592daea 1302 $location .= '#' . $link['shorturl'];
5a23950c
A
1303 // After saving the link, redirect to the page the user was on.
1304 header('Location: '. $location);
45034273
SS
1305 exit;
1306 }
1307
1308 // -------- User clicked the "Cancel" button when editing a link.
1309 if (isset($_POST['cancel_edit']))
1310 {
b712ab0a
A
1311 $id = isset($_POST['lf_id']) ? (int) escape($_POST['lf_id']) : false;
1312 if (! isset($LINKSDB[$id])) {
1313 header('Location: ?');
1314 }
ad6c27b7 1315 // If we are called from the bookmarklet, we must close the popup:
d33c5d4c 1316 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) { echo '<script>self.close();</script>'; exit; }
b712ab0a 1317 $link = $LINKSDB[$id];
45034273 1318 $returnurl = ( isset($_POST['returnurl']) ? $_POST['returnurl'] : '?' );
01878a75 1319 // Scroll to the link which has been edited.
d592daea 1320 $returnurl .= '#'. $link['shorturl'];
775803a0 1321 $returnurl = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
45034273
SS
1322 header('Location: '.$returnurl); // After canceling, redirect to the page the user was on.
1323 exit;
1324 }
1325
ad6c27b7 1326 // -------- User clicked the "Delete" button when editing a link: Delete link from database.
f4ebd5fe 1327 if ($targetPage == Router::$PAGE_DELETELINK)
45034273 1328 {
f4ebd5fe
A
1329 if (! tokenOk($_GET['token'])) {
1330 die('Wrong token.');
1331 }
01878a75 1332
a74f52a8
WE
1333 $ids = trim($_GET['lf_linkdate']);
1334 if (strpos($ids, ' ') !== false) {
1335 // multiple, space-separated ids provided
1336 $ids = array_values(array_filter(preg_split('/\s+/', escape($ids))));
29a837f3 1337 } else {
a74f52a8
WE
1338 // only a single id provided
1339 $ids = [$ids];
1340 }
1341 // assert at least one id is given
1342 if(!count($ids)){
1343 die('no id provided');
29a837f3
A
1344 }
1345 foreach ($ids as $id) {
1346 $id = (int) escape($id);
1347 $link = $LINKSDB[$id];
1348 $pluginManager->executeHooks('delete_link', $link);
1349 unset($LINKSDB[$id]);
1350 }
f4ebd5fe 1351 $LINKSDB->save($conf->get('resource.page_cache')); // save to disk
4306b184 1352 $history->deleteLink($link);
45034273
SS
1353
1354 // If we are called from the bookmarklet, we must close the popup:
d33c5d4c 1355 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) { echo '<script>self.close();</script>'; exit; }
95e5add4
A
1356
1357 $location = '?';
1358 if (isset($_SERVER['HTTP_REFERER'])) {
1359 // Don't redirect to where we were previously if it was a permalink or an edit_link, because it would 404.
1360 $location = generateLocation(
1361 $_SERVER['HTTP_REFERER'],
1362 $_SERVER['HTTP_HOST'],
1363 ['delete_link', 'edit_link', $link['shorturl']]
1364 );
d528433d 1365 }
1366
1367 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
45034273
SS
1368 exit;
1369 }
1370
1371 // -------- User clicked the "EDIT" button on a link: Display link edit form.
1372 if (isset($_GET['edit_link']))
1373 {
01878a75
A
1374 $id = (int) escape($_GET['edit_link']);
1375 $link = $LINKSDB[$id]; // Read database
45034273 1376 if (!$link) { header('Location: ?'); exit; } // Link not found in database.
d592daea 1377 $link['linkdate'] = $link['created']->format(LinkDB::LINK_DATE_FORMAT);
6fc14d53 1378 $data = array(
6fc14d53
A
1379 'link' => $link,
1380 'link_is_new' => false,
6fc14d53 1381 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
6ccd0b21 1382 'tags' => $LINKSDB->linksCountPerTag(),
6fc14d53
A
1383 );
1384 $pluginManager->executeHooks('render_editlink', $data);
1385
1386 foreach ($data as $key => $value) {
1387 $PAGE->assign($key, $value);
1388 }
1389
45034273
SS
1390 $PAGE->renderPage('editlink');
1391 exit;
1392 }
1393
1394 // -------- User want to post a new link: Display link edit form.
d9d776af 1395 if (isset($_GET['post'])) {
ce7b0b64 1396 $url = cleanup_url($_GET['post']);
45034273
SS
1397
1398 $link_is_new = false;
9e1724f1 1399 // Check if URL is not already in database (in this case, we will edit the existing link)
ef591e7e 1400 $link = $LINKSDB->getLinkFromUrl($url);
01878a75 1401 if (! $link)
45034273 1402 {
9e1724f1 1403 $link_is_new = true;
d592daea 1404 $linkdate = strval(date(LinkDB::LINK_DATE_FORMAT));
9e1724f1 1405 // Get title if it was provided in URL (by the bookmarklet).
739dc243 1406 $title = empty($_GET['title']) ? '' : escape($_GET['title']);
9e1724f1 1407 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that]
739dc243
A
1408 $description = empty($_GET['description']) ? '' : escape($_GET['description']);
1409 $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']);
1410 $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0;
26c50346 1411 // 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.)
ef591e7e 1412 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) {
451314eb 1413 // Short timeout to keep the application responsive
1557cefb 1414 list($headers, $content) = get_http_response($url, 4);
451314eb 1415 if (strpos($headers[0], '200 OK') !== false) {
1557cefb
A
1416 // Retrieve charset.
1417 $charset = get_charset($headers, $content);
1418 // Extract title.
1419 $title = html_extract_title($content);
1420 // Re-encode title in utf-8 if necessary.
ce7b0b64
A
1421 if (! empty($title) && strtolower($charset) != 'utf-8') {
1422 $title = mb_convert_encoding($title, 'utf-8', $charset);
9e1724f1
A
1423 }
1424 }
45034273 1425 }
1557cefb 1426
9e1724f1 1427 if ($url == '') {
d592daea 1428 $url = '?' . smallHash($linkdate . $LINKSDB->getNextId());
9e1724f1 1429 $title = 'Note: ';
27646ca5 1430 }
ce7b0b64
A
1431 $url = escape($url);
1432 $title = escape($title);
1557cefb 1433
9e1724f1
A
1434 $link = array(
1435 'linkdate' => $linkdate,
1436 'title' => $title,
ef591e7e 1437 'url' => $url,
9e1724f1
A
1438 'description' => $description,
1439 'tags' => $tags,
807cade6 1440 'private' => $private,
9e1724f1 1441 );
01878a75 1442 } else {
d592daea 1443 $link['linkdate'] = $link['created']->format(LinkDB::LINK_DATE_FORMAT);
45034273
SS
1444 }
1445
6fc14d53 1446 $data = array(
6fc14d53
A
1447 'link' => $link,
1448 'link_is_new' => $link_is_new,
6fc14d53
A
1449 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
1450 'source' => (isset($_GET['source']) ? $_GET['source'] : ''),
6ccd0b21 1451 'tags' => $LINKSDB->linksCountPerTag(),
cdbc8180 1452 'default_private_links' => $conf->get('privacy.default_private_links', false),
6fc14d53
A
1453 );
1454 $pluginManager->executeHooks('render_editlink', $data);
1455
1456 foreach ($data as $key => $value) {
1457 $PAGE->assign($key, $value);
1458 }
1459
45034273
SS
1460 $PAGE->renderPage('editlink');
1461 exit;
1462 }
1463
cd5327be 1464 if ($targetPage == Router::$PAGE_EXPORT) {
bb4a23aa
V
1465 // Export links as a Netscape Bookmarks file
1466
cd5327be 1467 if (empty($_GET['selection'])) {
45034273
SS
1468 $PAGE->renderPage('export');
1469 exit;
1470 }
45034273 1471
cd5327be
V
1472 // export as bookmarks_(all|private|public)_YYYYmmdd_HHMMSS.html
1473 $selection = $_GET['selection'];
bb4a23aa
V
1474 if (isset($_GET['prepend_note_url'])) {
1475 $prependNoteUrl = $_GET['prepend_note_url'];
1476 } else {
1477 $prependNoteUrl = false;
1478 }
1479
cd5327be
V
1480 try {
1481 $PAGE->assign(
1482 'links',
bb4a23aa
V
1483 NetscapeBookmarkUtils::filterAndFormat(
1484 $LINKSDB,
1485 $selection,
1486 $prependNoteUrl,
1487 index_url($_SERVER)
1488 )
cd5327be
V
1489 );
1490 } catch (Exception $exc) {
1491 header('Content-Type: text/plain; charset=utf-8');
1492 echo $exc->getMessage();
1493 exit;
45034273 1494 }
cd5327be
V
1495 $now = new DateTime();
1496 header('Content-Type: text/html; charset=utf-8');
1497 header(
1498 'Content-disposition: attachment; filename=bookmarks_'
1499 .$selection.'_'.$now->format(LinkDB::LINK_DATE_FORMAT).'.html'
1500 );
1501 $PAGE->assign('date', $now->format(DateTime::RFC822));
1502 $PAGE->assign('eol', PHP_EOL);
1503 $PAGE->assign('selection', $selection);
1504 $PAGE->renderPage('export.bookmarks');
1505 exit;
45034273
SS
1506 }
1507
a973afea
V
1508 if ($targetPage == Router::$PAGE_IMPORT) {
1509 // Upload a Netscape bookmark dump to import its contents
1510
1511 if (! isset($_POST['token']) || ! isset($_FILES['filetoupload'])) {
1512 // Show import dialog
6a19124a
A
1513 $PAGE->assign(
1514 'maxfilesize',
1515 get_max_upload_size(
1516 ini_get('post_max_size'),
1517 ini_get('upload_max_filesize'),
1518 false
1519 )
1520 );
1521 $PAGE->assign(
1522 'maxfilesizeHuman',
1523 get_max_upload_size(
1524 ini_get('post_max_size'),
1525 ini_get('upload_max_filesize'),
1526 true
1527 )
1528 );
a973afea 1529 $PAGE->renderPage('import');
45034273
SS
1530 exit;
1531 }
45034273 1532
a973afea
V
1533 // Import bookmarks from an uploaded file
1534 if (isset($_FILES['filetoupload']['size']) && $_FILES['filetoupload']['size'] == 0) {
1535 // The file is too big or some form field may be missing.
1536 echo '<script>alert("The file you are trying to upload is probably'
1537 .' bigger than what this webserver can accept ('
84315a3b 1538 .get_max_upload_size(ini_get('post_max_size'), ini_get('upload_max_filesize')).').'
a973afea
V
1539 .' Please upload in smaller chunks.");document.location=\'?do='
1540 .Router::$PAGE_IMPORT .'\';</script>';
1541 exit;
1542 }
1543 if (! tokenOk($_POST['token'])) {
1544 die('Wrong token.');
1545 }
1546 $status = NetscapeBookmarkUtils::import(
1547 $_POST,
1548 $_FILES,
1549 $LINKSDB,
4306b184
A
1550 $conf,
1551 $history
a973afea
V
1552 );
1553 echo '<script>alert("'.$status.'");document.location=\'?do='
1554 .Router::$PAGE_IMPORT .'\';</script>';
45034273
SS
1555 exit;
1556 }
1557
dea0ba28
A
1558 // Plugin administration page
1559 if ($targetPage == Router::$PAGE_PLUGINSADMIN) {
1560 $pluginMeta = $pluginManager->getPluginsMeta();
1561
1562 // Split plugins into 2 arrays: ordered enabled plugins and disabled.
1563 $enabledPlugins = array_filter($pluginMeta, function($v) { return $v['order'] !== false; });
1564 // Load parameters.
684e662a 1565 $enabledPlugins = load_plugin_parameter_values($enabledPlugins, $conf->get('plugins', array()));
dea0ba28
A
1566 uasort(
1567 $enabledPlugins,
1568 function($a, $b) { return $a['order'] - $b['order']; }
1569 );
1570 $disabledPlugins = array_filter($pluginMeta, function($v) { return $v['order'] === false; });
1571
1572 $PAGE->assign('enabledPlugins', $enabledPlugins);
1573 $PAGE->assign('disabledPlugins', $disabledPlugins);
1574 $PAGE->renderPage('pluginsadmin');
1575 exit;
1576 }
1577
1578 // Plugin administration form action
1579 if ($targetPage == Router::$PAGE_SAVE_PLUGINSADMIN) {
1580 try {
1581 if (isset($_POST['parameters_form'])) {
1582 unset($_POST['parameters_form']);
1583 foreach ($_POST as $param => $value) {
684e662a 1584 $conf->set('plugins.'. $param, escape($value));
dea0ba28
A
1585 }
1586 }
1587 else {
da10377b 1588 $conf->set('general.enabled_plugins', save_plugin_config($_POST));
dea0ba28 1589 }
684e662a 1590 $conf->write(isLoggedIn());
b86aeccf 1591 $history->updateSettings();
dea0ba28
A
1592 }
1593 catch (Exception $e) {
1594 error_log(
1595 'ERROR while saving plugin configuration:.' . PHP_EOL .
1596 $e->getMessage()
1597 );
1598
1599 // TODO: do not handle exceptions/errors in JS.
59edea42 1600 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do='. Router::$PAGE_PLUGINSADMIN .'\';</script>';
dea0ba28
A
1601 exit;
1602 }
1603 header('Location: ?do='. Router::$PAGE_PLUGINSADMIN);
1604 exit;
1605 }
1606
986a5210
A
1607 // Get a fresh token
1608 if ($targetPage == Router::$GET_TOKEN) {
1609 header('Content-Type:text/plain');
1610 echo getToken($conf);
1611 exit;
1612 }
1613
45034273 1614 // -------- Otherwise, simply display search form and links:
278d9ee2 1615 showLinkList($PAGE, $LINKSDB, $conf, $pluginManager);
45034273
SS
1616 exit;
1617}
1618
528a6f8a
A
1619/**
1620 * Template for the list of links (<div id="linklist">)
1621 * This function fills all the necessary fields in the $PAGE for the template 'linklist.html'
1622 *
278d9ee2
A
1623 * @param pageBuilder $PAGE pageBuilder instance.
1624 * @param LinkDB $LINKSDB LinkDB instance.
1625 * @param ConfigManager $conf Configuration Manager instance.
1626 * @param PluginManager $pluginManager Plugin Manager instance.
528a6f8a 1627 */
278d9ee2 1628function buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager)
45034273 1629{
528a6f8a 1630 // Used in templates
7d86f40b
A
1631 if (isset($_GET['searchtags'])) {
1632 if (! empty($_GET['searchtags'])) {
1633 $searchtags = escape(normalize_spaces($_GET['searchtags']));
1634 } else {
1635 $searchtags = false;
1636 }
1637 } else {
1638 $searchtags = '';
1639 }
b3051a6a 1640 $searchterm = !empty($_GET['searchterm']) ? escape(normalize_spaces($_GET['searchterm'])) : '';
822bffce 1641
528a6f8a
A
1642 // Smallhash filter
1643 if (! empty($_SERVER['QUERY_STRING'])
1644 && preg_match('/^[a-zA-Z0-9-_@]{6}($|&|#)/', $_SERVER['QUERY_STRING'])) {
1645 try {
1646 $linksToDisplay = $LINKSDB->filterHash($_SERVER['QUERY_STRING']);
1647 } catch (LinkNotFoundException $e) {
1648 $PAGE->render404($e->getMessage());
45034273
SS
1649 exit;
1650 }
528a6f8a
A
1651 } else {
1652 // Filter links according search parameters.
7f96d9ec 1653 $visibility = ! empty($_SESSION['privateonly']) ? 'private' : 'all';
7d86f40b
A
1654 $request = [
1655 'searchtags' => $searchtags,
1656 'searchterm' => $searchterm,
1657 ];
f210d94f 1658 $linksToDisplay = $LINKSDB->filterSearch($request, false, $visibility, !empty($_SESSION['untaggedonly']));
45034273
SS
1659 }
1660
1661 // ---- Handle paging.
822bffce
A
1662 $keys = array();
1663 foreach ($linksToDisplay as $key => $value) {
1664 $keys[] = $key;
1665 }
45034273 1666
97ef33bb 1667
45034273
SS
1668
1669 // Select articles according to paging.
822bffce
A
1670 $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']);
1671 $pagecount = $pagecount == 0 ? 1 : $pagecount;
1672 $page= empty($_GET['page']) ? 1 : intval($_GET['page']);
1673 $page = $page < 1 ? 1 : $page;
1674 $page = $page > $pagecount ? $pagecount : $page;
1675 // Start index.
1676 $i = ($page-1) * $_SESSION['LINKS_PER_PAGE'];
1677 $end = $i + $_SESSION['LINKS_PER_PAGE'];
1678 $linkDisp = array();
45034273
SS
1679 while ($i<$end && $i<count($keys))
1680 {
1681 $link = $linksToDisplay[$keys[$i]];
894a3c4b 1682 $link['description'] = format_description($link['description'], $conf->get('redirector.url'));
822bffce
A
1683 $classLi = ($i % 2) != 0 ? '' : 'publicLinkHightLight';
1684 $link['class'] = $link['private'] == 0 ? $classLi : 'private';
01878a75 1685 $link['timestamp'] = $link['created']->getTimestamp();
9646b7da 1686 if (! empty($link['updated'])) {
01878a75 1687 $link['updated_timestamp'] = $link['updated']->getTimestamp();
9646b7da
A
1688 } else {
1689 $link['updated_timestamp'] = '';
1690 }
b3051a6a 1691 $taglist = preg_split('/\s+/', $link['tags'], -1, PREG_SPLIT_NO_EMPTY);
a5752e77 1692 uasort($taglist, 'strcasecmp');
822bffce 1693 $link['taglist'] = $taglist;
822bffce
A
1694 // Check for both signs of a note: starting with ? and 7 chars long.
1695 if ($link['url'][0] === '?' &&
1696 strlen($link['url']) === 7) {
1697 $link['url'] = index_url($_SERVER) . $link['url'];
b47f515a 1698 }
d33c5d4c 1699
45034273
SS
1700 $linkDisp[$keys[$i]] = $link;
1701 $i++;
1702 }
bb8f712d 1703
45034273 1704 // Compute paging navigation
7d86f40b 1705 $searchtagsUrl = $searchtags === '' ? '' : '&searchtags=' . urlencode($searchtags);
c51fae92 1706 $searchtermUrl = empty($searchterm) ? '' : '&searchterm=' . urlencode($searchterm);
822bffce
A
1707 $previous_page_url = '';
1708 if ($i != count($keys)) {
c51fae92 1709 $previous_page_url = '?page=' . ($page+1) . $searchtermUrl . $searchtagsUrl;
822bffce
A
1710 }
1711 $next_page_url='';
1712 if ($page>1) {
c51fae92 1713 $next_page_url = '?page=' . ($page-1) . $searchtermUrl . $searchtagsUrl;
822bffce 1714 }
45034273 1715
45034273 1716 // Fill all template fields.
6fc14d53 1717 $data = array(
6fc14d53
A
1718 'previous_page_url' => $previous_page_url,
1719 'next_page_url' => $next_page_url,
1720 'page_current' => $page,
1721 'page_max' => $pagecount,
1722 'result_count' => count($linksToDisplay),
c51fae92
A
1723 'search_term' => $searchterm,
1724 'search_tags' => $searchtags,
7c26f662 1725 'visibility' => ! empty($_SESSION['privateonly']) ? 'private' : '',
894a3c4b 1726 'redirector' => $conf->get('redirector.url'), // Optional redirector URL.
6fc14d53 1727 'links' => $linkDisp,
6fc14d53 1728 );
97ef33bb
A
1729
1730 // If there is only a single link, we change on-the-fly the title of the page.
1731 if (count($linksToDisplay) == 1) {
1732 $data['pagetitle'] = $linksToDisplay[$keys[0]]['title'] .' - '. $conf->get('general.title');
18cca483 1733 }
6fc14d53 1734
6fc14d53
A
1735 $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => isLoggedIn()));
1736
1737 foreach ($data as $key => $value) {
1738 $PAGE->assign($key, $value);
1739 }
1740
45034273
SS
1741 return;
1742}
1743
278d9ee2
A
1744/**
1745 * Compute the thumbnail for a link.
1746 *
1747 * With a link to the original URL.
1748 * Understands various services (youtube.com...)
1749 * Input: $url = URL for which the thumbnail must be found.
1750 * $href = if provided, this URL will be followed instead of $url
1751 * Returns an associative array with thumbnail attributes (src,href,width,height,style,alt)
1752 * Some of them may be missing.
1753 * Return an empty array if no thumbnail available.
1754 *
1755 * @param ConfigManager $conf Configuration Manager instance.
1756 * @param string $url
1757 * @param string|bool $href
1758 *
1759 * @return array
1760 */
1761function computeThumbnail($conf, $url, $href = false)
45034273 1762{
894a3c4b 1763 if (!$conf->get('thumbnail.enable_thumbnails')) return array();
45034273
SS
1764 if ($href==false) $href=$url;
1765
1766 // For most hosts, the URL of the thumbnail can be easily deduced from the URL of the link.
ad6c27b7 1767 // (e.g. http://www.youtube.com/watch?v=spVypYk4kto ---> http://img.youtube.com/vi/spVypYk4kto/default.jpg )
45034273
SS
1768 // ^^^^^^^^^^^ ^^^^^^^^^^^
1769 $domain = parse_url($url,PHP_URL_HOST);
1770 if ($domain=='youtube.com' || $domain=='www.youtube.com')
1771 {
1772 parse_str(parse_url($url,PHP_URL_QUERY), $params); // Extract video ID and get thumbnail
1a663a0f 1773 if (!empty($params['v'])) return array('src'=>'https://img.youtube.com/vi/'.$params['v'].'/default.jpg',
45034273
SS
1774 'href'=>$href,'width'=>'120','height'=>'90','alt'=>'YouTube thumbnail');
1775 }
1776 if ($domain=='youtu.be') // Youtube short links
1777 {
1778 $path = parse_url($url,PHP_URL_PATH);
1a663a0f 1779 return array('src'=>'https://img.youtube.com/vi'.$path.'/default.jpg',
bb8f712d 1780 'href'=>$href,'width'=>'120','height'=>'90','alt'=>'YouTube thumbnail');
45034273
SS
1781 }
1782 if ($domain=='pix.toile-libre.org') // pix.toile-libre.org image hosting
1783 {
1784 parse_str(parse_url($url,PHP_URL_QUERY), $params); // Extract image filename.
1785 if (!empty($params) && !empty($params['img'])) return array('src'=>'http://pix.toile-libre.org/upload/thumb/'.urlencode($params['img']),
bb8f712d
KT
1786 'href'=>$href,'style'=>'max-width:120px; max-height:150px','alt'=>'pix.toile-libre.org thumbnail');
1787 }
1788
45034273
SS
1789 if ($domain=='imgur.com')
1790 {
1791 $path = parse_url($url,PHP_URL_PATH);
1792 if (startsWith($path,'/a/')) return array(); // Thumbnails for albums are not available.
1a663a0f 1793 if (startsWith($path,'/r/')) return array('src'=>'https://i.imgur.com/'.basename($path).'s.jpg',
45034273 1794 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1a663a0f 1795 if (startsWith($path,'/gallery/')) return array('src'=>'https://i.imgur.com'.substr($path,8).'s.jpg',
45034273
SS
1796 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1797
1a663a0f 1798 if (substr_count($path,'/')==1) return array('src'=>'https://i.imgur.com/'.substr($path,1).'s.jpg',
45034273
SS
1799 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1800 }
1801 if ($domain=='i.imgur.com')
1802 {
1803 $pi = pathinfo(parse_url($url,PHP_URL_PATH));
1a663a0f 1804 if (!empty($pi['filename'])) return array('src'=>'https://i.imgur.com/'.$pi['filename'].'s.jpg',
45034273
SS
1805 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1806 }
1807 if ($domain=='dailymotion.com' || $domain=='www.dailymotion.com')
1808 {
1809 if (strpos($url,'dailymotion.com/video/')!==false)
1810 {
1811 $thumburl=str_replace('dailymotion.com/video/','dailymotion.com/thumbnail/video/',$url);
1812 return array('src'=>$thumburl,
1813 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'DailyMotion thumbnail');
1814 }
1815 }
1816 if (endsWith($domain,'.imageshack.us'))
1817 {
1818 $ext=strtolower(pathinfo($url,PATHINFO_EXTENSION));
1819 if ($ext=='jpg' || $ext=='jpeg' || $ext=='png' || $ext=='gif')
1820 {
1821 $thumburl = substr($url,0,strlen($url)-strlen($ext)).'th.'.$ext;
1822 return array('src'=>$thumburl,
1823 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'imageshack.us thumbnail');
1824 }
1825 }
1826
1827 // Some other hosts are SLOW AS HELL and usually require an extra HTTP request to get the thumbnail URL.
1828 // So we deport the thumbnail generation in order not to slow down page generation
1829 // (and we also cache the thumbnail)
1830
894a3c4b 1831 if (! $conf->get('thumbnail.enable_localcache')) return array(); // If local cache is disabled, no thumbnails for services which require the use a local cache.
45034273
SS
1832
1833 if ($domain=='flickr.com' || endsWith($domain,'.flickr.com')
1834 || $domain=='vimeo.com'
1835 || $domain=='ted.com' || endsWith($domain,'.ted.com')
1836 || $domain=='xkcd.com' || endsWith($domain,'.xkcd.com')
1837 )
1838 {
1839 if ($domain=='vimeo.com')
ad6c27b7 1840 { // Make sure this vimeo URL points to a video (/xxx... where xxx is numeric)
45034273
SS
1841 $path = parse_url($url,PHP_URL_PATH);
1842 if (!preg_match('!/\d+.+?!',$path)) return array(); // This is not a single video URL.
1843 }
1844 if ($domain=='xkcd.com' || endsWith($domain,'.xkcd.com'))
ad6c27b7 1845 { // Make sure this URL points to a single comic (/xxx... where xxx is numeric)
45034273
SS
1846 $path = parse_url($url,PHP_URL_PATH);
1847 if (!preg_match('!/\d+.+?!',$path)) return array();
1848 }
1849 if ($domain=='ted.com' || endsWith($domain,'.ted.com'))
ad6c27b7 1850 { // Make sure this TED URL points to a video (/talks/...)
45034273
SS
1851 $path = parse_url($url,PHP_URL_PATH);
1852 if ("/talks/" !== substr($path,0,7)) return array(); // This is not a single video URL.
1853 }
da10377b 1854 $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)
482d67bd 1855 return array('src'=>index_url($_SERVER).'?do=genthumbnail&hmac='.$sign.'&url='.urlencode($url),
45034273
SS
1856 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'thumbnail');
1857 }
1858
1859 // For all other, we try to make a thumbnail of links ending with .jpg/jpeg/png/gif
1860 // Technically speaking, we should download ALL links and check their Content-Type to see if they are images.
1861 // But using the extension will do.
1862 $ext=strtolower(pathinfo($url,PATHINFO_EXTENSION));
1863 if ($ext=='jpg' || $ext=='jpeg' || $ext=='png' || $ext=='gif')
1864 {
da10377b 1865 $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)
482d67bd 1866 return array('src'=>index_url($_SERVER).'?do=genthumbnail&hmac='.$sign.'&url='.urlencode($url),
bb8f712d 1867 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'thumbnail');
45034273
SS
1868 }
1869 return array(); // No thumbnail.
1870
1871}
1872
1873
1874// Returns the HTML code to display a thumbnail for a link
1875// with a link to the original URL.
1876// Understands various services (youtube.com...)
ad6c27b7 1877// Input: $url = URL for which the thumbnail must be found.
45034273
SS
1878// $href = if provided, this URL will be followed instead of $url
1879// Returns '' if no thumbnail available.
1880function thumbnail($url,$href=false)
1881{
278d9ee2
A
1882 // FIXME!
1883 global $conf;
1884 $t = computeThumbnail($conf, $url,$href);
45034273 1885 if (count($t)==0) return ''; // Empty array = no thumbnail for this URL.
bb8f712d 1886
5f85fcd8
A
1887 $html='<a href="'.escape($t['href']).'"><img src="'.escape($t['src']).'"';
1888 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1889 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1890 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1891 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
45034273
SS
1892 $html.='></a>';
1893 return $html;
1894}
1895
45034273
SS
1896// Returns the HTML code to display a thumbnail for a link
1897// for the picture wall (using lazy image loading)
1898// Understands various services (youtube.com...)
ad6c27b7 1899// Input: $url = URL for which the thumbnail must be found.
45034273
SS
1900// $href = if provided, this URL will be followed instead of $url
1901// Returns '' if no thumbnail available.
278d9ee2 1902function lazyThumbnail($conf, $url,$href=false)
45034273 1903{
278d9ee2
A
1904 // FIXME!
1905 global $conf;
1906 $t = computeThumbnail($conf, $url,$href);
45034273
SS
1907 if (count($t)==0) return ''; // Empty array = no thumbnail for this URL.
1908
5f85fcd8 1909 $html='<a href="'.escape($t['href']).'">';
bb8f712d 1910
34047d23 1911 // Lazy image
5f85fcd8 1912 $html.='<img class="b-lazy" src="#" data-src="'.escape($t['src']).'"';
858c5c2b 1913
5f85fcd8
A
1914 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1915 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1916 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1917 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
45034273 1918 $html.='>';
bb8f712d 1919
ad6c27b7 1920 // No-JavaScript fallback.
5f85fcd8
A
1921 $html.='<noscript><img src="'.escape($t['src']).'"';
1922 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1923 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1924 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1925 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
45034273 1926 $html.='></noscript></a>';
bb8f712d 1927
45034273
SS
1928 return $html;
1929}
1930
1931
278d9ee2
A
1932/**
1933 * Installation
1934 * This function should NEVER be called if the file data/config.php exists.
1935 *
1936 * @param ConfigManager $conf Configuration Manager instance.
1937 */
1938function install($conf)
45034273
SS
1939{
1940 // On free.fr host, make sure the /sessions directory exists, otherwise login will not work.
f6a6ca0a 1941 if (endsWith($_SERVER['HTTP_HOST'],'.free.fr') && !is_dir($_SERVER['DOCUMENT_ROOT'].'/sessions')) mkdir($_SERVER['DOCUMENT_ROOT'].'/sessions',0705);
45034273 1942
f37664a2
SS
1943
1944 // This part makes sure sessions works correctly.
1945 // (Because on some hosts, session.save_path may not be set correctly,
1946 // or we may not have write access to it.)
1947 if (isset($_GET['test_session']) && ( !isset($_SESSION) || !isset($_SESSION['session_tested']) || $_SESSION['session_tested']!='Working'))
1948 { // Step 2: Check if data in session is correct.
1949 echo '<pre>Sessions do not seem to work correctly on your server.<br>';
1950 echo 'Make sure the variable session.save_path is set correctly in your php config, and that you have write access to it.<br>';
01ec1791 1951 echo 'It currently points to '.session_save_path().'<br>';
1952 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>';
1953 echo '<br><a href="?">Click to try again.</a></pre>';
f37664a2
SS
1954 die;
1955 }
1956 if (!isset($_SESSION['session_tested']))
1957 { // Step 1 : Try to store data in session and reload page.
1958 $_SESSION['session_tested'] = 'Working'; // Try to set a variable in session.
482d67bd 1959 header('Location: '.index_url($_SERVER).'?test_session'); // Redirect to check stored data.
f37664a2
SS
1960 }
1961 if (isset($_GET['test_session']))
ad6c27b7 1962 { // Step 3: Sessions are OK. Remove test parameter from URL.
482d67bd 1963 header('Location: '.index_url($_SERVER));
f37664a2
SS
1964 }
1965
1966
45034273
SS
1967 if (!empty($_POST['setlogin']) && !empty($_POST['setpassword']))
1968 {
1969 $tz = 'UTC';
12ff86c9
A
1970 if (!empty($_POST['continent']) && !empty($_POST['city'])
1971 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1972 ) {
1973 $tz = $_POST['continent'].'/'.$_POST['city'];
d1e2f8e5 1974 }
da10377b 1975 $conf->set('general.timezone', $tz);
684e662a 1976 $login = $_POST['setlogin'];
da10377b 1977 $conf->set('credentials.login', $login);
684e662a 1978 $salt = sha1(uniqid('', true) .'_'. mt_rand());
da10377b
A
1979 $conf->set('credentials.salt', $salt);
1980 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $login . $salt));
684e662a 1981 if (!empty($_POST['title'])) {
7f179985 1982 $conf->set('general.title', escape($_POST['title']));
684e662a 1983 } else {
da10377b 1984 $conf->set('general.title', 'Shared links on '.escape(index_url($_SERVER)));
684e662a 1985 }
894a3c4b 1986 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
cbfdcff2
A
1987 $conf->set('api.enabled', !empty($_POST['enableApi']));
1988 $conf->set(
1989 'api.secret',
1990 generate_api_secret(
e3a430ba
A
1991 $conf->get('credentials.login'),
1992 $conf->get('credentials.salt')
cbfdcff2
A
1993 )
1994 );
dd484b90 1995 try {
684e662a
A
1996 // Everything is ok, let's create config file.
1997 $conf->write(isLoggedIn());
dd484b90
A
1998 }
1999 catch(Exception $e) {
2000 error_log(
2001 'ERROR while writing config file after installation.' . PHP_EOL .
2002 $e->getMessage()
2003 );
2004
2005 // TODO: do not handle exceptions/errors in JS.
2006 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?\';</script>';
2007 exit;
2008 }
fe16b01e 2009 echo '<script>alert("Shaarli is now configured. Please enter your login/password and start shaaring your links!");document.location=\'?do=login\';</script>';
45034273
SS
2010 exit;
2011 }
2012
278d9ee2 2013 $PAGE = new PageBuilder($conf);
ae3aa968
A
2014 list($continents, $cities) = generateTimeZoneData(timezone_identifiers_list(), date_default_timezone_get());
2015 $PAGE->assign('continents', $continents);
2016 $PAGE->assign('cities', $cities);
45034273
SS
2017 $PAGE->renderPage('install');
2018 exit;
2019}
2020
278d9ee2
A
2021/**
2022 * Because some f*cking services like flickr require an extra HTTP request to get the thumbnail URL,
2023 * I have deported the thumbnail URL code generation here, otherwise this would slow down page generation.
2024 * The following function takes the URL a link (e.g. a flickr page) and return the proper thumbnail.
2025 * This function is called by passing the URL:
2026 * http://mywebsite.com/shaarli/?do=genthumbnail&hmac=[HMAC]&url=[URL]
2027 * [URL] is the URL of the link (e.g. a flickr page)
2028 * [HMAC] is the signature for the [URL] (so that these URL cannot be forged).
2029 * The function below will fetch the image from the webservice and store it in the cache.
2030 *
2031 * @param ConfigManager $conf Configuration Manager instance,
2032 */
2033function genThumbnail($conf)
45034273
SS
2034{
2035 // Make sure the parameters in the URL were generated by us.
da10377b 2036 $sign = hash_hmac('sha256', $_GET['url'], $conf->get('credentials.salt'));
ad6c27b7 2037 if ($sign!=$_GET['hmac']) die('Naughty boy!');
45034273 2038
894a3c4b 2039 $cacheDir = $conf->get('resource.thumbnails_cache', 'cache');
45034273
SS
2040 // Let's see if we don't already have the image for this URL in the cache.
2041 $thumbname=hash('sha1',$_GET['url']).'.jpg';
684e662a 2042 if (is_file($cacheDir .'/'. $thumbname))
45034273
SS
2043 { // We have the thumbnail, just serve it:
2044 header('Content-Type: image/jpeg');
684e662a 2045 echo file_get_contents($cacheDir .'/'. $thumbname);
45034273
SS
2046 return;
2047 }
2048 // We may also serve a blank image (if service did not respond)
2049 $blankname=hash('sha1',$_GET['url']).'.gif';
684e662a 2050 if (is_file($cacheDir .'/'. $blankname))
45034273
SS
2051 {
2052 header('Content-Type: image/gif');
684e662a 2053 echo file_get_contents($cacheDir .'/'. $blankname);
45034273
SS
2054 return;
2055 }
2056
2057 // Otherwise, generate the thumbnail.
2058 $url = $_GET['url'];
2059 $domain = parse_url($url,PHP_URL_HOST);
2060
2061 if ($domain=='flickr.com' || endsWith($domain,'.flickr.com'))
2062 {
ad6c27b7 2063 // Crude replacement to handle new flickr domain policy (They prefer www. now)
45034273
SS
2064 $url = str_replace('http://flickr.com/','http://www.flickr.com/',$url);
2065
2066 // Is this a link to an image, or to a flickr page ?
2067 $imageurl='';
5046bcb6 2068 if (endsWith(parse_url($url, PHP_URL_PATH), '.jpg'))
ad6c27b7 2069 { // This is a direct link to an image. e.g. http://farm1.staticflickr.com/5/5921913_ac83ed27bd_o.jpg
45034273
SS
2070 preg_match('!(http://farm\d+\.staticflickr\.com/\d+/\d+_\w+_)\w.jpg!',$url,$matches);
2071 if (!empty($matches[1])) $imageurl=$matches[1].'m.jpg';
2072 }
ad6c27b7 2073 else // This is a flickr page (html)
45034273 2074 {
451314eb 2075 // Get the flickr html page.
1557cefb 2076 list($headers, $content) = get_http_response($url, 20);
451314eb 2077 if (strpos($headers[0], '200 OK') !== false)
45034273 2078 {
ad6c27b7 2079 // flickr now nicely provides the URL of the thumbnail in each flickr page.
1557cefb 2080 preg_match('!<link rel=\"image_src\" href=\"(.+?)\"!', $content, $matches);
45034273
SS
2081 if (!empty($matches[1])) $imageurl=$matches[1];
2082
2083 // In albums (and some other pages), the link rel="image_src" is not provided,
2084 // but flickr provides:
2085 // <meta property="og:image" content="http://farm4.staticflickr.com/3398/3239339068_25d13535ff_z.jpg" />
2086 if ($imageurl=='')
2087 {
1557cefb 2088 preg_match('!<meta property=\"og:image\" content=\"(.+?)\"!', $content, $matches);
45034273
SS
2089 if (!empty($matches[1])) $imageurl=$matches[1];
2090 }
2091 }
2092 }
2093
2094 if ($imageurl!='')
2095 { // Let's download the image.
451314eb 2096 // Image is 240x120, so 10 seconds to download should be enough.
1557cefb 2097 list($headers, $content) = get_http_response($imageurl, 10);
451314eb 2098 if (strpos($headers[0], '200 OK') !== false) {
1557cefb 2099 // Save image to cache.
684e662a 2100 file_put_contents($cacheDir .'/'. $thumbname, $content);
45034273 2101 header('Content-Type: image/jpeg');
1557cefb 2102 echo $content;
45034273
SS
2103 return;
2104 }
2105 }
2106 }
2107
2108 elseif ($domain=='vimeo.com' )
2109 {
2110 // This is more complex: we have to perform a HTTP request, then parse the result.
ad6c27b7 2111 // Maybe we should deport this to JavaScript ? Example: http://stackoverflow.com/questions/1361149/get-img-thumbnails-from-vimeo/4285098#4285098
45034273 2112 $vid = substr(parse_url($url,PHP_URL_PATH),1);
1557cefb 2113 list($headers, $content) = get_http_response('https://vimeo.com/api/v2/video/'.escape($vid).'.php', 5);
451314eb 2114 if (strpos($headers[0], '200 OK') !== false) {
1557cefb 2115 $t = unserialize($content);
45034273
SS
2116 $imageurl = $t[0]['thumbnail_medium'];
2117 // Then we download the image and serve it to our client.
1557cefb 2118 list($headers, $content) = get_http_response($imageurl, 10);
451314eb 2119 if (strpos($headers[0], '200 OK') !== false) {
1557cefb 2120 // Save image to cache.
684e662a 2121 file_put_contents($cacheDir .'/'. $thumbname, $content);
45034273 2122 header('Content-Type: image/jpeg');
1557cefb 2123 echo $content;
45034273
SS
2124 return;
2125 }
2126 }
2127 }
2128
2129 elseif ($domain=='ted.com' || endsWith($domain,'.ted.com'))
2130 {
2131 // The thumbnail for TED talks is located in the <link rel="image_src" [...]> tag on that page
2132 // http://www.ted.com/talks/mikko_hypponen_fighting_viruses_defending_the_net.html
2133 // <link rel="image_src" href="http://images.ted.com/images/ted/28bced335898ba54d4441809c5b1112ffaf36781_389x292.jpg" />
1557cefb 2134 list($headers, $content) = get_http_response($url, 5);
451314eb 2135 if (strpos($headers[0], '200 OK') !== false) {
45034273 2136 // Extract the link to the thumbnail
1557cefb 2137 preg_match('!link rel="image_src" href="(http://images.ted.com/images/ted/.+_\d+x\d+\.jpg)"!', $content, $matches);
45034273
SS
2138 if (!empty($matches[1]))
2139 { // Let's download the image.
2140 $imageurl=$matches[1];
451314eb 2141 // No control on image size, so wait long enough
1557cefb 2142 list($headers, $content) = get_http_response($imageurl, 20);
451314eb 2143 if (strpos($headers[0], '200 OK') !== false) {
684e662a 2144 $filepath = $cacheDir .'/'. $thumbname;
1557cefb 2145 file_put_contents($filepath, $content); // Save image to cache.
45034273
SS
2146 if (resizeImage($filepath))
2147 {
2148 header('Content-Type: image/jpeg');
2149 echo file_get_contents($filepath);
2150 return;
2151 }
2152 }
2153 }
2154 }
2155 }
bb8f712d 2156
45034273
SS
2157 elseif ($domain=='xkcd.com' || endsWith($domain,'.xkcd.com'))
2158 {
2159 // There is no thumbnail available for xkcd comics, so download the whole image and resize it.
2160 // http://xkcd.com/327/
2161 // <img src="http://imgs.xkcd.com/comics/exploits_of_a_mom.png" title="<BLABLA>" alt="<BLABLA>" />
1557cefb 2162 list($headers, $content) = get_http_response($url, 5);
451314eb 2163 if (strpos($headers[0], '200 OK') !== false) {
45034273 2164 // Extract the link to the thumbnail
1557cefb 2165 preg_match('!<img src="(http://imgs.xkcd.com/comics/.*)" title="[^s]!', $content, $matches);
45034273
SS
2166 if (!empty($matches[1]))
2167 { // Let's download the image.
2168 $imageurl=$matches[1];
451314eb 2169 // No control on image size, so wait long enough
1557cefb 2170 list($headers, $content) = get_http_response($imageurl, 20);
451314eb 2171 if (strpos($headers[0], '200 OK') !== false) {
684e662a 2172 $filepath = $cacheDir.'/'.$thumbname;
1557cefb
A
2173 // Save image to cache.
2174 file_put_contents($filepath, $content);
45034273
SS
2175 if (resizeImage($filepath))
2176 {
2177 header('Content-Type: image/jpeg');
2178 echo file_get_contents($filepath);
2179 return;
2180 }
2181 }
2182 }
2183 }
bb8f712d 2184 }
45034273
SS
2185
2186 else
2187 {
2188 // For all other domains, we try to download the image and make a thumbnail.
451314eb 2189 // We allow 30 seconds max to download (and downloads are limited to 4 Mb)
1557cefb 2190 list($headers, $content) = get_http_response($url, 30);
451314eb 2191 if (strpos($headers[0], '200 OK') !== false) {
684e662a 2192 $filepath = $cacheDir .'/'.$thumbname;
1557cefb
A
2193 // Save image to cache.
2194 file_put_contents($filepath, $content);
45034273
SS
2195 if (resizeImage($filepath))
2196 {
2197 header('Content-Type: image/jpeg');
2198 echo file_get_contents($filepath);
2199 return;
2200 }
2201 }
2202 }
2203
2204
2205 // Otherwise, return an empty image (8x8 transparent gif)
2206 $blankgif = base64_decode('R0lGODlhCAAIAIAAAP///////yH5BAEKAAEALAAAAAAIAAgAAAIHjI+py+1dAAA7');
684e662a
A
2207 // Also put something in cache so that this URL is not requested twice.
2208 file_put_contents($cacheDir .'/'. $blankname, $blankgif);
45034273
SS
2209 header('Content-Type: image/gif');
2210 echo $blankgif;
2211}
2212
2213// Make a thumbnail of the image (to width: 120 pixels)
2214// Returns true if success, false otherwise.
2215function resizeImage($filepath)
2216{
2217 if (!function_exists('imagecreatefromjpeg')) return false; // GD not present: no thumbnail possible.
2218
2219 // Trick: some stupid people rename GIF as JPEG... or else.
2220 // So we really try to open each image type whatever the extension is.
2221 $header=file_get_contents($filepath,false,NULL,0,256); // Read first 256 bytes and try to sniff file type.
2222 $im=false;
2223 $i=strpos($header,'GIF8'); if (($i!==false) && ($i==0)) $im = imagecreatefromgif($filepath); // Well this is crude, but it should be enough.
2224 $i=strpos($header,'PNG'); if (($i!==false) && ($i==1)) $im = imagecreatefrompng($filepath);
2225 $i=strpos($header,'JFIF'); if ($i!==false) $im = imagecreatefromjpeg($filepath);
2226 if (!$im) return false; // Unable to open image (corrupted or not an image)
2227 $w = imagesx($im);
2228 $h = imagesy($im);
2229 $ystart = 0; $yheight=$h;
2230 if ($h>$w) { $ystart= ($h/2)-($w/2); $yheight=$w/2; }
2231 $nw = 120; // Desired width
2232 $nh = min(floor(($h*$nw)/$w),120); // Compute new width/height, but maximum 120 pixels height.
2233 // Resize image:
2234 $im2 = imagecreatetruecolor($nw,$nh);
2235 imagecopyresampled($im2, $im, 0, 0, 0, $ystart, $nw, $nh, $w, $yheight);
2236 imageinterlace($im2,true); // For progressive JPEG.
2237 $tempname=$filepath.'_TEMP.jpg';
2238 imagejpeg($im2, $tempname, 90);
2239 imagedestroy($im);
2240 imagedestroy($im2);
9e820906 2241 unlink($filepath);
45034273
SS
2242 rename($tempname,$filepath); // Overwrite original picture with thumbnail.
2243 return true;
2244}
2245
278d9ee2
A
2246if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=genthumbnail')) { genThumbnail($conf); exit; } // Thumbnail generation/cache does not need the link database.
2247if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=dailyrss')) { showDailyRSS($conf); exit; }
684e662a 2248if (!isset($_SESSION['LINKS_PER_PAGE'])) {
da10377b 2249 $_SESSION['LINKS_PER_PAGE'] = $conf->get('general.links_per_page', 20);
684e662a 2250}
18e67967 2251
3b67b222
A
2252try {
2253 $history = new History($conf->get('resource.history'));
2254} catch(Exception $e) {
2255 die($e->getMessage());
2256}
2257
18e67967
A
2258$linkDb = new LinkDB(
2259 $conf->get('resource.datastore'),
2260 isLoggedIn(),
2261 $conf->get('privacy.hide_public_links'),
2262 $conf->get('redirector.url'),
2263 $conf->get('redirector.encode_url')
2264);
2265
2266$container = new \Slim\Container();
2267$container['conf'] = $conf;
2268$container['plugins'] = $pluginManager;
813849e5 2269$container['history'] = $history;
18e67967
A
2270$app = new \Slim\App($container);
2271
2272// REST API routes
2273$app->group('/api/v1', function() {
68016e37
A
2274 $this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo')->setName('getInfo');
2275 $this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks')->setName('getLinks');
2276 $this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink')->setName('getLink');
2277 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
cf9181dd 2278 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
0843848c 2279 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
61d40693 2280 $this->get('/history', '\Shaarli\Api\Controllers\History:getHistory')->setName('getHistory');
465b1c40 2281})->add('\Shaarli\Api\ApiMiddleware');
18e67967
A
2282
2283$response = $app->run(true);
2284// Hack to make Slim and Shaarli router work together:
16e3d006
A
2285// If a Slim route isn't found and NOT API call, we call renderPage().
2286if ($response->getStatusCode() == 404 && strpos($_SERVER['REQUEST_URI'], '/api/v1') === false) {
18e67967
A
2287 // We use UTF-8 for proper international characters handling.
2288 header('Content-Type: text/html; charset=utf-8');
813849e5 2289 renderPage($conf, $pluginManager, $linkDb, $history);
18e67967
A
2290} else {
2291 $app->respond($response);
2292}