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