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