]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - index.php
lint: apply phpcbf to index.php
[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 30// High execution time in case of problematic imports/exports.
93bf0918 31ini_set('max_input_time', '60');
28bb2b74
V
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"
87f14312 51 ."- https://shaarli.readthedocs.io/en/master/Server-configuration/\n"
cc8f572b 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';
3c66e564 78use \Shaarli\Config\ConfigManager;
e85b7a05 79use \Shaarli\Languages;
fab87c26
V
80use \Shaarli\Security\LoginManager;
81use \Shaarli\Security\SessionManager;
e85b7a05
A
82use \Shaarli\ThemeUtils;
83use \Shaarli\Thumbnailer;
ca74886f 84
d1e2f8e5
V
85// Ensure the PHP version is supported
86try {
3947bbb0 87 ApplicationUtils::checkPHPVersion('5.5', PHP_VERSION);
93bf0918 88} catch (Exception $exc) {
d1e2f8e5 89 header('Content-Type: text/plain; charset=utf-8');
2e28269b 90 echo $exc->getMessage();
d1e2f8e5
V
91 exit;
92}
93
b3e1f92e 94define('SHAARLI_VERSION', ApplicationUtils::getVersion(__DIR__ .'/'. ApplicationUtils::$VERSION_FILE));
b786c883 95
06b6660a
A
96// Force cookie path (but do not change lifetime)
97$cookie = session_get_cookie_params();
98$cookiedir = '';
99if (dirname($_SERVER['SCRIPT_NAME']) != '/') {
100 $cookiedir = dirname($_SERVER["SCRIPT_NAME"]).'/';
101}
102// Set default cookie expiration and path.
103session_set_cookie_params($cookie['lifetime'], $cookiedir, $_SERVER['SERVER_NAME']);
104// Set session parameters on server side.
06b6660a
A
105// Use cookies to store session.
106ini_set('session.use_cookies', 1);
107// Force cookies for session (phpsessionID forbidden in URL).
108ini_set('session.use_only_cookies', 1);
109// Prevent PHP form using sessionID in URL if cookies are disabled.
110ini_set('session.use_trans_sid', false);
111
06b6660a
A
112session_name('shaarli');
113// Start session if needed (Some server auto-start sessions).
f6380409 114if (session_status() == PHP_SESSION_NONE) {
06b6660a
A
115 session_start();
116}
117
68bc2135 118// Regenerate session ID if invalid or not defined in cookie.
fd7d8461 119if (isset($_COOKIE['shaarli']) && !SessionManager::checkId($_COOKIE['shaarli'])) {
68bc2135
V
120 session_regenerate_id(true);
121 $_COOKIE['shaarli'] = session_id();
122}
123
278d9ee2 124$conf = new ConfigManager();
ebd650c0 125$sessionManager = new SessionManager($_SESSION, $conf);
63ea23c2 126$loginManager = new LoginManager($GLOBALS, $conf, $sessionManager);
c689e108 127$loginManager->generateStaySignedInToken($_SERVER['REMOTE_ADDR']);
84742084 128$clientIpId = client_ip_id($_SERVER);
12266213 129
b7c412d4
A
130// LC_MESSAGES isn't defined without php-intl, in this case use LC_COLLATE locale instead.
131if (! defined('LC_MESSAGES')) {
132 define('LC_MESSAGES', LC_COLLATE);
133}
134
12266213
A
135// Sniff browser language and set date format accordingly.
136if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
137 autoLocale($_SERVER['HTTP_ACCEPT_LANGUAGE']);
138}
139
140new Languages(setlocale(LC_MESSAGES, 0), $conf);
141
7f179985 142$conf->setEmpty('general.timezone', date_default_timezone_get());
12266213 143$conf->setEmpty('general.title', t('Shared links on '). escape(index_url($_SERVER)));
adc4aee8 144RainTPL::$tpl_dir = $conf->get('resource.raintpl_tpl').'/'.$conf->get('resource.theme').'/'; // template directory
894a3c4b 145RainTPL::$cache_dir = $conf->get('resource.raintpl_tmp'); // cache directory
45034273 146
278d9ee2 147$pluginManager = new PluginManager($conf);
da10377b 148$pluginManager->load($conf->get('general.enabled_plugins'));
6fc14d53 149
da10377b 150date_default_timezone_set($conf->get('general.timezone', 'UTC'));
d93d51b2 151
45034273
SS
152ob_start(); // Output buffering for the page cache.
153
45034273
SS
154// Prevent caching on client side or proxy: (yes, it's ugly)
155header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
156header("Cache-Control: no-store, no-cache, must-revalidate");
157header("Cache-Control: post-check=0, pre-check=0", false);
158header("Pragma: no-cache");
159
278d9ee2 160if (! is_file($conf->getConfigFileExt())) {
2e28269b 161 // Ensure Shaarli has proper access to its resources
278d9ee2 162 $errors = ApplicationUtils::checkResourcePermissions($conf);
2e28269b
V
163
164 if ($errors != array()) {
12266213 165 $message = '<p>'. t('Insufficient permissions:') .'</p><ul>';
2e28269b
V
166
167 foreach ($errors as $error) {
168 $message .= '<li>'.$error.'</li>';
169 }
170 $message .= '</ul>';
171
172 header('Content-Type: text/html; charset=utf-8');
173 echo $message;
174 exit;
175 }
176
177 // Display the installation form if no existing config is found
cad4251a 178 install($conf, $sessionManager, $loginManager);
50c9a12e 179}
8a80e4fe 180
c689e108 181$loginManager->checkLoginState($_COOKIE, $clientIpId);
45034273 182
278d9ee2 183/**
89ccc83b 184 * Adapter function to ensure compatibility with third-party templates
278d9ee2 185 *
89ccc83b
V
186 * @see https://github.com/shaarli/Shaarli/pull/1086
187 *
188 * @return bool true when the user is logged in, false otherwise
278d9ee2 189 */
45034273
SS
190function isLoggedIn()
191{
63ea23c2
V
192 global $loginManager;
193 return $loginManager->isLoggedIn();
45034273
SS
194}
195
63ea23c2 196
45034273
SS
197// ------------------------------------------------------------------------------------------
198// Process login form: Check if login/password is correct.
db45a36a 199if (isset($_POST['login'])) {
44acf706
V
200 if (! $loginManager->canLogin($_SERVER)) {
201 die(t('I said: NO. You are banned for the moment. Go away.'));
202 }
278d9ee2 203 if (isset($_POST['password'])
ebd650c0 204 && $sessionManager->checkToken($_POST['token'])
84742084 205 && $loginManager->checkCredentials($_SERVER['REMOTE_ADDR'], $clientIpId, $_POST['login'], $_POST['password'])
44acf706 206 ) {
44acf706
V
207 $loginManager->handleSuccessfulLogin($_SERVER);
208
51f0128c
V
209 $cookiedir = '';
210 if (dirname($_SERVER['SCRIPT_NAME']) != '/') {
ad6c27b7 211 // Note: Never forget the trailing slash on the cookie path!
51f0128c 212 $cookiedir = dirname($_SERVER["SCRIPT_NAME"]) . '/';
45034273 213 }
51f0128c
V
214
215 if (!empty($_POST['longlastingsession'])) {
216 // Keep the session cookie even after the browser closes
217 $sessionManager->setStaySignedIn(true);
218 $expirationTime = $sessionManager->extendSession();
219
220 setcookie(
c689e108
V
221 $loginManager::$STAY_SIGNED_IN_COOKIE,
222 $loginManager->getStaySignedInToken(),
51f0128c
V
223 $expirationTime,
224 WEB_PATH
225 );
51f0128c
V
226 } else {
227 // Standard session expiration (=when browser closes)
228 $expirationTime = 0;
45034273 229 }
f4c84ad7 230
51f0128c
V
231 // Send cookie with the new expiration date to the browser
232 session_set_cookie_params($expirationTime, $cookiedir, $_SERVER['SERVER_NAME']);
233 session_regenerate_id(true);
234
45034273 235 // Optional redirect after login:
5fbabbb9
A
236 if (isset($_GET['post'])) {
237 $uri = '?post='. urlencode($_GET['post']);
0b04f797 238 foreach (array('description', 'source', 'title', 'tags') as $param) {
5fbabbb9
A
239 if (!empty($_GET[$param])) {
240 $uri .= '&'.$param.'='.urlencode($_GET[$param]);
241 }
242 }
243 header('Location: '. $uri);
244 exit;
245 }
246
247 if (isset($_GET['edit_link'])) {
248 header('Location: ?edit_link='. escape($_GET['edit_link']));
249 exit;
250 }
251
252 if (isset($_POST['returnurl'])) {
253 // Prevent loops over login screen.
254 if (strpos($_POST['returnurl'], 'do=login') === false) {
e15f08d7 255 header('Location: '. generateLocation($_POST['returnurl'], $_SERVER['HTTP_HOST']));
5fbabbb9
A
256 exit;
257 }
45034273 258 }
93bf0918
V
259 header('Location: ?');
260 exit;
44acf706
V
261 } else {
262 $loginManager->handleFailedLogin($_SERVER);
65c002ca 263 $redir = '&username='. urlencode($_POST['login']);
5fbabbb9 264 if (isset($_GET['post'])) {
85c4bdc2 265 $redir .= '&post=' . urlencode($_GET['post']);
0b04f797 266 foreach (array('description', 'source', 'title', 'tags') as $param) {
5fbabbb9
A
267 if (!empty($_GET[$param])) {
268 $redir .= '&' . $param . '=' . urlencode($_GET[$param]);
269 }
270 }
271 }
12266213
A
272 // Redirect to login screen.
273 echo '<script>alert("'. t("Wrong login/password.") .'");document.location=\'?do=login'.$redir.'\';</script>';
45034273
SS
274 exit;
275 }
276}
277
45034273
SS
278// ------------------------------------------------------------------------------------------
279// Token management for XSRF protection
280// Token should be used in any form which acts on data (create,update,delete,import...).
93bf0918
V
281if (!isset($_SESSION['tokens'])) {
282 $_SESSION['tokens']=array(); // Token are attached to the session.
283}
45034273 284
278d9ee2
A
285/**
286 * Daily RSS feed: 1 RSS entry per day giving all the links on that day.
287 * Gives the last 7 days (which have links).
288 * This RSS feed cannot be filtered.
289 *
63ea23c2
V
290 * @param ConfigManager $conf Configuration Manager instance
291 * @param LoginManager $loginManager LoginManager instance
278d9ee2 292 */
93bf0918
V
293function showDailyRSS($conf, $loginManager)
294{
45034273 295 // Cache system
5046bcb6 296 $query = $_SERVER['QUERY_STRING'];
01e48f26 297 $cache = new CachedPage(
684e662a 298 $conf->get('config.PAGE_CACHE'),
482d67bd 299 page_url($_SERVER),
93bf0918 300 startsWith($query, 'do=dailyrss') && !$loginManager->isLoggedIn()
01e48f26 301 );
f3b8f9f0
A
302 $cached = $cache->cachedVersion();
303 if (!empty($cached)) {
304 echo $cached;
305 exit;
306 }
9f15ca9e 307
f3b8f9f0
A
308 // If cached was not found (or not usable), then read the database and build the response:
309 // Read links from database (and filter private links if used it not logged in).
9f15ca9e 310 $LINKSDB = new LinkDB(
894a3c4b 311 $conf->get('resource.datastore'),
63ea23c2 312 $loginManager->isLoggedIn(),
894a3c4b
A
313 $conf->get('privacy.hide_public_links'),
314 $conf->get('redirector.url'),
315 $conf->get('redirector.encode_url')
9f15ca9e 316 );
bb8f712d 317
45034273 318 /* Some Shaarlies may have very few links, so we need to look
01878a75 319 back in time until we have enough days ($nb_of_days).
45034273 320 */
f3b8f9f0 321 $nb_of_days = 7; // We take 7 days.
684e662a 322 $today = date('Ymd');
f3b8f9f0
A
323 $days = array();
324
d592daea
A
325 foreach ($LINKSDB as $link) {
326 $day = $link['created']->format('Ymd'); // Extract day (without time)
01878a75 327 if (strcmp($day, $today) < 0) {
f3b8f9f0
A
328 if (empty($days[$day])) {
329 $days[$day] = array();
330 }
d592daea 331 $days[$day][] = $link;
f3b8f9f0
A
332 }
333
334 if (count($days) > $nb_of_days) {
335 break; // Have we collected enough days?
45034273 336 }
45034273 337 }
bb8f712d 338
45034273
SS
339 // Build the RSS feed.
340 header('Content-Type: application/rss+xml; charset=utf-8');
482d67bd 341 $pageaddr = escape(index_url($_SERVER));
45034273 342 echo '<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">';
f3b8f9f0 343 echo '<channel>';
da10377b 344 echo '<title>Daily - '. $conf->get('general.title') . '</title>';
f3b8f9f0
A
345 echo '<link>'. $pageaddr .'</link>';
346 echo '<description>Daily shared links</description>';
347 echo '<language>en-en</language>';
348 echo '<copyright>'. $pageaddr .'</copyright>'. PHP_EOL;
349
350 // For each day.
d592daea 351 foreach ($days as $day => $links) {
205a4277 352 $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000');
482d67bd 353 $absurl = escape(index_url($_SERVER).'?do=daily&day='.$day); // Absolute URL of the corresponding "Daily" page.
bb8f712d 354
45034273 355 // We pre-format some fields for proper output.
d592daea 356 foreach ($links as &$link) {
fd08b50a
A
357 $link['formatedDescription'] = format_description(
358 $link['description'],
359 $conf->get('redirector.url'),
360 $conf->get('redirector.encode_url')
361 );
d592daea
A
362 $link['timestamp'] = $link['created']->getTimestamp();
363 if (startsWith($link['url'], '?')) {
364 $link['url'] = index_url($_SERVER) . $link['url']; // make permalink URL absolute
f3b8f9f0 365 }
45034273 366 }
f3b8f9f0 367
45034273 368 // Then build the HTML for this day:
bb8f712d 369 $tpl = new RainTPL;
da10377b 370 $tpl->assign('title', $conf->get('general.title'));
205a4277 371 $tpl->assign('daydate', $dayDate->getTimestamp());
f3b8f9f0
A
372 $tpl->assign('absurl', $absurl);
373 $tpl->assign('links', $links);
205a4277 374 $tpl->assign('rssdate', escape($dayDate->format(DateTime::RSS)));
894a3c4b 375 $tpl->assign('hide_timestamps', $conf->get('privacy.hide_timestamps', false));
bf3c9934 376 $tpl->assign('index_url', $pageaddr);
724f1e32 377 $html = $tpl->draw('dailyrss', true);
45034273 378
f3b8f9f0 379 echo $html . PHP_EOL;
bb8f712d 380 }
482d67bd 381 echo '</channel></rss><!-- Cached version of '. escape(page_url($_SERVER)) .' -->';
bb8f712d 382
45034273
SS
383 $cache->cache(ob_get_contents());
384 ob_end_flush();
385 exit;
386}
387
38603b24
A
388/**
389 * Show the 'Daily' page.
390 *
278d9ee2
A
391 * @param PageBuilder $pageBuilder Template engine wrapper.
392 * @param LinkDB $LINKSDB LinkDB instance.
393 * @param ConfigManager $conf Configuration Manager instance.
89ccc83b
V
394 * @param PluginManager $pluginManager Plugin Manager instance.
395 * @param LoginManager $loginManager Login Manager instance
38603b24 396 */
89ccc83b 397function showDaily($pageBuilder, $LINKSDB, $conf, $pluginManager, $loginManager)
45034273 398{
5a0045be
WE
399 $day = date('Ymd', strtotime('-1 day')); // Yesterday, in format YYYYMMDD.
400 if (isset($_GET['day'])) {
93bf0918 401 $day = $_GET['day'];
5a0045be 402 }
bb8f712d 403
45034273 404 $days = $LINKSDB->days();
5a0045be
WE
405 $i = array_search($day, $days);
406 if ($i === false && count($days)) {
407 // no links for day, but at least one day with links
408 $i = count($days) - 1;
409 $day = $days[$i];
45034273 410 }
5a0045be
WE
411 $previousday = '';
412 $nextday = '';
45034273 413
5a0045be
WE
414 if ($i !== false) {
415 if ($i >= 1) {
416 $previousday=$days[$i - 1];
417 }
418 if ($i < count($days) - 1) {
93bf0918 419 $nextday = $days[$i + 1];
5a0045be
WE
420 }
421 }
9186ab95 422 try {
528a6f8a 423 $linksToDisplay = $LINKSDB->filterDay($day);
9186ab95
V
424 } catch (Exception $exc) {
425 error_log($exc);
d1e2f8e5 426 $linksToDisplay = array();
9186ab95
V
427 }
428
45034273 429 // We pre-format some fields for proper output.
93bf0918
V
430 foreach ($linksToDisplay as $key => $link) {
431 $taglist = explode(' ', $link['tags']);
dd62b9ba
SS
432 uasort($taglist, 'strcasecmp');
433 $linksToDisplay[$key]['taglist']=$taglist;
fd08b50a
A
434 $linksToDisplay[$key]['formatedDescription'] = format_description(
435 $link['description'],
436 $conf->get('redirector.url'),
437 $conf->get('redirector.encode_url')
438 );
01878a75 439 $linksToDisplay[$key]['timestamp'] = $link['created']->getTimestamp();
45034273 440 }
bb8f712d 441
50142efd 442 $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000');
443 $data = array(
444 'pagetitle' => $conf->get('general.title') .' - '. format_date($dayDate, false),
445 'linksToDisplay' => $linksToDisplay,
446 'day' => $dayDate->getTimestamp(),
447 'dayDate' => $dayDate,
448 'previousday' => $previousday,
449 'nextday' => $nextday,
450 );
451
452 /* Hook is called before column construction so that plugins don't have
453 to deal with columns. */
63ea23c2 454 $pluginManager->executeHooks('render_daily', $data, array('loggedin' => $loginManager->isLoggedIn()));
50142efd 455
45034273 456 /* We need to spread the articles on 3 columns.
ad6c27b7 457 I did not want to use a JavaScript lib like http://masonry.desandro.com/
bb8f712d 458 so I manually spread entries with a simple method: I roughly evaluate the
45034273
SS
459 height of a div according to title and description length.
460 */
5a0045be
WE
461 $columns = array(array(), array(), array()); // Entries to display, for each column.
462 $fill = array(0, 0, 0); // Rough estimate of columns fill.
93bf0918 463 foreach ($data['linksToDisplay'] as $key => $link) {
45034273
SS
464 // Roughly estimate length of entry (by counting characters)
465 // Title: 30 chars = 1 line. 1 line is 30 pixels height.
466 // Description: 836 characters gives roughly 342 pixel height.
ad6c27b7 467 // This is not perfect, but it's usually OK.
5a0045be
WE
468 $length = strlen($link['title']) + (342 * strlen($link['description'])) / 836;
469 if ($link['thumbnail']) {
93bf0918 470 $length += 100; // 1 thumbnails roughly takes 100 pixels height.
5a0045be 471 }
45034273 472 // Then put in column which is the less filled:
5a0045be
WE
473 $smallest = min($fill); // find smallest value in array.
474 $index = array_search($smallest, $fill); // find index of this smallest value.
475 array_push($columns[$index], $link); // Put entry in this column.
476 $fill[$index] += $length;
45034273 477 }
38603b24 478
50142efd 479 $data['cols'] = $columns;
6fc14d53
A
480
481 foreach ($data as $key => $value) {
38603b24 482 $pageBuilder->assign($key, $value);
6fc14d53
A
483 }
484
980efd6c 485 $pageBuilder->assign('pagetitle', t('Daily') .' - '. $conf->get('general.title', 'Shaarli'));
38603b24 486 $pageBuilder->renderPage('daily');
45034273
SS
487 exit;
488}
489
278d9ee2
A
490/**
491 * Renders the linklist
492 *
493 * @param pageBuilder $PAGE pageBuilder instance.
494 * @param LinkDB $LINKSDB LinkDB instance.
495 * @param ConfigManager $conf Configuration Manager instance.
496 * @param PluginManager $pluginManager Plugin Manager instance.
497 */
93bf0918
V
498function showLinkList($PAGE, $LINKSDB, $conf, $pluginManager, $loginManager)
499{
500 buildLinkList($PAGE, $LINKSDB, $conf, $pluginManager, $loginManager);
6fc14d53
A
501 $PAGE->renderPage('linklist');
502}
503
278d9ee2
A
504/**
505 * Render HTML page (according to URL parameters and user rights)
506 *
ebd650c0
V
507 * @param ConfigManager $conf Configuration Manager instance.
508 * @param PluginManager $pluginManager Plugin Manager instance,
509 * @param LinkDB $LINKSDB
510 * @param History $history instance
511 * @param SessionManager $sessionManager SessionManager instance
44acf706 512 * @param LoginManager $loginManager LoginManager instance
278d9ee2 513 */
44acf706 514function renderPage($conf, $pluginManager, $LINKSDB, $history, $sessionManager, $loginManager)
45034273 515{
510377d2 516 $updater = new Updater(
894a3c4b 517 read_updates_file($conf->get('resource.updates')),
510377d2 518 $LINKSDB,
278d9ee2 519 $conf,
28f26524
A
520 $loginManager->isLoggedIn(),
521 $_SESSION
510377d2
A
522 );
523 try {
524 $newUpdates = $updater->update();
525 if (! empty($newUpdates)) {
526 write_updates_file(
894a3c4b 527 $conf->get('resource.updates'),
510377d2
A
528 $updater->getDoneUpdates()
529 );
530 }
93bf0918 531 } catch (Exception $e) {
510377d2
A
532 die($e->getMessage());
533 }
534
28f26524 535 $PAGE = new PageBuilder($conf, $_SESSION, $LINKSDB, $sessionManager->generateToken(), $loginManager->isLoggedIn());
141a86c5
A
536 $PAGE->assign('linkcount', count($LINKSDB));
537 $PAGE->assign('privateLinkcount', count_private($LINKSDB));
7fde6de1 538 $PAGE->assign('plugin_errors', $pluginManager->getErrors());
6fc14d53
A
539
540 // Determine which page will be rendered.
541 $query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : '';
63ea23c2 542 $targetPage = Router::findPage($query, $_GET, $loginManager->isLoggedIn());
6fc14d53 543
93bf0918 544 if (// if the user isn't logged in
63ea23c2 545 !$loginManager->isLoggedIn() &&
27e21231
WE
546 // and Shaarli doesn't have public content...
547 $conf->get('privacy.hide_public_links') &&
548 // and is configured to enforce the login
549 $conf->get('privacy.force_login') &&
550 // and the current page isn't already the login page
551 $targetPage !== Router::$PAGE_LOGIN &&
552 // and the user is not requesting a feed (which would lead to a different content-type as expected)
553 $targetPage !== Router::$PAGE_FEED_ATOM &&
554 $targetPage !== Router::$PAGE_FEED_RSS
555 ) {
556 // force current page to be the login page
557 $targetPage = Router::$PAGE_LOGIN;
558 }
559
6fc14d53
A
560 // Call plugin hooks for header, footer and includes, specifying which page will be rendered.
561 // Then assign generated data to RainTPL.
562 $common_hooks = array(
fea5db7a 563 'includes',
6fc14d53
A
564 'header',
565 'footer',
6fc14d53 566 );
278d9ee2 567
93bf0918 568 foreach ($common_hooks as $name) {
6fc14d53 569 $plugin_data = array();
93bf0918
V
570 $pluginManager->executeHooks(
571 'render_' . $name,
572 $plugin_data,
6fc14d53
A
573 array(
574 'target' => $targetPage,
63ea23c2 575 'loggedin' => $loginManager->isLoggedIn()
6fc14d53
A
576 )
577 );
578 $PAGE->assign('plugins_' . $name, $plugin_data);
579 }
580
45034273 581 // -------- Display login form.
93bf0918
V
582 if ($targetPage == Router::$PAGE_LOGIN) {
583 if ($conf->get('security.open_shaarli')) {
584 header('Location: ?');
585 exit;
586 } // No need to login for open Shaarli
85c4bdc2
A
587 if (isset($_GET['username'])) {
588 $PAGE->assign('username', escape($_GET['username']));
589 }
93bf0918 590 $PAGE->assign('returnurl', (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']):''));
2e07e775
WE
591 // add default state of the 'remember me' checkbox
592 $PAGE->assign('remember_user_default', $conf->get('privacy.remember_user_default'));
44acf706 593 $PAGE->assign('user_can_login', $loginManager->canLogin($_SERVER));
980efd6c 594 $PAGE->assign('pagetitle', t('Login') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
595 $PAGE->renderPage('loginform');
596 exit;
597 }
598 // -------- User wants to logout.
93bf0918 599 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=logout')) {
894a3c4b 600 invalidateCaches($conf->get('resource.page_cache'));
51f0128c 601 $sessionManager->logout();
c689e108 602 setcookie(LoginManager::$STAY_SIGNED_IN_COOKIE, 'false', 0, WEB_PATH);
45034273
SS
603 header('Location: ?');
604 exit;
605 }
606
607 // -------- Picture wall
93bf0918 608 if ($targetPage == Router::$PAGE_PICWALL) {
b302b3c5
A
609 $PAGE->assign('pagetitle', t('Picture wall') .' - '. $conf->get('general.title', 'Shaarli'));
610 if (! $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) === Thumbnailer::MODE_NONE) {
611 $PAGE->assign('linksToDisplay', []);
e85b7a05 612 $PAGE->renderPage('picwall');
1b93137e
A
613 exit;
614 }
615
ad6c27b7 616 // Optionally filter the results:
528a6f8a 617 $links = $LINKSDB->filterSearch($_GET);
822bffce 618 $linksToDisplay = array();
45034273
SS
619
620 // Get only links which have a thumbnail.
28f26524 621 // Note: we do not retrieve thumbnails here, the request is too heavy.
93bf0918 622 foreach ($links as $key => $link) {
1b93137e
A
623 if (isset($link['thumbnail']) && $link['thumbnail'] !== false) {
624 $linksToDisplay[] = $link; // Add to array.
45034273
SS
625 }
626 }
f3db3774 627
6fc14d53 628 $data = array(
6fc14d53
A
629 'linksToDisplay' => $linksToDisplay,
630 );
63ea23c2 631 $pluginManager->executeHooks('render_picwall', $data, array('loggedin' => $loginManager->isLoggedIn()));
6fc14d53
A
632
633 foreach ($data as $key => $value) {
634 $PAGE->assign($key, $value);
635 }
636
7b4fea0e 637
45034273
SS
638 $PAGE->renderPage('picwall');
639 exit;
640 }
641
642 // -------- Tag cloud
93bf0918 643 if ($targetPage == Router::$PAGE_TAGCLOUD) {
9d4736a3 644 $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : '';
aa4797ba 645 $filteringTags = isset($_GET['searchtags']) ? explode(' ', $_GET['searchtags']) : [];
6ccd0b21 646 $tags = $LINKSDB->linksCountPerTag($filteringTags, $visibility);
a037ac69 647
45034273
SS
648 // We sort tags alphabetically, then choose a font size according to count.
649 // First, find max value.
f1e96a06
A
650 $maxcount = 0;
651 foreach ($tags as $value) {
652 $maxcount = max($maxcount, $value);
653 }
654
f32ec5fb 655 alphabetical_sort($tags, false, true);
f1e96a06 656
b0128609 657 $tagList = array();
93bf0918 658 foreach ($tags as $key => $value) {
49cc8e5d
LC
659 if (in_array($key, $filteringTags)) {
660 continue;
661 }
b0128609
A
662 // Tag font size scaling:
663 // default 15 and 30 logarithm bases affect scaling,
664 // 22 and 6 are arbitrary font sizes for max and min sizes.
665 $size = log($value, 15) / log($maxcount, 30) * 2.2 + 0.8;
666 $tagList[$key] = array(
667 'count' => $value,
668 'size' => number_format($size, 2, '.', ''),
669 );
45034273 670 }
6fc14d53 671
980efd6c 672 $searchTags = implode(' ', escape($filteringTags));
6fc14d53 673 $data = array(
980efd6c 674 'search_tags' => $searchTags,
6fc14d53
A
675 'tags' => $tagList,
676 );
63ea23c2 677 $pluginManager->executeHooks('render_tagcloud', $data, array('loggedin' => $loginManager->isLoggedIn()));
6fc14d53
A
678
679 foreach ($data as $key => $value) {
680 $PAGE->assign($key, $value);
681 }
682
980efd6c
A
683 $searchTags = ! empty($searchTags) ? $searchTags .' - ' : '';
684 $PAGE->assign('pagetitle', $searchTags. t('Tag cloud') .' - '. $conf->get('general.title', 'Shaarli'));
5893529c 685 $PAGE->renderPage('tag.cloud');
bb8f712d 686 exit;
45034273
SS
687 }
688
49cc8e5d 689 // -------- Tag list
93bf0918 690 if ($targetPage == Router::$PAGE_TAGLIST) {
9d4736a3 691 $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : '';
aa4797ba
A
692 $filteringTags = isset($_GET['searchtags']) ? explode(' ', $_GET['searchtags']) : [];
693 $tags = $LINKSDB->linksCountPerTag($filteringTags, $visibility);
49cc8e5d
LC
694 foreach ($filteringTags as $tag) {
695 if (array_key_exists($tag, $tags)) {
696 unset($tags[$tag]);
697 }
698 }
aa4797ba
A
699
700 if (! empty($_GET['sort']) && $_GET['sort'] === 'alpha') {
701 alphabetical_sort($tags, false, true);
702 }
703
980efd6c 704 $searchTags = implode(' ', escape($filteringTags));
aa4797ba 705 $data = [
980efd6c 706 'search_tags' => $searchTags,
aa4797ba
A
707 'tags' => $tags,
708 ];
63ea23c2 709 $pluginManager->executeHooks('render_taglist', $data, ['loggedin' => $loginManager->isLoggedIn()]);
aa4797ba
A
710
711 foreach ($data as $key => $value) {
712 $PAGE->assign($key, $value);
713 }
714
980efd6c
A
715 $searchTags = ! empty($searchTags) ? $searchTags .' - ' : '';
716 $PAGE->assign('pagetitle', $searchTags . t('Tag list') .' - '. $conf->get('general.title', 'Shaarli'));
aa4797ba
A
717 $PAGE->renderPage('tag.list');
718 exit;
719 }
720
38603b24
A
721 // Daily page.
722 if ($targetPage == Router::$PAGE_DAILY) {
89ccc83b 723 showDaily($PAGE, $LINKSDB, $conf, $pluginManager, $loginManager);
38603b24
A
724 }
725
82e36802
A
726 // ATOM and RSS feed.
727 if ($targetPage == Router::$PAGE_FEED_ATOM || $targetPage == Router::$PAGE_FEED_RSS) {
728 $feedType = $targetPage == Router::$PAGE_FEED_RSS ? FeedBuilder::$FEED_RSS : FeedBuilder::$FEED_ATOM;
729 header('Content-Type: application/'. $feedType .'+xml; charset=utf-8');
730
731 // Cache system
732 $query = $_SERVER['QUERY_STRING'];
733 $cache = new CachedPage(
894a3c4b 734 $conf->get('resource.page_cache'),
82e36802 735 page_url($_SERVER),
93bf0918 736 startsWith($query, 'do='. $targetPage) && !$loginManager->isLoggedIn()
82e36802
A
737 );
738 $cached = $cache->cachedVersion();
5f143b72 739 if (!empty($cached)) {
82e36802
A
740 echo $cached;
741 exit;
742 }
69c474b9 743
82e36802 744 // Generate data.
63ea23c2 745 $feedGenerator = new FeedBuilder($LINKSDB, $feedType, $_SERVER, $_GET, $loginManager->isLoggedIn());
82e36802 746 $feedGenerator->setLocale(strtolower(setlocale(LC_COLLATE, 0)));
63ea23c2 747 $feedGenerator->setHideDates($conf->get('privacy.hide_timestamps') && !$loginManager->isLoggedIn());
894a3c4b 748 $feedGenerator->setUsePermalinks(isset($_GET['permalinks']) || !$conf->get('feed.rss_permalinks'));
82e36802
A
749 $data = $feedGenerator->buildData();
750
751 // Process plugin hook.
82e36802 752 $pluginManager->executeHooks('render_feed', $data, array(
63ea23c2 753 'loggedin' => $loginManager->isLoggedIn(),
82e36802
A
754 'target' => $targetPage,
755 ));
756
757 // Render the template.
758 $PAGE->assignAll($data);
759 $PAGE->renderPage('feed.'. $feedType);
760 $cache->cache(ob_get_contents());
761 ob_end_flush();
762 exit;
e67712ba
A
763 }
764
18e67967 765 // Display opensearch plugin (XML)
8f8113b9
A
766 if ($targetPage == Router::$PAGE_OPENSEARCH) {
767 header('Content-Type: application/xml; charset=utf-8');
768 $PAGE->assign('serverurl', index_url($_SERVER));
769 $PAGE->renderPage('opensearch');
770 exit;
771 }
772
45034273 773 // -------- User clicks on a tag in a link: The tag is added to the list of searched tags (searchtags=...)
93bf0918 774 if (isset($_GET['addtag'])) {
45034273 775 // Get previous URL (http_referer) and add the tag to the searchtags parameters in query.
93bf0918
V
776 if (empty($_SERVER['HTTP_REFERER'])) {
777 // In case browser does not send HTTP_REFERER
778 header('Location: ?searchtags='.urlencode($_GET['addtag']));
779 exit;
780 }
781 parse_str(parse_url($_SERVER['HTTP_REFERER'], PHP_URL_QUERY), $params);
732e683b 782
775803a0
A
783 // Prevent redirection loop
784 if (isset($params['addtag'])) {
785 unset($params['addtag']);
786 }
787
732e683b
FE
788 // Check if this tag is already in the search query and ignore it if it is.
789 // Each tag is always separated by a space
6ac95d9c
A
790 if (isset($params['searchtags'])) {
791 $current_tags = explode(' ', $params['searchtags']);
792 } else {
793 $current_tags = array();
794 }
732e683b
FE
795 $addtag = true;
796 foreach ($current_tags as $value) {
797 if ($value === $_GET['addtag']) {
798 $addtag = false;
799 break;
800 }
801 }
802 // Append the tag if necessary
803 if (empty($params['searchtags'])) {
804 $params['searchtags'] = trim($_GET['addtag']);
93bf0918 805 } elseif ($addtag) {
732e683b
FE
806 $params['searchtags'] = trim($params['searchtags']).' '.trim($_GET['addtag']);
807 }
808
45034273
SS
809 unset($params['page']); // We also remove page (keeping the same page has no sense, since the results are different)
810 header('Location: ?'.http_build_query($params));
811 exit;
812 }
813
814 // -------- User clicks on a tag in result count: Remove the tag from the list of searched tags (searchtags=...)
775803a0 815 if (isset($_GET['removetag'])) {
45034273 816 // Get previous URL (http_referer) and remove the tag from the searchtags parameters in query.
775803a0
A
817 if (empty($_SERVER['HTTP_REFERER'])) {
818 header('Location: ?');
819 exit;
820 }
821
822 // In case browser does not send HTTP_REFERER
823 parse_str(parse_url($_SERVER['HTTP_REFERER'], PHP_URL_QUERY), $params);
824
825 // Prevent redirection loop
826 if (isset($params['removetag'])) {
827 unset($params['removetag']);
828 }
829
830 if (isset($params['searchtags'])) {
822bffce 831 $tags = explode(' ', $params['searchtags']);
2c75f8e7
A
832 // Remove value from array $tags.
833 $tags = array_diff($tags, array($_GET['removetag']));
93bf0918 834 $params['searchtags'] = implode(' ', $tags);
2c75f8e7
A
835
836 if (empty($params['searchtags'])) {
775803a0 837 unset($params['searchtags']);
775803a0 838 }
2c75f8e7 839
45034273
SS
840 unset($params['page']); // We also remove page (keeping the same page has no sense, since the results are different)
841 }
842 header('Location: ?'.http_build_query($params));
843 exit;
844 }
845
846 // -------- User wants to change the number of links per page (linksperpage=...)
775803a0
A
847 if (isset($_GET['linksperpage'])) {
848 if (is_numeric($_GET['linksperpage'])) {
849 $_SESSION['LINKS_PER_PAGE']=abs(intval($_GET['linksperpage']));
850 }
851
8bbf02e0
A
852 if (! empty($_SERVER['HTTP_REFERER'])) {
853 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('linksperpage'));
854 } else {
855 $location = '?';
856 }
857 header('Location: '. $location);
45034273
SS
858 exit;
859 }
bb8f712d 860
45034273 861 // -------- User wants to see only private links (toggle)
9d4736a3 862 if (isset($_GET['visibility'])) {
9d4736a3 863 if ($_GET['visibility'] === 'private') {
d2f6d909
A
864 // Visibility not set or not already private, set private, otherwise reset it
865 if (empty($_SESSION['visibility']) || $_SESSION['visibility'] !== 'private') {
866 // See only private links
867 $_SESSION['visibility'] = 'private';
868 } else {
869 unset($_SESSION['visibility']);
870 }
d2d4f993 871 } elseif ($_GET['visibility'] === 'public') {
d2f6d909
A
872 if (empty($_SESSION['visibility']) || $_SESSION['visibility'] !== 'public') {
873 // See only public links
874 $_SESSION['visibility'] = 'public';
875 } else {
876 unset($_SESSION['visibility']);
877 }
45034273 878 }
775803a0 879
8bbf02e0 880 if (! empty($_SERVER['HTTP_REFERER'])) {
9d4736a3 881 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('visibility'));
8bbf02e0
A
882 } else {
883 $location = '?';
884 }
885 header('Location: '. $location);
45034273
SS
886 exit;
887 }
888
f210d94f
LC
889 // -------- User wants to see only untagged links (toggle)
890 if (isset($_GET['untaggedonly'])) {
c4925c1f 891 $_SESSION['untaggedonly'] = empty($_SESSION['untaggedonly']);
f210d94f
LC
892
893 if (! empty($_SERVER['HTTP_REFERER'])) {
894 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('untaggedonly'));
895 } else {
896 $location = '?';
897 }
898 header('Location: '. $location);
899 exit;
900 }
901
45034273 902 // -------- Handle other actions allowed for non-logged in users:
93bf0918 903 if (!$loginManager->isLoggedIn()) {
ad6c27b7 904 // User tries to post new link but is not logged in:
45034273 905 // Show login screen, then redirect to ?post=...
93bf0918 906 if (isset($_GET['post'])) {
0b04f797 907 header( // Redirect to login page, then back to post link.
908 'Location: ?do=login&post='.urlencode($_GET['post']).
909 (!empty($_GET['title'])?'&title='.urlencode($_GET['title']):'').
910 (!empty($_GET['description'])?'&description='.urlencode($_GET['description']):'').
911 (!empty($_GET['tags'])?'&tags='.urlencode($_GET['tags']):'').
912 (!empty($_GET['source'])?'&source='.urlencode($_GET['source']):'')
913 );
45034273
SS
914 exit;
915 }
aedc912d 916
63ea23c2 917 showLinkList($PAGE, $LINKSDB, $conf, $pluginManager, $loginManager);
5fbabbb9
A
918 if (isset($_GET['edit_link'])) {
919 header('Location: ?do=login&edit_link='. escape($_GET['edit_link']));
920 exit;
921 }
922
ad6c27b7 923 exit; // Never remove this one! All operations below are reserved for logged in user.
45034273
SS
924 }
925
926 // -------- All other functions are reserved for the registered user:
927
928 // -------- Display the Tools menu if requested (import/export/bookmarklet...)
93bf0918 929 if ($targetPage == Router::$PAGE_TOOLS) {
a3130d2c 930 $data = [
6fc14d53 931 'pageabsaddr' => index_url($_SERVER),
a3130d2c
A
932 'sslenabled' => is_https($_SERVER),
933 ];
6fc14d53
A
934 $pluginManager->executeHooks('render_tools', $data);
935
936 foreach ($data as $key => $value) {
937 $PAGE->assign($key, $value);
938 }
939
980efd6c 940 $PAGE->assign('pagetitle', t('Tools') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
941 $PAGE->renderPage('tools');
942 exit;
943 }
944
945 // -------- User wants to change his/her password.
93bf0918 946 if ($targetPage == Router::$PAGE_CHANGEPASSWORD) {
894a3c4b 947 if ($conf->get('security.open_shaarli')) {
12266213 948 die(t('You are not supposed to change a password on an Open Shaarli.'));
684e662a
A
949 }
950
93bf0918
V
951 if (!empty($_POST['setpassword']) && !empty($_POST['oldpassword'])) {
952 if (!$sessionManager->checkToken($_POST['token'])) {
953 die(t('Wrong token.')); // Go away!
954 }
45034273
SS
955
956 // Make sure old password is correct.
da10377b 957 $oldhash = sha1($_POST['oldpassword'].$conf->get('credentials.login').$conf->get('credentials.salt'));
12266213
A
958 if ($oldhash!= $conf->get('credentials.hash')) {
959 echo '<script>alert("'. t('The old password is not correct.') .'");document.location=\'?do=changepasswd\';</script>';
ebd650c0 960 exit;
12266213 961 }
45034273 962 // Save new password
684e662a 963 // Salt renders rainbow-tables attacks useless.
da10377b
A
964 $conf->set('credentials.salt', sha1(uniqid('', true) .'_'. mt_rand()));
965 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $conf->get('credentials.login') . $conf->get('credentials.salt')));
dd484b90 966 try {
63ea23c2 967 $conf->write($loginManager->isLoggedIn());
93bf0918 968 } catch (Exception $e) {
dd484b90
A
969 error_log(
970 'ERROR while writing config file after changing password.' . PHP_EOL .
971 $e->getMessage()
972 );
973
974 // TODO: do not handle exceptions/errors in JS.
975 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do=tools\';</script>';
976 exit;
977 }
12266213 978 echo '<script>alert("'. t('Your password has been changed') .'");document.location=\'?do=tools\';</script>';
45034273 979 exit;
93bf0918
V
980 } else {
981 // show the change password form.
980efd6c 982 $PAGE->assign('pagetitle', t('Change password') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
983 $PAGE->renderPage('changepassword');
984 exit;
985 }
986 }
987
988 // -------- User wants to change configuration
93bf0918
V
989 if ($targetPage == Router::$PAGE_CONFIGURE) {
990 if (!empty($_POST['title'])) {
ebd650c0 991 if (!$sessionManager->checkToken($_POST['token'])) {
12266213 992 die(t('Wrong token.')); // Go away!
12ff86c9 993 }
45034273 994 $tz = 'UTC';
12ff86c9
A
995 if (!empty($_POST['continent']) && !empty($_POST['city'])
996 && isTimeZoneValid($_POST['continent'], $_POST['city'])
997 ) {
998 $tz = $_POST['continent'] . '/' . $_POST['city'];
999 }
da10377b 1000 $conf->set('general.timezone', $tz);
7f179985
A
1001 $conf->set('general.title', escape($_POST['title']));
1002 $conf->set('general.header_link', escape($_POST['titleLink']));
adc4aee8 1003 $conf->set('resource.theme', escape($_POST['theme']));
da10377b 1004 $conf->set('security.session_protection_disabled', !empty($_POST['disablesessionprotection']));
894a3c4b
A
1005 $conf->set('privacy.default_private_links', !empty($_POST['privateLinkByDefault']));
1006 $conf->set('feed.rss_permalinks', !empty($_POST['enableRssPermalinks']));
1007 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
1008 $conf->set('privacy.hide_public_links', !empty($_POST['hidePublicLinks']));
76be95e1 1009 $conf->set('api.enabled', !empty($_POST['enableApi']));
cbfdcff2 1010 $conf->set('api.secret', escape($_POST['apiSecret']));
f39580c6
A
1011 $conf->set('translation.language', escape($_POST['language']));
1012
b302b3c5 1013 $thumbnailsMode = extension_loaded('gd') ? $_POST['enableThumbnails'] : Thumbnailer::MODE_NONE;
7b4fea0e
A
1014 if ($thumbnailsMode !== Thumbnailer::MODE_NONE
1015 && $thumbnailsMode !== $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE)
1016 ) {
28f26524 1017 $_SESSION['warnings'][] = t(
7b4fea0e 1018 'You have enabled or changed thumbnails mode. <a href="?do=thumbs_update">Please synchronize them</a>.'
28f26524
A
1019 );
1020 }
b302b3c5 1021 $conf->set('thumbnails.mode', $thumbnailsMode);
f39580c6 1022
dd484b90 1023 try {
63ea23c2 1024 $conf->write($loginManager->isLoggedIn());
4306b184 1025 $history->updateSettings();
adc4aee8 1026 invalidateCaches($conf->get('resource.page_cache'));
93bf0918 1027 } catch (Exception $e) {
dd484b90
A
1028 error_log(
1029 'ERROR while writing config file after configuration update.' . PHP_EOL .
1030 $e->getMessage()
1031 );
1032
1033 // TODO: do not handle exceptions/errors in JS.
684e662a 1034 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do=configure\';</script>';
dd484b90
A
1035 exit;
1036 }
12266213 1037 echo '<script>alert("'. t('Configuration was saved.') .'");document.location=\'?do=configure\';</script>';
45034273 1038 exit;
93bf0918
V
1039 } else {
1040 // Show the configuration form.
da10377b 1041 $PAGE->assign('title', $conf->get('general.title'));
adc4aee8 1042 $PAGE->assign('theme', $conf->get('resource.theme'));
a0df0651 1043 $PAGE->assign('theme_available', ThemeUtils::getThemes($conf->get('resource.raintpl_tpl')));
ae3aa968
A
1044 list($continents, $cities) = generateTimeZoneData(
1045 timezone_identifiers_list(),
1046 $conf->get('general.timezone')
1047 );
1048 $PAGE->assign('continents', $continents);
1049 $PAGE->assign('cities', $cities);
894a3c4b 1050 $PAGE->assign('private_links_default', $conf->get('privacy.default_private_links', false));
2e193ad3 1051 $PAGE->assign('session_protection_disabled', $conf->get('security.session_protection_disabled', false));
894a3c4b
A
1052 $PAGE->assign('enable_rss_permalinks', $conf->get('feed.rss_permalinks', false));
1053 $PAGE->assign('enable_update_check', $conf->get('updates.check_updates', true));
1054 $PAGE->assign('hide_public_links', $conf->get('privacy.hide_public_links', false));
cbfdcff2
A
1055 $PAGE->assign('api_enabled', $conf->get('api.enabled', true));
1056 $PAGE->assign('api_secret', $conf->get('api.secret'));
f39580c6
A
1057 $PAGE->assign('languages', Languages::getAvailableLanguages());
1058 $PAGE->assign('language', $conf->get('translation.language'));
787faa42 1059 $PAGE->assign('gd_enabled', extension_loaded('gd'));
b302b3c5 1060 $PAGE->assign('thumbnails_mode', $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE));
980efd6c 1061 $PAGE->assign('pagetitle', t('Configure') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1062 $PAGE->renderPage('configure');
1063 exit;
1064 }
1065 }
1066
1067 // -------- User wants to rename a tag or delete it
93bf0918 1068 if ($targetPage == Router::$PAGE_CHANGETAG) {
6a6aa2b9 1069 if (empty($_POST['fromtag']) || (empty($_POST['totag']) && isset($_POST['renametag']))) {
aa4797ba 1070 $PAGE->assign('fromtag', ! empty($_GET['fromtag']) ? escape($_GET['fromtag']) : '');
980efd6c 1071 $PAGE->assign('pagetitle', t('Manage tags') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1072 $PAGE->renderPage('changetag');
1073 exit;
1074 }
6a6aa2b9 1075
ebd650c0 1076 if (!$sessionManager->checkToken($_POST['token'])) {
12266213 1077 die(t('Wrong token.'));
6a6aa2b9 1078 }
45034273 1079
4fa9a3c5
A
1080 $toTag = isset($_POST['totag']) ? escape($_POST['totag']) : null;
1081 $alteredLinks = $LINKSDB->renameTag(escape($_POST['fromtag']), $toTag);
d99aef53 1082 $LINKSDB->save($conf->get('resource.page_cache'));
3b67b222
A
1083 foreach ($alteredLinks as $link) {
1084 $history->updateLink($link);
45034273 1085 }
3b67b222 1086 $delete = empty($_POST['totag']);
d99aef53 1087 $redirect = $delete ? 'do=changetag' : 'searchtags='. urlencode(escape($_POST['totag']));
f39580c6 1088 $count = count($alteredLinks);
d99aef53 1089 $alert = $delete
f39580c6
A
1090 ? sprintf(t('The tag was removed from %d link.', 'The tag was removed from %d links.', $count), $count)
1091 : sprintf(t('The tag was renamed in %d link.', 'The tag was renamed in %d links.', $count), $count);
d99aef53
A
1092 echo '<script>alert("'. $alert .'");document.location=\'?'. $redirect .'\';</script>';
1093 exit;
45034273
SS
1094 }
1095
ad6c27b7 1096 // -------- User wants to add a link without using the bookmarklet: Show form.
93bf0918 1097 if ($targetPage == Router::$PAGE_ADDLINK) {
980efd6c 1098 $PAGE->assign('pagetitle', t('Shaare a new link') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1099 $PAGE->renderPage('addlink');
1100 exit;
1101 }
1102
1103 // -------- User clicked the "Save" button when editing a link: Save link to database.
93bf0918 1104 if (isset($_POST['save_edit'])) {
5a23950c 1105 // Go away!
ebd650c0 1106 if (! $sessionManager->checkToken($_POST['token'])) {
12266213 1107 die(t('Wrong token.'));
5a23950c 1108 }
01878a75
A
1109
1110 // lf_id should only be present if the link exists.
b712ab0a 1111 $id = isset($_POST['lf_id']) ? intval(escape($_POST['lf_id'])) : $LINKSDB->getNextId();
01878a75
A
1112 // Linkdate is kept here to:
1113 // - use the same permalink for notes as they're displayed when creating them
1114 // - let users hack creation date of their posts
1cafacfe 1115 // See: https://shaarli.readthedocs.io/en/master/guides/various-hacks/#changing-the-timestamp-for-a-shaare
01878a75
A
1116 $linkdate = escape($_POST['lf_linkdate']);
1117 if (isset($LINKSDB[$id])) {
1118 // Edit
d592daea 1119 $created = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $linkdate);
01878a75 1120 $updated = new DateTime();
826c6af7 1121 $shortUrl = $LINKSDB[$id]['shorturl'];
4306b184 1122 $new = false;
01878a75
A
1123 } else {
1124 // New link
d592daea 1125 $created = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $linkdate);
01878a75 1126 $updated = null;
826c6af7 1127 $shortUrl = link_small_hash($created, $id);
4306b184 1128 $new = true;
01878a75
A
1129 }
1130
5a23950c
A
1131 // Remove multiple spaces.
1132 $tags = trim(preg_replace('/\s\s+/', ' ', $_POST['lf_tags']));
ce354bf1
A
1133 // Remove first '-' char in tags.
1134 $tags = preg_replace('/(^| )\-/', '$1', $tags);
5a23950c
A
1135 // Remove duplicates.
1136 $tags = implode(' ', array_unique(explode(' ', $tags)));
9646b7da 1137
c27f2f36
A
1138 if (empty(trim($_POST['lf_url']))) {
1139 $_POST['lf_url'] = '?' . smallHash($linkdate . $id);
1140 }
86ceea05 1141 $url = whitelist_protocols(trim($_POST['lf_url']), $conf->get('security.allowed_protocols'));
5a23950c
A
1142
1143 $link = array(
01878a75 1144 'id' => $id,
5a23950c
A
1145 'title' => trim($_POST['lf_title']),
1146 'url' => $url,
ed853da7 1147 'description' => $_POST['lf_description'],
5a23950c 1148 'private' => (isset($_POST['lf_private']) ? 1 : 0),
01878a75 1149 'created' => $created,
9646b7da 1150 'updated' => $updated,
d592daea 1151 'tags' => str_replace(',', ' ', $tags),
826c6af7 1152 'shorturl' => $shortUrl,
5a23950c 1153 );
01878a75 1154
5a23950c
A
1155 // If title is empty, use the URL as title.
1156 if ($link['title'] == '') {
1157 $link['title'] = $link['url'];
1158 }
6fc14d53 1159
b302b3c5 1160 if ($conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE) {
1b93137e
A
1161 $thumbnailer = new Thumbnailer($conf);
1162 $link['thumbnail'] = $thumbnailer->get($url);
1163 }
1164
6fc14d53
A
1165 $pluginManager->executeHooks('save_link', $link);
1166
01878a75 1167 $LINKSDB[$id] = $link;
f21abf32 1168 $LINKSDB->save($conf->get('resource.page_cache'));
4306b184
A
1169 if ($new) {
1170 $history->addLink($link);
1171 } else {
1172 $history->updateLink($link);
1173 }
45034273
SS
1174
1175 // If we are called from the bookmarklet, we must close the popup:
d01c2342
A
1176 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
1177 echo '<script>self.close();</script>';
1178 exit;
1179 }
1180
fd50e14c 1181 $returnurl = !empty($_POST['returnurl']) ? $_POST['returnurl'] : '?';
775803a0 1182 $location = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
5a23950c 1183 // Scroll to the link which has been edited.
d592daea 1184 $location .= '#' . $link['shorturl'];
5a23950c
A
1185 // After saving the link, redirect to the page the user was on.
1186 header('Location: '. $location);
45034273
SS
1187 exit;
1188 }
1189
1190 // -------- User clicked the "Cancel" button when editing a link.
93bf0918 1191 if (isset($_POST['cancel_edit'])) {
b712ab0a
A
1192 $id = isset($_POST['lf_id']) ? (int) escape($_POST['lf_id']) : false;
1193 if (! isset($LINKSDB[$id])) {
1194 header('Location: ?');
1195 }
ad6c27b7 1196 // If we are called from the bookmarklet, we must close the popup:
93bf0918
V
1197 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
1198 echo '<script>self.close();</script>';
1199 exit;
1200 }
b712ab0a 1201 $link = $LINKSDB[$id];
45034273 1202 $returnurl = ( isset($_POST['returnurl']) ? $_POST['returnurl'] : '?' );
01878a75 1203 // Scroll to the link which has been edited.
d592daea 1204 $returnurl .= '#'. $link['shorturl'];
775803a0 1205 $returnurl = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
45034273
SS
1206 header('Location: '.$returnurl); // After canceling, redirect to the page the user was on.
1207 exit;
1208 }
1209
ad6c27b7 1210 // -------- User clicked the "Delete" button when editing a link: Delete link from database.
93bf0918 1211 if ($targetPage == Router::$PAGE_DELETELINK) {
ebd650c0 1212 if (! $sessionManager->checkToken($_GET['token'])) {
12266213 1213 die(t('Wrong token.'));
f4ebd5fe 1214 }
01878a75 1215
a74f52a8
WE
1216 $ids = trim($_GET['lf_linkdate']);
1217 if (strpos($ids, ' ') !== false) {
1218 // multiple, space-separated ids provided
1219 $ids = array_values(array_filter(preg_split('/\s+/', escape($ids))));
29a837f3 1220 } else {
a74f52a8
WE
1221 // only a single id provided
1222 $ids = [$ids];
1223 }
1224 // assert at least one id is given
93bf0918 1225 if (!count($ids)) {
a74f52a8 1226 die('no id provided');
29a837f3
A
1227 }
1228 foreach ($ids as $id) {
1229 $id = (int) escape($id);
1230 $link = $LINKSDB[$id];
1231 $pluginManager->executeHooks('delete_link', $link);
b54faf4f 1232 $history->deleteLink($link);
29a837f3
A
1233 unset($LINKSDB[$id]);
1234 }
f4ebd5fe 1235 $LINKSDB->save($conf->get('resource.page_cache')); // save to disk
45034273
SS
1236
1237 // If we are called from the bookmarklet, we must close the popup:
93bf0918
V
1238 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
1239 echo '<script>self.close();</script>';
1240 exit;
1241 }
95e5add4
A
1242
1243 $location = '?';
1244 if (isset($_SERVER['HTTP_REFERER'])) {
1245 // Don't redirect to where we were previously if it was a permalink or an edit_link, because it would 404.
1246 $location = generateLocation(
93bf0918
V
1247 $_SERVER['HTTP_REFERER'],
1248 $_SERVER['HTTP_HOST'],
1249 ['delete_link', 'edit_link', $link['shorturl']]
95e5add4 1250 );
d528433d 1251 }
1252
1253 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
45034273
SS
1254 exit;
1255 }
1256
1257 // -------- User clicked the "EDIT" button on a link: Display link edit form.
93bf0918 1258 if (isset($_GET['edit_link'])) {
01878a75
A
1259 $id = (int) escape($_GET['edit_link']);
1260 $link = $LINKSDB[$id]; // Read database
93bf0918
V
1261 if (!$link) {
1262 header('Location: ?');
1263 exit;
1264 } // Link not found in database.
d592daea 1265 $link['linkdate'] = $link['created']->format(LinkDB::LINK_DATE_FORMAT);
6fc14d53 1266 $data = array(
6fc14d53
A
1267 'link' => $link,
1268 'link_is_new' => false,
6fc14d53 1269 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
6ccd0b21 1270 'tags' => $LINKSDB->linksCountPerTag(),
6fc14d53
A
1271 );
1272 $pluginManager->executeHooks('render_editlink', $data);
1273
1274 foreach ($data as $key => $value) {
1275 $PAGE->assign($key, $value);
1276 }
1277
980efd6c 1278 $PAGE->assign('pagetitle', t('Edit') .' '. t('Shaare') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1279 $PAGE->renderPage('editlink');
1280 exit;
1281 }
1282
1283 // -------- User want to post a new link: Display link edit form.
d9d776af 1284 if (isset($_GET['post'])) {
ce7b0b64 1285 $url = cleanup_url($_GET['post']);
45034273
SS
1286
1287 $link_is_new = false;
9e1724f1 1288 // Check if URL is not already in database (in this case, we will edit the existing link)
ef591e7e 1289 $link = $LINKSDB->getLinkFromUrl($url);
93bf0918 1290 if (! $link) {
9e1724f1 1291 $link_is_new = true;
d592daea 1292 $linkdate = strval(date(LinkDB::LINK_DATE_FORMAT));
9e1724f1 1293 // Get title if it was provided in URL (by the bookmarklet).
739dc243 1294 $title = empty($_GET['title']) ? '' : escape($_GET['title']);
9e1724f1 1295 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that]
739dc243
A
1296 $description = empty($_GET['description']) ? '' : escape($_GET['description']);
1297 $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']);
1298 $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0;
26c50346 1299 // 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 1300 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) {
451314eb 1301 // Short timeout to keep the application responsive
d65342e3 1302 // The callback will fill $charset and $title with data from the downloaded page.
4ff3ed1c
A
1303 get_http_response(
1304 $url,
4ff3ed1c 1305 $conf->get('general.download_timeout', 30),
8d2cac1b 1306 $conf->get('general.download_max_size', 4194304),
4ff3ed1c
A
1307 get_curl_download_callback($charset, $title)
1308 );
d65342e3
A
1309 if (! empty($title) && strtolower($charset) != 'utf-8') {
1310 $title = mb_convert_encoding($title, 'utf-8', $charset);
9e1724f1 1311 }
45034273 1312 }
1557cefb 1313
9e1724f1 1314 if ($url == '') {
d592daea 1315 $url = '?' . smallHash($linkdate . $LINKSDB->getNextId());
f39580c6 1316 $title = $conf->get('general.default_note_title', t('Note: '));
27646ca5 1317 }
ce7b0b64
A
1318 $url = escape($url);
1319 $title = escape($title);
1557cefb 1320
9e1724f1
A
1321 $link = array(
1322 'linkdate' => $linkdate,
1323 'title' => $title,
ef591e7e 1324 'url' => $url,
9e1724f1
A
1325 'description' => $description,
1326 'tags' => $tags,
807cade6 1327 'private' => $private,
9e1724f1 1328 );
01878a75 1329 } else {
d592daea 1330 $link['linkdate'] = $link['created']->format(LinkDB::LINK_DATE_FORMAT);
45034273
SS
1331 }
1332
6fc14d53 1333 $data = array(
6fc14d53
A
1334 'link' => $link,
1335 'link_is_new' => $link_is_new,
6fc14d53
A
1336 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
1337 'source' => (isset($_GET['source']) ? $_GET['source'] : ''),
6ccd0b21 1338 'tags' => $LINKSDB->linksCountPerTag(),
cdbc8180 1339 'default_private_links' => $conf->get('privacy.default_private_links', false),
6fc14d53
A
1340 );
1341 $pluginManager->executeHooks('render_editlink', $data);
1342
1343 foreach ($data as $key => $value) {
1344 $PAGE->assign($key, $value);
1345 }
1346
980efd6c 1347 $PAGE->assign('pagetitle', t('Shaare') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1348 $PAGE->renderPage('editlink');
1349 exit;
1350 }
1351
4154c25b
A
1352 if ($targetPage == Router::$PAGE_PINLINK) {
1353 if (! isset($_GET['id']) || empty($LINKSDB[$_GET['id']])) {
1354 // FIXME! Use a proper error system.
1355 $msg = t('Invalid link ID provided');
1356 echo '<script>alert("'. $msg .'");document.location=\''. index_url($_SERVER) .'\';</script>';
1357 exit;
1358 }
1359 if (! $sessionManager->checkToken($_GET['token'])) {
1360 die('Wrong token.');
1361 }
1362
1363 $link = $LINKSDB[$_GET['id']];
1364 $link['sticky'] = ! $link['sticky'];
1365 $LINKSDB[(int) $_GET['id']] = $link;
1366 $LINKSDB->save($conf->get('resource.page_cache'));
1367 header('Location: '.index_url($_SERVER));
1368 exit;
1369 }
1370
cd5327be 1371 if ($targetPage == Router::$PAGE_EXPORT) {
bb4a23aa
V
1372 // Export links as a Netscape Bookmarks file
1373
cd5327be 1374 if (empty($_GET['selection'])) {
980efd6c 1375 $PAGE->assign('pagetitle', t('Export') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1376 $PAGE->renderPage('export');
1377 exit;
1378 }
45034273 1379
cd5327be
V
1380 // export as bookmarks_(all|private|public)_YYYYmmdd_HHMMSS.html
1381 $selection = $_GET['selection'];
bb4a23aa
V
1382 if (isset($_GET['prepend_note_url'])) {
1383 $prependNoteUrl = $_GET['prepend_note_url'];
1384 } else {
1385 $prependNoteUrl = false;
1386 }
1387
cd5327be
V
1388 try {
1389 $PAGE->assign(
1390 'links',
bb4a23aa
V
1391 NetscapeBookmarkUtils::filterAndFormat(
1392 $LINKSDB,
1393 $selection,
1394 $prependNoteUrl,
1395 index_url($_SERVER)
1396 )
cd5327be
V
1397 );
1398 } catch (Exception $exc) {
1399 header('Content-Type: text/plain; charset=utf-8');
1400 echo $exc->getMessage();
1401 exit;
45034273 1402 }
cd5327be
V
1403 $now = new DateTime();
1404 header('Content-Type: text/html; charset=utf-8');
1405 header(
1406 'Content-disposition: attachment; filename=bookmarks_'
93bf0918 1407 .$selection.'_'.$now->format(LinkDB::LINK_DATE_FORMAT).'.html'
cd5327be
V
1408 );
1409 $PAGE->assign('date', $now->format(DateTime::RFC822));
1410 $PAGE->assign('eol', PHP_EOL);
1411 $PAGE->assign('selection', $selection);
1412 $PAGE->renderPage('export.bookmarks');
1413 exit;
45034273
SS
1414 }
1415
a973afea
V
1416 if ($targetPage == Router::$PAGE_IMPORT) {
1417 // Upload a Netscape bookmark dump to import its contents
1418
1419 if (! isset($_POST['token']) || ! isset($_FILES['filetoupload'])) {
1420 // Show import dialog
6a19124a
A
1421 $PAGE->assign(
1422 'maxfilesize',
1423 get_max_upload_size(
1424 ini_get('post_max_size'),
1425 ini_get('upload_max_filesize'),
1426 false
1427 )
1428 );
1429 $PAGE->assign(
1430 'maxfilesizeHuman',
1431 get_max_upload_size(
1432 ini_get('post_max_size'),
1433 ini_get('upload_max_filesize'),
1434 true
1435 )
1436 );
980efd6c 1437 $PAGE->assign('pagetitle', t('Import') .' - '. $conf->get('general.title', 'Shaarli'));
a973afea 1438 $PAGE->renderPage('import');
45034273
SS
1439 exit;
1440 }
45034273 1441
a973afea
V
1442 // Import bookmarks from an uploaded file
1443 if (isset($_FILES['filetoupload']['size']) && $_FILES['filetoupload']['size'] == 0) {
1444 // The file is too big or some form field may be missing.
12266213
A
1445 $msg = sprintf(
1446 t(
1447 'The file you are trying to upload is probably bigger than what this webserver can accept'
1448 .' (%s). Please upload in smaller chunks.'
1449 ),
1450 get_max_upload_size(ini_get('post_max_size'), ini_get('upload_max_filesize'))
1451 );
1452 echo '<script>alert("'. $msg .'");document.location=\'?do='.Router::$PAGE_IMPORT .'\';</script>';
a973afea
V
1453 exit;
1454 }
ebd650c0 1455 if (! $sessionManager->checkToken($_POST['token'])) {
a973afea
V
1456 die('Wrong token.');
1457 }
1458 $status = NetscapeBookmarkUtils::import(
1459 $_POST,
1460 $_FILES,
1461 $LINKSDB,
4306b184
A
1462 $conf,
1463 $history
a973afea
V
1464 );
1465 echo '<script>alert("'.$status.'");document.location=\'?do='
1466 .Router::$PAGE_IMPORT .'\';</script>';
45034273
SS
1467 exit;
1468 }
1469
dea0ba28
A
1470 // Plugin administration page
1471 if ($targetPage == Router::$PAGE_PLUGINSADMIN) {
1472 $pluginMeta = $pluginManager->getPluginsMeta();
1473
1474 // Split plugins into 2 arrays: ordered enabled plugins and disabled.
93bf0918
V
1475 $enabledPlugins = array_filter($pluginMeta, function ($v) {
1476 return $v['order'] !== false;
1477 });
dea0ba28 1478 // Load parameters.
684e662a 1479 $enabledPlugins = load_plugin_parameter_values($enabledPlugins, $conf->get('plugins', array()));
dea0ba28
A
1480 uasort(
1481 $enabledPlugins,
93bf0918
V
1482 function ($a, $b) {
1483 return $a['order'] - $b['order'];
1484 }
dea0ba28 1485 );
93bf0918
V
1486 $disabledPlugins = array_filter($pluginMeta, function ($v) {
1487 return $v['order'] === false;
1488 });
dea0ba28
A
1489
1490 $PAGE->assign('enabledPlugins', $enabledPlugins);
1491 $PAGE->assign('disabledPlugins', $disabledPlugins);
980efd6c 1492 $PAGE->assign('pagetitle', t('Plugin administration') .' - '. $conf->get('general.title', 'Shaarli'));
dea0ba28
A
1493 $PAGE->renderPage('pluginsadmin');
1494 exit;
1495 }
1496
1497 // Plugin administration form action
1498 if ($targetPage == Router::$PAGE_SAVE_PLUGINSADMIN) {
1499 try {
1500 if (isset($_POST['parameters_form'])) {
1501 unset($_POST['parameters_form']);
1502 foreach ($_POST as $param => $value) {
684e662a 1503 $conf->set('plugins.'. $param, escape($value));
dea0ba28 1504 }
93bf0918 1505 } else {
da10377b 1506 $conf->set('general.enabled_plugins', save_plugin_config($_POST));
dea0ba28 1507 }
63ea23c2 1508 $conf->write($loginManager->isLoggedIn());
b86aeccf 1509 $history->updateSettings();
93bf0918 1510 } catch (Exception $e) {
dea0ba28
A
1511 error_log(
1512 'ERROR while saving plugin configuration:.' . PHP_EOL .
1513 $e->getMessage()
1514 );
1515
1516 // TODO: do not handle exceptions/errors in JS.
59edea42 1517 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do='. Router::$PAGE_PLUGINSADMIN .'\';</script>';
dea0ba28
A
1518 exit;
1519 }
1520 header('Location: ?do='. Router::$PAGE_PLUGINSADMIN);
1521 exit;
1522 }
1523
986a5210
A
1524 // Get a fresh token
1525 if ($targetPage == Router::$GET_TOKEN) {
1526 header('Content-Type:text/plain');
ebd650c0 1527 echo $sessionManager->generateToken($conf);
986a5210
A
1528 exit;
1529 }
1530
28f26524
A
1531 // -------- Thumbnails Update
1532 if ($targetPage == Router::$PAGE_THUMBS_UPDATE) {
1533 $ids = [];
1534 foreach ($LINKSDB as $link) {
1535 // A note or not HTTP(S)
1536 if ($link['url'][0] === '?' || ! startsWith(strtolower($link['url']), 'http')) {
1537 continue;
1538 }
1539 $ids[] = $link['id'];
1540 }
1541 $PAGE->assign('ids', $ids);
7b4fea0e 1542 $PAGE->assign('pagetitle', t('Thumbnails update') .' - '. $conf->get('general.title', 'Shaarli'));
28f26524
A
1543 $PAGE->renderPage('thumbnails');
1544 exit;
1545 }
1546
1547 // -------- Single Thumbnail Update
1548 if ($targetPage == Router::$AJAX_THUMB_UPDATE) {
1549 if (! isset($_POST['id']) || ! ctype_digit($_POST['id'])) {
1550 http_response_code(400);
1551 exit;
1552 }
1553 $id = (int) $_POST['id'];
1554 if (empty($LINKSDB[$id])) {
1555 http_response_code(404);
1556 exit;
1557 }
1558 $thumbnailer = new Thumbnailer($conf);
1559 $link = $LINKSDB[$id];
1560 $link['thumbnail'] = $thumbnailer->get($link['url']);
1561 $LINKSDB[$id] = $link;
1562 $LINKSDB->save($conf->get('resource.page_cache'));
1563
1564 echo json_encode($link);
1565 exit;
1566 }
1567
45034273 1568 // -------- Otherwise, simply display search form and links:
63ea23c2 1569 showLinkList($PAGE, $LINKSDB, $conf, $pluginManager, $loginManager);
45034273
SS
1570 exit;
1571}
1572
528a6f8a
A
1573/**
1574 * Template for the list of links (<div id="linklist">)
1575 * This function fills all the necessary fields in the $PAGE for the template 'linklist.html'
1576 *
278d9ee2
A
1577 * @param pageBuilder $PAGE pageBuilder instance.
1578 * @param LinkDB $LINKSDB LinkDB instance.
1579 * @param ConfigManager $conf Configuration Manager instance.
1580 * @param PluginManager $pluginManager Plugin Manager instance.
63ea23c2 1581 * @param LoginManager $loginManager LoginManager instance
528a6f8a 1582 */
63ea23c2 1583function buildLinkList($PAGE, $LINKSDB, $conf, $pluginManager, $loginManager)
45034273 1584{
528a6f8a 1585 // Used in templates
7d86f40b
A
1586 if (isset($_GET['searchtags'])) {
1587 if (! empty($_GET['searchtags'])) {
1588 $searchtags = escape(normalize_spaces($_GET['searchtags']));
1589 } else {
1590 $searchtags = false;
1591 }
1592 } else {
1593 $searchtags = '';
1594 }
b3051a6a 1595 $searchterm = !empty($_GET['searchterm']) ? escape(normalize_spaces($_GET['searchterm'])) : '';
822bffce 1596
528a6f8a
A
1597 // Smallhash filter
1598 if (! empty($_SERVER['QUERY_STRING'])
1599 && preg_match('/^[a-zA-Z0-9-_@]{6}($|&|#)/', $_SERVER['QUERY_STRING'])) {
1600 try {
1601 $linksToDisplay = $LINKSDB->filterHash($_SERVER['QUERY_STRING']);
1602 } catch (LinkNotFoundException $e) {
1603 $PAGE->render404($e->getMessage());
45034273
SS
1604 exit;
1605 }
528a6f8a
A
1606 } else {
1607 // Filter links according search parameters.
9d4736a3 1608 $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : '';
7d86f40b
A
1609 $request = [
1610 'searchtags' => $searchtags,
1611 'searchterm' => $searchterm,
1612 ];
f210d94f 1613 $linksToDisplay = $LINKSDB->filterSearch($request, false, $visibility, !empty($_SESSION['untaggedonly']));
45034273
SS
1614 }
1615
1616 // ---- Handle paging.
822bffce
A
1617 $keys = array();
1618 foreach ($linksToDisplay as $key => $value) {
1619 $keys[] = $key;
1620 }
45034273 1621
45034273 1622 // Select articles according to paging.
822bffce
A
1623 $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']);
1624 $pagecount = $pagecount == 0 ? 1 : $pagecount;
1625 $page= empty($_GET['page']) ? 1 : intval($_GET['page']);
1626 $page = $page < 1 ? 1 : $page;
1627 $page = $page > $pagecount ? $pagecount : $page;
1628 // Start index.
1629 $i = ($page-1) * $_SESSION['LINKS_PER_PAGE'];
1630 $end = $i + $_SESSION['LINKS_PER_PAGE'];
1b93137e 1631
b302b3c5
A
1632 $thumbnailsEnabled = $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE;
1633 if ($thumbnailsEnabled) {
1b93137e
A
1634 $thumbnailer = new Thumbnailer($conf);
1635 }
1636
822bffce 1637 $linkDisp = array();
93bf0918 1638 while ($i<$end && $i<count($keys)) {
45034273 1639 $link = $linksToDisplay[$keys[$i]];
fd08b50a
A
1640 $link['description'] = format_description(
1641 $link['description'],
1642 $conf->get('redirector.url'),
1643 $conf->get('redirector.encode_url')
1644 );
822bffce
A
1645 $classLi = ($i % 2) != 0 ? '' : 'publicLinkHightLight';
1646 $link['class'] = $link['private'] == 0 ? $classLi : 'private';
01878a75 1647 $link['timestamp'] = $link['created']->getTimestamp();
9646b7da 1648 if (! empty($link['updated'])) {
01878a75 1649 $link['updated_timestamp'] = $link['updated']->getTimestamp();
9646b7da
A
1650 } else {
1651 $link['updated_timestamp'] = '';
1652 }
b3051a6a 1653 $taglist = preg_split('/\s+/', $link['tags'], -1, PREG_SPLIT_NO_EMPTY);
a5752e77 1654 uasort($taglist, 'strcasecmp');
822bffce 1655 $link['taglist'] = $taglist;
1b93137e 1656
b5c368b8 1657 // Logged in, thumbnails enabled, not a note,
1b93137e 1658 // and (never retrieved yet or no valid cache file)
b5c368b8 1659 if ($loginManager->isLoggedIn() && $thumbnailsEnabled && $link['url'][0] != '?'
1b93137e
A
1660 && (! isset($link['thumbnail']) || ($link['thumbnail'] !== false && ! is_file($link['thumbnail'])))
1661 ) {
e85b7a05
A
1662 $elem = $LINKSDB[$keys[$i]];
1663 $elem['thumbnail'] = $thumbnailer->get($link['url']);
1664 $LINKSDB[$keys[$i]] = $elem;
1b93137e 1665 $updateDB = true;
787faa42 1666 $link['thumbnail'] = $elem['thumbnail'];
1b93137e
A
1667 }
1668
822bffce 1669 // Check for both signs of a note: starting with ? and 7 chars long.
1b93137e 1670 if ($link['url'][0] === '?' && strlen($link['url']) === 7) {
822bffce 1671 $link['url'] = index_url($_SERVER) . $link['url'];
b47f515a 1672 }
d33c5d4c 1673
45034273
SS
1674 $linkDisp[$keys[$i]] = $link;
1675 $i++;
1676 }
bb8f712d 1677
1b93137e
A
1678 // If we retrieved new thumbnails, we update the database.
1679 if (!empty($updateDB)) {
1680 $LINKSDB->save($conf->get('resource.page_cache'));
1681 }
1682
45034273 1683 // Compute paging navigation
7d86f40b 1684 $searchtagsUrl = $searchtags === '' ? '' : '&searchtags=' . urlencode($searchtags);
c51fae92 1685 $searchtermUrl = empty($searchterm) ? '' : '&searchterm=' . urlencode($searchterm);
822bffce
A
1686 $previous_page_url = '';
1687 if ($i != count($keys)) {
c51fae92 1688 $previous_page_url = '?page=' . ($page+1) . $searchtermUrl . $searchtagsUrl;
822bffce
A
1689 }
1690 $next_page_url='';
1691 if ($page>1) {
c51fae92 1692 $next_page_url = '?page=' . ($page-1) . $searchtermUrl . $searchtagsUrl;
822bffce 1693 }
45034273 1694
45034273 1695 // Fill all template fields.
6fc14d53 1696 $data = array(
6fc14d53
A
1697 'previous_page_url' => $previous_page_url,
1698 'next_page_url' => $next_page_url,
1699 'page_current' => $page,
1700 'page_max' => $pagecount,
1701 'result_count' => count($linksToDisplay),
c51fae92
A
1702 'search_term' => $searchterm,
1703 'search_tags' => $searchtags,
9d4736a3 1704 'visibility' => ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : '',
894a3c4b 1705 'redirector' => $conf->get('redirector.url'), // Optional redirector URL.
6fc14d53 1706 'links' => $linkDisp,
6fc14d53 1707 );
97ef33bb
A
1708
1709 // If there is only a single link, we change on-the-fly the title of the page.
1710 if (count($linksToDisplay) == 1) {
1711 $data['pagetitle'] = $linksToDisplay[$keys[0]]['title'] .' - '. $conf->get('general.title');
980efd6c
A
1712 } elseif (! empty($searchterm) || ! empty($searchtags)) {
1713 $data['pagetitle'] = t('Search: ');
1714 $data['pagetitle'] .= ! empty($searchterm) ? $searchterm .' ' : '';
1715 $bracketWrap = function ($tag) {
1716 return '['. $tag .']';
1717 };
1718 $data['pagetitle'] .= ! empty($searchtags)
1719 ? implode(' ', array_map($bracketWrap, preg_split('/\s+/', $searchtags))).' '
1720 : '';
1721 $data['pagetitle'] .= '- '. $conf->get('general.title');
18cca483 1722 }
6fc14d53 1723
63ea23c2 1724 $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => $loginManager->isLoggedIn()));
6fc14d53
A
1725
1726 foreach ($data as $key => $value) {
1727 $PAGE->assign($key, $value);
1728 }
1729
45034273
SS
1730 return;
1731}
1732
278d9ee2
A
1733/**
1734 * Installation
1735 * This function should NEVER be called if the file data/config.php exists.
1736 *
ebd650c0
V
1737 * @param ConfigManager $conf Configuration Manager instance.
1738 * @param SessionManager $sessionManager SessionManager instance
cad4251a 1739 * @param LoginManager $loginManager LoginManager instance
278d9ee2 1740 */
93bf0918
V
1741function install($conf, $sessionManager, $loginManager)
1742{
45034273 1743 // On free.fr host, make sure the /sessions directory exists, otherwise login will not work.
93bf0918
V
1744 if (endsWith($_SERVER['HTTP_HOST'], '.free.fr') && !is_dir($_SERVER['DOCUMENT_ROOT'].'/sessions')) {
1745 mkdir($_SERVER['DOCUMENT_ROOT'].'/sessions', 0705);
1746 }
45034273 1747
f37664a2
SS
1748
1749 // This part makes sure sessions works correctly.
1750 // (Because on some hosts, session.save_path may not be set correctly,
1751 // or we may not have write access to it.)
93bf0918 1752 if (isset($_GET['test_session']) && ( !isset($_SESSION) || !isset($_SESSION['session_tested']) || $_SESSION['session_tested']!='Working')) {
12266213
A
1753 // Step 2: Check if data in session is correct.
1754 $msg = t(
1755 '<pre>Sessions do not seem to work correctly on your server.<br>'.
1756 'Make sure the variable "session.save_path" is set correctly in your PHP config, '.
1757 'and that you have write access to it.<br>'.
1758 'It currently points to %s.<br>'.
1759 'On some browsers, accessing your server via a hostname like \'localhost\' '.
1760 'or any custom hostname without a dot causes cookie storage to fail. '.
1761 'We recommend accessing your server via it\'s IP address or Fully Qualified Domain Name.<br>'
1762 );
1763 $msg = sprintf($msg, session_save_path());
1764 echo $msg;
1765 echo '<br><a href="?">'. t('Click to try again.') .'</a></pre>';
f37664a2
SS
1766 die;
1767 }
93bf0918
V
1768 if (!isset($_SESSION['session_tested'])) {
1769 // Step 1 : Try to store data in session and reload page.
f37664a2 1770 $_SESSION['session_tested'] = 'Working'; // Try to set a variable in session.
482d67bd 1771 header('Location: '.index_url($_SERVER).'?test_session'); // Redirect to check stored data.
f37664a2 1772 }
93bf0918
V
1773 if (isset($_GET['test_session'])) {
1774 // Step 3: Sessions are OK. Remove test parameter from URL.
482d67bd 1775 header('Location: '.index_url($_SERVER));
f37664a2
SS
1776 }
1777
1778
93bf0918 1779 if (!empty($_POST['setlogin']) && !empty($_POST['setpassword'])) {
45034273 1780 $tz = 'UTC';
12ff86c9
A
1781 if (!empty($_POST['continent']) && !empty($_POST['city'])
1782 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1783 ) {
1784 $tz = $_POST['continent'].'/'.$_POST['city'];
d1e2f8e5 1785 }
da10377b 1786 $conf->set('general.timezone', $tz);
684e662a 1787 $login = $_POST['setlogin'];
da10377b 1788 $conf->set('credentials.login', $login);
684e662a 1789 $salt = sha1(uniqid('', true) .'_'. mt_rand());
da10377b
A
1790 $conf->set('credentials.salt', $salt);
1791 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $login . $salt));
684e662a 1792 if (!empty($_POST['title'])) {
7f179985 1793 $conf->set('general.title', escape($_POST['title']));
684e662a 1794 } else {
da10377b 1795 $conf->set('general.title', 'Shared links on '.escape(index_url($_SERVER)));
684e662a 1796 }
f39580c6 1797 $conf->set('translation.language', escape($_POST['language']));
894a3c4b 1798 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
cbfdcff2
A
1799 $conf->set('api.enabled', !empty($_POST['enableApi']));
1800 $conf->set(
1801 'api.secret',
1802 generate_api_secret(
e3a430ba
A
1803 $conf->get('credentials.login'),
1804 $conf->get('credentials.salt')
cbfdcff2
A
1805 )
1806 );
dd484b90 1807 try {
684e662a 1808 // Everything is ok, let's create config file.
63ea23c2 1809 $conf->write($loginManager->isLoggedIn());
93bf0918 1810 } catch (Exception $e) {
dd484b90 1811 error_log(
93bf0918 1812 'ERROR while writing config file after installation.' . PHP_EOL .
dd484b90 1813 $e->getMessage()
93bf0918 1814 );
dd484b90
A
1815
1816 // TODO: do not handle exceptions/errors in JS.
1817 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?\';</script>';
1818 exit;
1819 }
fe16b01e 1820 echo '<script>alert("Shaarli is now configured. Please enter your login/password and start shaaring your links!");document.location=\'?do=login\';</script>';
45034273
SS
1821 exit;
1822 }
1823
28f26524 1824 $PAGE = new PageBuilder($conf, $_SESSION, null, $sessionManager->generateToken());
ae3aa968
A
1825 list($continents, $cities) = generateTimeZoneData(timezone_identifiers_list(), date_default_timezone_get());
1826 $PAGE->assign('continents', $continents);
1827 $PAGE->assign('cities', $cities);
f39580c6 1828 $PAGE->assign('languages', Languages::getAvailableLanguages());
45034273
SS
1829 $PAGE->renderPage('install');
1830 exit;
1831}
1832
bf3c9934
A
1833if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=dailyrss')) {
1834 showDailyRSS($conf, $loginManager);
1835 exit;
1836}
1837
684e662a 1838if (!isset($_SESSION['LINKS_PER_PAGE'])) {
da10377b 1839 $_SESSION['LINKS_PER_PAGE'] = $conf->get('general.links_per_page', 20);
684e662a 1840}
18e67967 1841
3b67b222
A
1842try {
1843 $history = new History($conf->get('resource.history'));
93bf0918 1844} catch (Exception $e) {
3b67b222
A
1845 die($e->getMessage());
1846}
1847
18e67967
A
1848$linkDb = new LinkDB(
1849 $conf->get('resource.datastore'),
63ea23c2 1850 $loginManager->isLoggedIn(),
18e67967
A
1851 $conf->get('privacy.hide_public_links'),
1852 $conf->get('redirector.url'),
1853 $conf->get('redirector.encode_url')
1854);
1855
1856$container = new \Slim\Container();
1857$container['conf'] = $conf;
1858$container['plugins'] = $pluginManager;
813849e5 1859$container['history'] = $history;
18e67967
A
1860$app = new \Slim\App($container);
1861
1862// REST API routes
93bf0918 1863$app->group('/api/v1', function () {
68016e37
A
1864 $this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo')->setName('getInfo');
1865 $this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks')->setName('getLinks');
1866 $this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink')->setName('getLink');
1867 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
cf9181dd 1868 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
0843848c 1869 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
d3f42ca4
A
1870
1871 $this->get('/tags', '\Shaarli\Api\Controllers\Tags:getTags')->setName('getTags');
1872 $this->get('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:getTag')->setName('getTag');
1873 $this->put('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:putTag')->setName('putTag');
1874 $this->delete('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:deleteTag')->setName('deleteTag');
1875
61d40693 1876 $this->get('/history', '\Shaarli\Api\Controllers\History:getHistory')->setName('getHistory');
465b1c40 1877})->add('\Shaarli\Api\ApiMiddleware');
18e67967
A
1878
1879$response = $app->run(true);
5d9bc40d 1880
18e67967 1881// Hack to make Slim and Shaarli router work together:
16e3d006
A
1882// If a Slim route isn't found and NOT API call, we call renderPage().
1883if ($response->getStatusCode() == 404 && strpos($_SERVER['REQUEST_URI'], '/api/v1') === false) {
18e67967
A
1884 // We use UTF-8 for proper international characters handling.
1885 header('Content-Type: text/html; charset=utf-8');
44acf706 1886 renderPage($conf, $pluginManager, $linkDb, $history, $sessionManager, $loginManager);
18e67967 1887} else {
5d9bc40d
A
1888 $response = $response
1889 ->withHeader('Access-Control-Allow-Origin', '*')
1890 ->withHeader(
1891 'Access-Control-Allow-Headers',
1892 'X-Requested-With, Content-Type, Accept, Origin, Authorization'
1893 )
1894 ->withHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
18e67967
A
1895 $app->respond($response);
1896}