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