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