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