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