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