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