]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - index.php
Make FeedBuilder instance creation independant of the request stack
[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';
51753e40
V
56require_once 'application/http/HttpUtils.php';
57require_once 'application/http/UrlUtils.php';
bcf056c9 58require_once 'application/updater/UpdaterUtils.php';
2e28269b 59require_once 'application/FileUtils.php';
d1e2f8e5 60require_once 'application/TimeZone.php';
ca74886f 61require_once 'application/Utils.php';
f24896b2 62
6c50a6cc 63use Shaarli\ApplicationUtils;
cf92b4dd 64use Shaarli\Bookmark\Bookmark;
cf92b4dd 65use Shaarli\Bookmark\BookmarkFileService;
6c50a6cc
A
66use Shaarli\Bookmark\BookmarkFilter;
67use Shaarli\Bookmark\BookmarkServiceInterface;
68use Shaarli\Bookmark\Exception\BookmarkNotFoundException;
69use Shaarli\Config\ConfigManager;
70use Shaarli\Container\ContainerBuilder;
71use Shaarli\Feed\CachedPage;
72use Shaarli\Feed\FeedBuilder;
a39acb25 73use Shaarli\Formatter\BookmarkMarkdownFormatter;
cf92b4dd 74use Shaarli\Formatter\FormatterFactory;
6c50a6cc
A
75use Shaarli\History;
76use Shaarli\Languages;
77use Shaarli\Netscape\NetscapeBookmarkUtils;
78use Shaarli\Plugin\PluginManager;
79use Shaarli\Render\PageBuilder;
b0428aa9 80use Shaarli\Render\PageCacheManager;
6c50a6cc
A
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
A
303/**
304 * Renders the linklist
305 *
cf92b4dd
A
306 * @param pageBuilder $PAGE pageBuilder instance.
307 * @param BookmarkServiceInterface $linkDb instance.
308 * @param ConfigManager $conf Configuration Manager instance.
309 * @param PluginManager $pluginManager Plugin Manager instance.
278d9ee2 310 */
cf92b4dd 311function showLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager)
93bf0918 312{
cf92b4dd 313 buildLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager);
6fc14d53
A
314 $PAGE->renderPage('linklist');
315}
316
278d9ee2
A
317/**
318 * Render HTML page (according to URL parameters and user rights)
319 *
cf92b4dd
A
320 * @param ConfigManager $conf Configuration Manager instance.
321 * @param PluginManager $pluginManager Plugin Manager instance,
322 * @param BookmarkServiceInterface $bookmarkService
323 * @param History $history instance
324 * @param SessionManager $sessionManager SessionManager instance
325 * @param LoginManager $loginManager LoginManager instance
278d9ee2 326 */
cf92b4dd 327function renderPage($conf, $pluginManager, $bookmarkService, $history, $sessionManager, $loginManager)
45034273 328{
c4d5be53 329 $pageCacheManager = new PageCacheManager($conf->get('resource.page_cache'), $loginManager->isLoggedIn());
510377d2 330 $updater = new Updater(
cf92b4dd
A
331 UpdaterUtils::read_updates_file($conf->get('resource.updates')),
332 $bookmarkService,
278d9ee2 333 $conf,
cf92b4dd 334 $loginManager->isLoggedIn()
510377d2
A
335 );
336 try {
337 $newUpdates = $updater->update();
338 if (! empty($newUpdates)) {
cf92b4dd 339 UpdaterUtils::write_updates_file(
894a3c4b 340 $conf->get('resource.updates'),
510377d2
A
341 $updater->getDoneUpdates()
342 );
b0428aa9
A
343
344 $pageCacheManager->invalidateCaches();
510377d2 345 }
93bf0918 346 } catch (Exception $e) {
510377d2
A
347 die($e->getMessage());
348 }
349
cf92b4dd
A
350 $PAGE = new PageBuilder($conf, $_SESSION, $bookmarkService, $sessionManager->generateToken(), $loginManager->isLoggedIn());
351 $PAGE->assign('linkcount', $bookmarkService->count(BookmarkFilter::$ALL));
352 $PAGE->assign('privateLinkcount', $bookmarkService->count(BookmarkFilter::$PRIVATE));
7fde6de1 353 $PAGE->assign('plugin_errors', $pluginManager->getErrors());
6fc14d53
A
354
355 // Determine which page will be rendered.
356 $query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : '';
63ea23c2 357 $targetPage = Router::findPage($query, $_GET, $loginManager->isLoggedIn());
6fc14d53 358
93bf0918 359 if (// if the user isn't logged in
63ea23c2 360 !$loginManager->isLoggedIn() &&
27e21231
WE
361 // and Shaarli doesn't have public content...
362 $conf->get('privacy.hide_public_links') &&
363 // and is configured to enforce the login
364 $conf->get('privacy.force_login') &&
365 // and the current page isn't already the login page
366 $targetPage !== Router::$PAGE_LOGIN &&
367 // and the user is not requesting a feed (which would lead to a different content-type as expected)
368 $targetPage !== Router::$PAGE_FEED_ATOM &&
369 $targetPage !== Router::$PAGE_FEED_RSS
370 ) {
371 // force current page to be the login page
372 $targetPage = Router::$PAGE_LOGIN;
373 }
374
6fc14d53
A
375 // Call plugin hooks for header, footer and includes, specifying which page will be rendered.
376 // Then assign generated data to RainTPL.
377 $common_hooks = array(
fea5db7a 378 'includes',
6fc14d53
A
379 'header',
380 'footer',
6fc14d53 381 );
278d9ee2 382
93bf0918 383 foreach ($common_hooks as $name) {
6fc14d53 384 $plugin_data = array();
93bf0918
V
385 $pluginManager->executeHooks(
386 'render_' . $name,
387 $plugin_data,
6fc14d53
A
388 array(
389 'target' => $targetPage,
63ea23c2 390 'loggedin' => $loginManager->isLoggedIn()
6fc14d53
A
391 )
392 );
393 $PAGE->assign('plugins_' . $name, $plugin_data);
394 }
395
45034273 396 // -------- Display login form.
93bf0918 397 if ($targetPage == Router::$PAGE_LOGIN) {
6c50a6cc 398 header('Location: ./login');
45034273
SS
399 exit;
400 }
401 // -------- User wants to logout.
93bf0918 402 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=logout')) {
8e47af2b 403 header('Location: ./logout');
45034273
SS
404 exit;
405 }
406
407 // -------- Picture wall
93bf0918 408 if ($targetPage == Router::$PAGE_PICWALL) {
485b168a 409 header('Location: ./picture-wall');
45034273
SS
410 exit;
411 }
412
413 // -------- Tag cloud
93bf0918 414 if ($targetPage == Router::$PAGE_TAGCLOUD) {
c266a89d 415 header('Location: ./tag-cloud');
bb8f712d 416 exit;
45034273
SS
417 }
418
49cc8e5d 419 // -------- Tag list
93bf0918 420 if ($targetPage == Router::$PAGE_TAGLIST) {
60ae2412 421 header('Location: ./tag-list');
aa4797ba
A
422 exit;
423 }
424
38603b24
A
425 // Daily page.
426 if ($targetPage == Router::$PAGE_DAILY) {
07f99432
A
427 $dayParam = !empty($_GET['day']) ? '?day=' . escape($_GET['day']) : '';
428 header('Location: ./daily'. $dayParam);
69e29ff6 429 exit;
38603b24
A
430 }
431
82e36802
A
432 // ATOM and RSS feed.
433 if ($targetPage == Router::$PAGE_FEED_ATOM || $targetPage == Router::$PAGE_FEED_RSS) {
434 $feedType = $targetPage == Router::$PAGE_FEED_RSS ? FeedBuilder::$FEED_RSS : FeedBuilder::$FEED_ATOM;
435 header('Content-Type: application/'. $feedType .'+xml; charset=utf-8');
436
437 // Cache system
438 $query = $_SERVER['QUERY_STRING'];
439 $cache = new CachedPage(
894a3c4b 440 $conf->get('resource.page_cache'),
82e36802 441 page_url($_SERVER),
93bf0918 442 startsWith($query, 'do='. $targetPage) && !$loginManager->isLoggedIn()
82e36802
A
443 );
444 $cached = $cache->cachedVersion();
5f143b72 445 if (!empty($cached)) {
82e36802
A
446 echo $cached;
447 exit;
448 }
69c474b9 449
a39acb25 450 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
82e36802 451 // Generate data.
cf92b4dd
A
452 $feedGenerator = new FeedBuilder(
453 $bookmarkService,
e26e2060 454 $factory->getFormatter(),
cf92b4dd 455 $_SERVER,
cf92b4dd
A
456 $loginManager->isLoggedIn()
457 );
82e36802 458 $feedGenerator->setLocale(strtolower(setlocale(LC_COLLATE, 0)));
63ea23c2 459 $feedGenerator->setHideDates($conf->get('privacy.hide_timestamps') && !$loginManager->isLoggedIn());
894a3c4b 460 $feedGenerator->setUsePermalinks(isset($_GET['permalinks']) || !$conf->get('feed.rss_permalinks'));
f4929b11 461 $data = $feedGenerator->buildData($feedType, $_GET);
82e36802
A
462
463 // Process plugin hook.
82e36802 464 $pluginManager->executeHooks('render_feed', $data, array(
63ea23c2 465 'loggedin' => $loginManager->isLoggedIn(),
82e36802
A
466 'target' => $targetPage,
467 ));
468
469 // Render the template.
470 $PAGE->assignAll($data);
471 $PAGE->renderPage('feed.'. $feedType);
472 $cache->cache(ob_get_contents());
473 ob_end_flush();
474 exit;
e67712ba
A
475 }
476
18e67967 477 // Display opensearch plugin (XML)
8f8113b9
A
478 if ($targetPage == Router::$PAGE_OPENSEARCH) {
479 header('Content-Type: application/xml; charset=utf-8');
480 $PAGE->assign('serverurl', index_url($_SERVER));
481 $PAGE->renderPage('opensearch');
482 exit;
483 }
484
45034273 485 // -------- User clicks on a tag in a link: The tag is added to the list of searched tags (searchtags=...)
93bf0918 486 if (isset($_GET['addtag'])) {
c56a540c 487 header('Location: ./add-tag/'. $_GET['addtag']);
45034273
SS
488 exit;
489 }
490
491 // -------- User clicks on a tag in result count: Remove the tag from the list of searched tags (searchtags=...)
775803a0 492 if (isset($_GET['removetag'])) {
45034273 493 // Get previous URL (http_referer) and remove the tag from the searchtags parameters in query.
775803a0
A
494 if (empty($_SERVER['HTTP_REFERER'])) {
495 header('Location: ?');
496 exit;
497 }
498
499 // In case browser does not send HTTP_REFERER
500 parse_str(parse_url($_SERVER['HTTP_REFERER'], PHP_URL_QUERY), $params);
501
502 // Prevent redirection loop
503 if (isset($params['removetag'])) {
504 unset($params['removetag']);
505 }
506
507 if (isset($params['searchtags'])) {
822bffce 508 $tags = explode(' ', $params['searchtags']);
2c75f8e7
A
509 // Remove value from array $tags.
510 $tags = array_diff($tags, array($_GET['removetag']));
93bf0918 511 $params['searchtags'] = implode(' ', $tags);
2c75f8e7
A
512
513 if (empty($params['searchtags'])) {
775803a0 514 unset($params['searchtags']);
775803a0 515 }
2c75f8e7 516
9d9f6d75
V
517 // We also remove page (keeping the same page has no sense, since
518 // the results are different)
519 unset($params['page']);
45034273
SS
520 }
521 header('Location: ?'.http_build_query($params));
522 exit;
523 }
524
cf92b4dd 525 // -------- User wants to change the number of bookmarks per page (linksperpage=...)
775803a0
A
526 if (isset($_GET['linksperpage'])) {
527 if (is_numeric($_GET['linksperpage'])) {
528 $_SESSION['LINKS_PER_PAGE']=abs(intval($_GET['linksperpage']));
529 }
530
8bbf02e0
A
531 if (! empty($_SERVER['HTTP_REFERER'])) {
532 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('linksperpage'));
533 } else {
534 $location = '?';
535 }
536 header('Location: '. $location);
45034273
SS
537 exit;
538 }
bb8f712d 539
cf92b4dd 540 // -------- User wants to see only private bookmarks (toggle)
9d4736a3 541 if (isset($_GET['visibility'])) {
9d4736a3 542 if ($_GET['visibility'] === 'private') {
d2f6d909
A
543 // Visibility not set or not already private, set private, otherwise reset it
544 if (empty($_SESSION['visibility']) || $_SESSION['visibility'] !== 'private') {
cf92b4dd 545 // See only private bookmarks
d2f6d909
A
546 $_SESSION['visibility'] = 'private';
547 } else {
548 unset($_SESSION['visibility']);
549 }
d2d4f993 550 } elseif ($_GET['visibility'] === 'public') {
d2f6d909 551 if (empty($_SESSION['visibility']) || $_SESSION['visibility'] !== 'public') {
cf92b4dd 552 // See only public bookmarks
d2f6d909
A
553 $_SESSION['visibility'] = 'public';
554 } else {
555 unset($_SESSION['visibility']);
556 }
45034273 557 }
775803a0 558
8bbf02e0 559 if (! empty($_SERVER['HTTP_REFERER'])) {
9d4736a3 560 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('visibility'));
8bbf02e0
A
561 } else {
562 $location = '?';
563 }
564 header('Location: '. $location);
45034273
SS
565 exit;
566 }
567
cf92b4dd 568 // -------- User wants to see only untagged bookmarks (toggle)
f210d94f 569 if (isset($_GET['untaggedonly'])) {
c4925c1f 570 $_SESSION['untaggedonly'] = empty($_SESSION['untaggedonly']);
f210d94f
LC
571
572 if (! empty($_SERVER['HTTP_REFERER'])) {
573 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('untaggedonly'));
574 } else {
575 $location = '?';
576 }
577 header('Location: '. $location);
578 exit;
579 }
580
45034273 581 // -------- Handle other actions allowed for non-logged in users:
93bf0918 582 if (!$loginManager->isLoggedIn()) {
ad6c27b7 583 // User tries to post new link but is not logged in:
45034273 584 // Show login screen, then redirect to ?post=...
93bf0918 585 if (isset($_GET['post'])) {
0b04f797 586 header( // Redirect to login page, then back to post link.
72caf4e8 587 'Location: ./login?post='.urlencode($_GET['post']).
0b04f797 588 (!empty($_GET['title'])?'&title='.urlencode($_GET['title']):'').
589 (!empty($_GET['description'])?'&description='.urlencode($_GET['description']):'').
590 (!empty($_GET['tags'])?'&tags='.urlencode($_GET['tags']):'').
591 (!empty($_GET['source'])?'&source='.urlencode($_GET['source']):'')
592 );
45034273
SS
593 exit;
594 }
aedc912d 595
cf92b4dd 596 showLinkList($PAGE, $bookmarkService, $conf, $pluginManager, $loginManager);
5fbabbb9 597 if (isset($_GET['edit_link'])) {
72caf4e8 598 header('Location: ./login?edit_link='. escape($_GET['edit_link']));
5fbabbb9
A
599 exit;
600 }
601
ad6c27b7 602 exit; // Never remove this one! All operations below are reserved for logged in user.
45034273
SS
603 }
604
605 // -------- All other functions are reserved for the registered user:
606
607 // -------- Display the Tools menu if requested (import/export/bookmarklet...)
93bf0918 608 if ($targetPage == Router::$PAGE_TOOLS) {
a3130d2c 609 $data = [
6fc14d53 610 'pageabsaddr' => index_url($_SERVER),
a3130d2c
A
611 'sslenabled' => is_https($_SERVER),
612 ];
6fc14d53
A
613 $pluginManager->executeHooks('render_tools', $data);
614
615 foreach ($data as $key => $value) {
616 $PAGE->assign($key, $value);
617 }
618
980efd6c 619 $PAGE->assign('pagetitle', t('Tools') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
620 $PAGE->renderPage('tools');
621 exit;
622 }
623
624 // -------- User wants to change his/her password.
93bf0918 625 if ($targetPage == Router::$PAGE_CHANGEPASSWORD) {
894a3c4b 626 if ($conf->get('security.open_shaarli')) {
12266213 627 die(t('You are not supposed to change a password on an Open Shaarli.'));
684e662a
A
628 }
629
93bf0918
V
630 if (!empty($_POST['setpassword']) && !empty($_POST['oldpassword'])) {
631 if (!$sessionManager->checkToken($_POST['token'])) {
632 die(t('Wrong token.')); // Go away!
633 }
45034273
SS
634
635 // Make sure old password is correct.
9d9f6d75
V
636 $oldhash = sha1(
637 $_POST['oldpassword'].$conf->get('credentials.login').$conf->get('credentials.salt')
638 );
639 if ($oldhash != $conf->get('credentials.hash')) {
640 echo '<script>alert("'
641 . t('The old password is not correct.')
bee33239 642 .'");document.location=\'./?do=changepasswd\';</script>';
ebd650c0 643 exit;
12266213 644 }
45034273 645 // Save new password
684e662a 646 // Salt renders rainbow-tables attacks useless.
da10377b 647 $conf->set('credentials.salt', sha1(uniqid('', true) .'_'. mt_rand()));
9d9f6d75
V
648 $conf->set(
649 'credentials.hash',
650 sha1(
651 $_POST['setpassword']
652 . $conf->get('credentials.login')
653 . $conf->get('credentials.salt')
654 )
655 );
dd484b90 656 try {
63ea23c2 657 $conf->write($loginManager->isLoggedIn());
93bf0918 658 } catch (Exception $e) {
dd484b90
A
659 error_log(
660 'ERROR while writing config file after changing password.' . PHP_EOL .
661 $e->getMessage()
662 );
663
664 // TODO: do not handle exceptions/errors in JS.
bee33239 665 echo '<script>alert("'. $e->getMessage() .'");document.location=\'./?do=tools\';</script>';
dd484b90
A
666 exit;
667 }
bee33239 668 echo '<script>alert("'. t('Your password has been changed') .'");document.location=\'./?do=tools\';</script>';
45034273 669 exit;
93bf0918
V
670 } else {
671 // show the change password form.
980efd6c 672 $PAGE->assign('pagetitle', t('Change password') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
673 $PAGE->renderPage('changepassword');
674 exit;
675 }
676 }
677
678 // -------- User wants to change configuration
93bf0918
V
679 if ($targetPage == Router::$PAGE_CONFIGURE) {
680 if (!empty($_POST['title'])) {
ebd650c0 681 if (!$sessionManager->checkToken($_POST['token'])) {
12266213 682 die(t('Wrong token.')); // Go away!
12ff86c9 683 }
45034273 684 $tz = 'UTC';
12ff86c9
A
685 if (!empty($_POST['continent']) && !empty($_POST['city'])
686 && isTimeZoneValid($_POST['continent'], $_POST['city'])
687 ) {
688 $tz = $_POST['continent'] . '/' . $_POST['city'];
689 }
da10377b 690 $conf->set('general.timezone', $tz);
7f179985
A
691 $conf->set('general.title', escape($_POST['title']));
692 $conf->set('general.header_link', escape($_POST['titleLink']));
6a487252 693 $conf->set('general.retrieve_description', !empty($_POST['retrieveDescription']));
adc4aee8 694 $conf->set('resource.theme', escape($_POST['theme']));
da10377b 695 $conf->set('security.session_protection_disabled', !empty($_POST['disablesessionprotection']));
894a3c4b
A
696 $conf->set('privacy.default_private_links', !empty($_POST['privateLinkByDefault']));
697 $conf->set('feed.rss_permalinks', !empty($_POST['enableRssPermalinks']));
698 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
699 $conf->set('privacy.hide_public_links', !empty($_POST['hidePublicLinks']));
76be95e1 700 $conf->set('api.enabled', !empty($_POST['enableApi']));
cbfdcff2 701 $conf->set('api.secret', escape($_POST['apiSecret']));
cf92b4dd
A
702 $conf->set('formatter', escape($_POST['formatter']));
703
704 if (! empty($_POST['language'])) {
705 $conf->set('translation.language', escape($_POST['language']));
706 }
f39580c6 707
b302b3c5 708 $thumbnailsMode = extension_loaded('gd') ? $_POST['enableThumbnails'] : Thumbnailer::MODE_NONE;
7b4fea0e
A
709 if ($thumbnailsMode !== Thumbnailer::MODE_NONE
710 && $thumbnailsMode !== $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE)
711 ) {
28f26524 712 $_SESSION['warnings'][] = t(
9d9f6d75 713 'You have enabled or changed thumbnails mode. '
bee33239 714 .'<a href="./?do=thumbs_update">Please synchronize them</a>.'
28f26524
A
715 );
716 }
b302b3c5 717 $conf->set('thumbnails.mode', $thumbnailsMode);
f39580c6 718
dd484b90 719 try {
63ea23c2 720 $conf->write($loginManager->isLoggedIn());
4306b184 721 $history->updateSettings();
b0428aa9 722 $pageCacheManager->invalidateCaches();
93bf0918 723 } catch (Exception $e) {
dd484b90
A
724 error_log(
725 'ERROR while writing config file after configuration update.' . PHP_EOL .
726 $e->getMessage()
727 );
728
729 // TODO: do not handle exceptions/errors in JS.
bee33239 730 echo '<script>alert("'. $e->getMessage() .'");document.location=\'./?do=configure\';</script>';
dd484b90
A
731 exit;
732 }
bee33239 733 echo '<script>alert("'. t('Configuration was saved.') .'");document.location=\'./?do=configure\';</script>';
45034273 734 exit;
93bf0918
V
735 } else {
736 // Show the configuration form.
da10377b 737 $PAGE->assign('title', $conf->get('general.title'));
adc4aee8 738 $PAGE->assign('theme', $conf->get('resource.theme'));
a0df0651 739 $PAGE->assign('theme_available', ThemeUtils::getThemes($conf->get('resource.raintpl_tpl')));
cf92b4dd 740 $PAGE->assign('formatter_available', ['default', 'markdown']);
ae3aa968
A
741 list($continents, $cities) = generateTimeZoneData(
742 timezone_identifiers_list(),
743 $conf->get('general.timezone')
744 );
745 $PAGE->assign('continents', $continents);
746 $PAGE->assign('cities', $cities);
6a487252 747 $PAGE->assign('retrieve_description', $conf->get('general.retrieve_description'));
894a3c4b 748 $PAGE->assign('private_links_default', $conf->get('privacy.default_private_links', false));
2e193ad3 749 $PAGE->assign('session_protection_disabled', $conf->get('security.session_protection_disabled', false));
894a3c4b
A
750 $PAGE->assign('enable_rss_permalinks', $conf->get('feed.rss_permalinks', false));
751 $PAGE->assign('enable_update_check', $conf->get('updates.check_updates', true));
752 $PAGE->assign('hide_public_links', $conf->get('privacy.hide_public_links', false));
cbfdcff2
A
753 $PAGE->assign('api_enabled', $conf->get('api.enabled', true));
754 $PAGE->assign('api_secret', $conf->get('api.secret'));
f39580c6 755 $PAGE->assign('languages', Languages::getAvailableLanguages());
787faa42 756 $PAGE->assign('gd_enabled', extension_loaded('gd'));
b302b3c5 757 $PAGE->assign('thumbnails_mode', $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE));
980efd6c 758 $PAGE->assign('pagetitle', t('Configure') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
759 $PAGE->renderPage('configure');
760 exit;
761 }
762 }
763
764 // -------- User wants to rename a tag or delete it
93bf0918 765 if ($targetPage == Router::$PAGE_CHANGETAG) {
6a6aa2b9 766 if (empty($_POST['fromtag']) || (empty($_POST['totag']) && isset($_POST['renametag']))) {
aa4797ba 767 $PAGE->assign('fromtag', ! empty($_GET['fromtag']) ? escape($_GET['fromtag']) : '');
980efd6c 768 $PAGE->assign('pagetitle', t('Manage tags') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
769 $PAGE->renderPage('changetag');
770 exit;
771 }
6a6aa2b9 772
ebd650c0 773 if (!$sessionManager->checkToken($_POST['token'])) {
12266213 774 die(t('Wrong token.'));
6a6aa2b9 775 }
45034273 776
4fa9a3c5 777 $toTag = isset($_POST['totag']) ? escape($_POST['totag']) : null;
cf92b4dd
A
778 $fromTag = escape($_POST['fromtag']);
779 $count = 0;
780 $bookmarks = $bookmarkService->search(['searchtags' => $fromTag], BookmarkFilter::$ALL, true);
781 foreach ($bookmarks as $bookmark) {
782 if ($toTag) {
783 $bookmark->renameTag($fromTag, $toTag);
784 } else {
785 $bookmark->deleteTag($fromTag);
786 }
787 $bookmarkService->set($bookmark, false);
788 $history->updateLink($bookmark);
789 $count++;
45034273 790 }
cf92b4dd 791 $bookmarkService->save();
3b67b222 792 $delete = empty($_POST['totag']);
bee33239 793 $redirect = $delete ? './do=changetag' : 'searchtags='. urlencode(escape($_POST['totag']));
d99aef53 794 $alert = $delete
cf92b4dd
A
795 ? sprintf(t('The tag was removed from %d link.', 'The tag was removed from %d bookmarks.', $count), $count)
796 : sprintf(t('The tag was renamed in %d link.', 'The tag was renamed in %d bookmarks.', $count), $count);
d99aef53
A
797 echo '<script>alert("'. $alert .'");document.location=\'?'. $redirect .'\';</script>';
798 exit;
45034273
SS
799 }
800
ad6c27b7 801 // -------- User wants to add a link without using the bookmarklet: Show form.
93bf0918 802 if ($targetPage == Router::$PAGE_ADDLINK) {
980efd6c 803 $PAGE->assign('pagetitle', t('Shaare a new link') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
804 $PAGE->renderPage('addlink');
805 exit;
806 }
807
808 // -------- User clicked the "Save" button when editing a link: Save link to database.
93bf0918 809 if (isset($_POST['save_edit'])) {
5a23950c 810 // Go away!
ebd650c0 811 if (! $sessionManager->checkToken($_POST['token'])) {
12266213 812 die(t('Wrong token.'));
5a23950c 813 }
01878a75
A
814
815 // lf_id should only be present if the link exists.
cf92b4dd
A
816 $id = isset($_POST['lf_id']) ? intval(escape($_POST['lf_id'])) : null;
817 if ($id && $bookmarkService->exists($id)) {
01878a75 818 // Edit
cf92b4dd 819 $bookmark = $bookmarkService->get($id);
01878a75
A
820 } else {
821 // New link
cf92b4dd 822 $bookmark = new Bookmark();
c27f2f36 823 }
5a23950c 824
cf92b4dd
A
825 $bookmark->setTitle($_POST['lf_title']);
826 $bookmark->setDescription($_POST['lf_description']);
827 $bookmark->setUrl($_POST['lf_url'], $conf->get('security.allowed_protocols'));
828 $bookmark->setPrivate(isset($_POST['lf_private']));
829 $bookmark->setTagsString($_POST['lf_tags']);
6fc14d53 830
a8e7da01 831 if ($conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE
cf92b4dd 832 && ! $bookmark->isNote()
a8e7da01 833 ) {
1b93137e 834 $thumbnailer = new Thumbnailer($conf);
cf92b4dd 835 $bookmark->setThumbnail($thumbnailer->get($bookmark->getUrl()));
1b93137e 836 }
cf92b4dd 837 $bookmarkService->addOrSet($bookmark, false);
1b93137e 838
cf92b4dd 839 // To preserve backward compatibility with 3rd parties, plugins still use arrays
a39acb25 840 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
cf92b4dd
A
841 $formatter = $factory->getFormatter('raw');
842 $data = $formatter->format($bookmark);
843 $pluginManager->executeHooks('save_link', $data);
6fc14d53 844
cf92b4dd
A
845 $bookmark->fromArray($data);
846 $bookmarkService->set($bookmark);
45034273
SS
847
848 // If we are called from the bookmarklet, we must close the popup:
d01c2342
A
849 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
850 echo '<script>self.close();</script>';
851 exit;
852 }
853
fd50e14c 854 $returnurl = !empty($_POST['returnurl']) ? $_POST['returnurl'] : '?';
775803a0 855 $location = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
5a23950c 856 // Scroll to the link which has been edited.
cf92b4dd 857 $location .= '#' . $bookmark->getShortUrl();
5a23950c
A
858 // After saving the link, redirect to the page the user was on.
859 header('Location: '. $location);
45034273
SS
860 exit;
861 }
862
ad6c27b7 863 // -------- User clicked the "Delete" button when editing a link: Delete link from database.
93bf0918 864 if ($targetPage == Router::$PAGE_DELETELINK) {
ebd650c0 865 if (! $sessionManager->checkToken($_GET['token'])) {
12266213 866 die(t('Wrong token.'));
f4ebd5fe 867 }
01878a75 868
a74f52a8
WE
869 $ids = trim($_GET['lf_linkdate']);
870 if (strpos($ids, ' ') !== false) {
871 // multiple, space-separated ids provided
cf92b4dd
A
872 $ids = array_values(array_filter(
873 preg_split('/\s+/', escape($ids)),
874 function ($item) {
875 return $item !== '';
876 }
877 ));
29a837f3 878 } else {
a74f52a8 879 // only a single id provided
cf92b4dd 880 $shortUrl = $bookmarkService->get($ids)->getShortUrl();
a74f52a8
WE
881 $ids = [$ids];
882 }
883 // assert at least one id is given
93bf0918 884 if (!count($ids)) {
a74f52a8 885 die('no id provided');
29a837f3 886 }
a39acb25 887 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
cf92b4dd 888 $formatter = $factory->getFormatter('raw');
29a837f3
A
889 foreach ($ids as $id) {
890 $id = (int) escape($id);
cf92b4dd
A
891 $bookmark = $bookmarkService->get($id);
892 $data = $formatter->format($bookmark);
893 $pluginManager->executeHooks('delete_link', $data);
894 $bookmarkService->remove($bookmark, false);
29a837f3 895 }
cf92b4dd 896 $bookmarkService->save();
45034273
SS
897
898 // If we are called from the bookmarklet, we must close the popup:
93bf0918
V
899 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
900 echo '<script>self.close();</script>';
901 exit;
902 }
95e5add4
A
903
904 $location = '?';
905 if (isset($_SERVER['HTTP_REFERER'])) {
906 // Don't redirect to where we were previously if it was a permalink or an edit_link, because it would 404.
907 $location = generateLocation(
93bf0918
V
908 $_SERVER['HTTP_REFERER'],
909 $_SERVER['HTTP_HOST'],
cf92b4dd 910 ['delete_link', 'edit_link', ! empty($shortUrl) ? $shortUrl : null]
95e5add4 911 );
d528433d 912 }
913
914 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
45034273
SS
915 exit;
916 }
917
8d03f705
A
918 // -------- User clicked either "Set public" or "Set private" bulk operation
919 if ($targetPage == Router::$PAGE_CHANGE_VISIBILITY) {
920 if (! $sessionManager->checkToken($_GET['token'])) {
921 die(t('Wrong token.'));
922 }
923
924 $ids = trim($_GET['ids']);
925 if (strpos($ids, ' ') !== false) {
926 // multiple, space-separated ids provided
927 $ids = array_values(array_filter(preg_split('/\s+/', escape($ids))));
928 } else {
929 // only a single id provided
930 $ids = [$ids];
931 }
932
933 // assert at least one id is given
934 if (!count($ids)) {
935 die('no id provided');
936 }
937 // assert that the visibility is valid
938 if (!isset($_GET['newVisibility']) || !in_array($_GET['newVisibility'], ['public', 'private'])) {
939 die('invalid visibility');
940 } else {
941 $private = $_GET['newVisibility'] === 'private';
942 }
a39acb25 943 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
cf92b4dd 944 $formatter = $factory->getFormatter('raw');
8d03f705
A
945 foreach ($ids as $id) {
946 $id = (int) escape($id);
cf92b4dd
A
947 $bookmark = $bookmarkService->get($id);
948 $bookmark->setPrivate($private);
949
950 // To preserve backward compatibility with 3rd parties, plugins still use arrays
951 $data = $formatter->format($bookmark);
952 $pluginManager->executeHooks('save_link', $data);
953 $bookmark->fromArray($data);
954
955 $bookmarkService->set($bookmark);
8d03f705 956 }
cf92b4dd 957 $bookmarkService->save();
8d03f705
A
958
959 $location = '?';
960 if (isset($_SERVER['HTTP_REFERER'])) {
961 $location = generateLocation(
962 $_SERVER['HTTP_REFERER'],
963 $_SERVER['HTTP_HOST']
964 );
965 }
966 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
45034273
SS
967 exit;
968 }
969
970 // -------- User clicked the "EDIT" button on a link: Display link edit form.
93bf0918 971 if (isset($_GET['edit_link'])) {
01878a75 972 $id = (int) escape($_GET['edit_link']);
cf92b4dd
A
973 try {
974 $link = $bookmarkService->get($id); // Read database
975 } catch (BookmarkNotFoundException $e) {
976 // Link not found in database.
93bf0918
V
977 header('Location: ?');
978 exit;
cf92b4dd
A
979 }
980
a39acb25 981 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
cf92b4dd
A
982 $formatter = $factory->getFormatter('raw');
983 $formattedLink = $formatter->format($link);
a39acb25
A
984 $tags = $bookmarkService->bookmarksCountPerTag();
985 if ($conf->get('formatter') === 'markdown') {
986 $tags[BookmarkMarkdownFormatter::NO_MD_TAG] = 1;
987 }
6fc14d53 988 $data = array(
cf92b4dd 989 'link' => $formattedLink,
6fc14d53 990 'link_is_new' => false,
6fc14d53 991 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
a39acb25 992 'tags' => $tags,
6fc14d53
A
993 );
994 $pluginManager->executeHooks('render_editlink', $data);
995
996 foreach ($data as $key => $value) {
997 $PAGE->assign($key, $value);
998 }
999
980efd6c 1000 $PAGE->assign('pagetitle', t('Edit') .' '. t('Shaare') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1001 $PAGE->renderPage('editlink');
1002 exit;
1003 }
1004
1005 // -------- User want to post a new link: Display link edit form.
d9d776af 1006 if (isset($_GET['post'])) {
ce7b0b64 1007 $url = cleanup_url($_GET['post']);
45034273
SS
1008
1009 $link_is_new = false;
9e1724f1 1010 // Check if URL is not already in database (in this case, we will edit the existing link)
cf92b4dd
A
1011 $bookmark = $bookmarkService->findByUrl($url);
1012 if (! $bookmark) {
9e1724f1 1013 $link_is_new = true;
9e1724f1 1014 // Get title if it was provided in URL (by the bookmarklet).
739dc243 1015 $title = empty($_GET['title']) ? '' : escape($_GET['title']);
9e1724f1 1016 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that]
739dc243
A
1017 $description = empty($_GET['description']) ? '' : escape($_GET['description']);
1018 $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']);
1019 $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0;
9d9f6d75
V
1020
1021 // If this is an HTTP(S) link, we try go get the page to extract
1022 // the title (otherwise we will to straight to the edit form.)
ef591e7e 1023 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) {
6a487252 1024 $retrieveDescription = $conf->get('general.retrieve_description');
451314eb 1025 // Short timeout to keep the application responsive
d65342e3 1026 // The callback will fill $charset and $title with data from the downloaded page.
4ff3ed1c
A
1027 get_http_response(
1028 $url,
4ff3ed1c 1029 $conf->get('general.download_timeout', 30),
8d2cac1b 1030 $conf->get('general.download_max_size', 4194304),
6a487252 1031 get_curl_download_callback($charset, $title, $description, $tags, $retrieveDescription)
4ff3ed1c 1032 );
d65342e3
A
1033 if (! empty($title) && strtolower($charset) != 'utf-8') {
1034 $title = mb_convert_encoding($title, 'utf-8', $charset);
9e1724f1 1035 }
45034273 1036 }
1557cefb 1037
9e1724f1 1038 if ($url == '') {
f39580c6 1039 $title = $conf->get('general.default_note_title', t('Note: '));
27646ca5 1040 }
ce7b0b64
A
1041 $url = escape($url);
1042 $title = escape($title);
1557cefb 1043
cf92b4dd 1044 $link = [
9e1724f1 1045 'title' => $title,
ef591e7e 1046 'url' => $url,
9e1724f1
A
1047 'description' => $description,
1048 'tags' => $tags,
807cade6 1049 'private' => $private,
cf92b4dd 1050 ];
01878a75 1051 } else {
a39acb25
A
1052 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
1053 $formatter = $factory->getFormatter('raw');
cf92b4dd 1054 $link = $formatter->format($bookmark);
45034273
SS
1055 }
1056
a39acb25
A
1057 $tags = $bookmarkService->bookmarksCountPerTag();
1058 if ($conf->get('formatter') === 'markdown') {
1059 $tags[BookmarkMarkdownFormatter::NO_MD_TAG] = 1;
1060 }
cf92b4dd 1061 $data = [
6fc14d53
A
1062 'link' => $link,
1063 'link_is_new' => $link_is_new,
6fc14d53
A
1064 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
1065 'source' => (isset($_GET['source']) ? $_GET['source'] : ''),
a39acb25 1066 'tags' => $tags,
cdbc8180 1067 'default_private_links' => $conf->get('privacy.default_private_links', false),
cf92b4dd 1068 ];
6fc14d53
A
1069 $pluginManager->executeHooks('render_editlink', $data);
1070
1071 foreach ($data as $key => $value) {
1072 $PAGE->assign($key, $value);
1073 }
1074
980efd6c 1075 $PAGE->assign('pagetitle', t('Shaare') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1076 $PAGE->renderPage('editlink');
1077 exit;
1078 }
1079
4154c25b 1080 if ($targetPage == Router::$PAGE_PINLINK) {
cf92b4dd 1081 if (! isset($_GET['id']) || !$bookmarkService->exists($_GET['id'])) {
4154c25b
A
1082 // FIXME! Use a proper error system.
1083 $msg = t('Invalid link ID provided');
1084 echo '<script>alert("'. $msg .'");document.location=\''. index_url($_SERVER) .'\';</script>';
1085 exit;
1086 }
1087 if (! $sessionManager->checkToken($_GET['token'])) {
1088 die('Wrong token.');
1089 }
1090
cf92b4dd
A
1091 $link = $bookmarkService->get($_GET['id']);
1092 $link->setSticky(! $link->isSticky());
1093 $bookmarkService->set($link);
4154c25b
A
1094 header('Location: '.index_url($_SERVER));
1095 exit;
1096 }
1097
cd5327be 1098 if ($targetPage == Router::$PAGE_EXPORT) {
cf92b4dd 1099 // Export bookmarks as a Netscape Bookmarks file
bb4a23aa 1100
cd5327be 1101 if (empty($_GET['selection'])) {
980efd6c 1102 $PAGE->assign('pagetitle', t('Export') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
1103 $PAGE->renderPage('export');
1104 exit;
1105 }
45034273 1106
cd5327be
V
1107 // export as bookmarks_(all|private|public)_YYYYmmdd_HHMMSS.html
1108 $selection = $_GET['selection'];
bb4a23aa
V
1109 if (isset($_GET['prepend_note_url'])) {
1110 $prependNoteUrl = $_GET['prepend_note_url'];
1111 } else {
1112 $prependNoteUrl = false;
1113 }
1114
cd5327be 1115 try {
a39acb25 1116 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
e26e2060 1117 $formatter = $factory->getFormatter('raw');
cd5327be
V
1118 $PAGE->assign(
1119 'links',
bb4a23aa 1120 NetscapeBookmarkUtils::filterAndFormat(
cf92b4dd
A
1121 $bookmarkService,
1122 $formatter,
bb4a23aa
V
1123 $selection,
1124 $prependNoteUrl,
1125 index_url($_SERVER)
1126 )
cd5327be
V
1127 );
1128 } catch (Exception $exc) {
1129 header('Content-Type: text/plain; charset=utf-8');
1130 echo $exc->getMessage();
1131 exit;
45034273 1132 }
cd5327be
V
1133 $now = new DateTime();
1134 header('Content-Type: text/html; charset=utf-8');
1135 header(
1136 'Content-disposition: attachment; filename=bookmarks_'
cf92b4dd 1137 .$selection.'_'.$now->format(Bookmark::LINK_DATE_FORMAT).'.html'
cd5327be
V
1138 );
1139 $PAGE->assign('date', $now->format(DateTime::RFC822));
1140 $PAGE->assign('eol', PHP_EOL);
1141 $PAGE->assign('selection', $selection);
1142 $PAGE->renderPage('export.bookmarks');
1143 exit;
45034273
SS
1144 }
1145
a973afea
V
1146 if ($targetPage == Router::$PAGE_IMPORT) {
1147 // Upload a Netscape bookmark dump to import its contents
1148
1149 if (! isset($_POST['token']) || ! isset($_FILES['filetoupload'])) {
1150 // Show import dialog
6a19124a
A
1151 $PAGE->assign(
1152 'maxfilesize',
1153 get_max_upload_size(
1154 ini_get('post_max_size'),
1155 ini_get('upload_max_filesize'),
1156 false
1157 )
1158 );
1159 $PAGE->assign(
1160 'maxfilesizeHuman',
1161 get_max_upload_size(
1162 ini_get('post_max_size'),
1163 ini_get('upload_max_filesize'),
1164 true
1165 )
1166 );
980efd6c 1167 $PAGE->assign('pagetitle', t('Import') .' - '. $conf->get('general.title', 'Shaarli'));
a973afea 1168 $PAGE->renderPage('import');
45034273
SS
1169 exit;
1170 }
45034273 1171
a973afea
V
1172 // Import bookmarks from an uploaded file
1173 if (isset($_FILES['filetoupload']['size']) && $_FILES['filetoupload']['size'] == 0) {
1174 // The file is too big or some form field may be missing.
12266213
A
1175 $msg = sprintf(
1176 t(
1177 'The file you are trying to upload is probably bigger than what this webserver can accept'
1178 .' (%s). Please upload in smaller chunks.'
1179 ),
1180 get_max_upload_size(ini_get('post_max_size'), ini_get('upload_max_filesize'))
1181 );
bee33239 1182 echo '<script>alert("'. $msg .'");document.location=\'./?do='.Router::$PAGE_IMPORT .'\';</script>';
a973afea
V
1183 exit;
1184 }
ebd650c0 1185 if (! $sessionManager->checkToken($_POST['token'])) {
a973afea
V
1186 die('Wrong token.');
1187 }
1188 $status = NetscapeBookmarkUtils::import(
1189 $_POST,
1190 $_FILES,
cf92b4dd 1191 $bookmarkService,
4306b184
A
1192 $conf,
1193 $history
a973afea 1194 );
bee33239 1195 echo '<script>alert("'.$status.'");document.location=\'./?do='
a973afea 1196 .Router::$PAGE_IMPORT .'\';</script>';
45034273
SS
1197 exit;
1198 }
1199
dea0ba28
A
1200 // Plugin administration page
1201 if ($targetPage == Router::$PAGE_PLUGINSADMIN) {
1202 $pluginMeta = $pluginManager->getPluginsMeta();
1203
1204 // Split plugins into 2 arrays: ordered enabled plugins and disabled.
93bf0918
V
1205 $enabledPlugins = array_filter($pluginMeta, function ($v) {
1206 return $v['order'] !== false;
1207 });
dea0ba28 1208 // Load parameters.
684e662a 1209 $enabledPlugins = load_plugin_parameter_values($enabledPlugins, $conf->get('plugins', array()));
dea0ba28
A
1210 uasort(
1211 $enabledPlugins,
93bf0918
V
1212 function ($a, $b) {
1213 return $a['order'] - $b['order'];
1214 }
dea0ba28 1215 );
93bf0918
V
1216 $disabledPlugins = array_filter($pluginMeta, function ($v) {
1217 return $v['order'] === false;
1218 });
dea0ba28
A
1219
1220 $PAGE->assign('enabledPlugins', $enabledPlugins);
1221 $PAGE->assign('disabledPlugins', $disabledPlugins);
980efd6c 1222 $PAGE->assign('pagetitle', t('Plugin administration') .' - '. $conf->get('general.title', 'Shaarli'));
dea0ba28
A
1223 $PAGE->renderPage('pluginsadmin');
1224 exit;
1225 }
1226
1227 // Plugin administration form action
1228 if ($targetPage == Router::$PAGE_SAVE_PLUGINSADMIN) {
1229 try {
1230 if (isset($_POST['parameters_form'])) {
a5a0c039 1231 $pluginManager->executeHooks('save_plugin_parameters', $_POST);
dea0ba28
A
1232 unset($_POST['parameters_form']);
1233 foreach ($_POST as $param => $value) {
684e662a 1234 $conf->set('plugins.'. $param, escape($value));
dea0ba28 1235 }
93bf0918 1236 } else {
da10377b 1237 $conf->set('general.enabled_plugins', save_plugin_config($_POST));
dea0ba28 1238 }
63ea23c2 1239 $conf->write($loginManager->isLoggedIn());
b86aeccf 1240 $history->updateSettings();
93bf0918 1241 } catch (Exception $e) {
dea0ba28
A
1242 error_log(
1243 'ERROR while saving plugin configuration:.' . PHP_EOL .
1244 $e->getMessage()
1245 );
1246
1247 // TODO: do not handle exceptions/errors in JS.
9d9f6d75
V
1248 echo '<script>alert("'
1249 . $e->getMessage()
bee33239 1250 .'");document.location=\'./?do='
9d9f6d75
V
1251 . Router::$PAGE_PLUGINSADMIN
1252 .'\';</script>';
dea0ba28
A
1253 exit;
1254 }
bee33239 1255 header('Location: ./?do='. Router::$PAGE_PLUGINSADMIN);
dea0ba28
A
1256 exit;
1257 }
1258
986a5210
A
1259 // Get a fresh token
1260 if ($targetPage == Router::$GET_TOKEN) {
1261 header('Content-Type:text/plain');
cf92b4dd 1262 echo $sessionManager->generateToken();
986a5210
A
1263 exit;
1264 }
1265
28f26524
A
1266 // -------- Thumbnails Update
1267 if ($targetPage == Router::$PAGE_THUMBS_UPDATE) {
1268 $ids = [];
cf92b4dd 1269 foreach ($bookmarkService->search() as $bookmark) {
28f26524 1270 // A note or not HTTP(S)
cf92b4dd 1271 if ($bookmark->isNote() || ! startsWith(strtolower($bookmark->getUrl()), 'http')) {
28f26524
A
1272 continue;
1273 }
cf92b4dd 1274 $ids[] = $bookmark->getId();
28f26524
A
1275 }
1276 $PAGE->assign('ids', $ids);
7b4fea0e 1277 $PAGE->assign('pagetitle', t('Thumbnails update') .' - '. $conf->get('general.title', 'Shaarli'));
28f26524
A
1278 $PAGE->renderPage('thumbnails');
1279 exit;
1280 }
1281
1282 // -------- Single Thumbnail Update
1283 if ($targetPage == Router::$AJAX_THUMB_UPDATE) {
1284 if (! isset($_POST['id']) || ! ctype_digit($_POST['id'])) {
1285 http_response_code(400);
1286 exit;
1287 }
1288 $id = (int) $_POST['id'];
cf92b4dd 1289 if (! $bookmarkService->exists($id)) {
28f26524
A
1290 http_response_code(404);
1291 exit;
1292 }
1293 $thumbnailer = new Thumbnailer($conf);
cf92b4dd
A
1294 $bookmark = $bookmarkService->get($id);
1295 $bookmark->setThumbnail($thumbnailer->get($bookmark->getUrl()));
1296 $bookmarkService->set($bookmark);
28f26524 1297
a39acb25 1298 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
cf92b4dd 1299 echo json_encode($factory->getFormatter('raw')->format($bookmark));
28f26524
A
1300 exit;
1301 }
1302
cf92b4dd
A
1303 // -------- Otherwise, simply display search form and bookmarks:
1304 showLinkList($PAGE, $bookmarkService, $conf, $pluginManager, $loginManager);
45034273
SS
1305 exit;
1306}
1307
528a6f8a 1308/**
cf92b4dd 1309 * Template for the list of bookmarks (<div id="linklist">)
528a6f8a
A
1310 * This function fills all the necessary fields in the $PAGE for the template 'linklist.html'
1311 *
cf92b4dd
A
1312 * @param pageBuilder $PAGE pageBuilder instance.
1313 * @param BookmarkServiceInterface $linkDb LinkDB instance.
1314 * @param ConfigManager $conf Configuration Manager instance.
1315 * @param PluginManager $pluginManager Plugin Manager instance.
1316 * @param LoginManager $loginManager LoginManager instance
528a6f8a 1317 */
cf92b4dd 1318function buildLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager)
45034273 1319{
a39acb25 1320 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
cf92b4dd
A
1321 $formatter = $factory->getFormatter();
1322
528a6f8a 1323 // Used in templates
7d86f40b
A
1324 if (isset($_GET['searchtags'])) {
1325 if (! empty($_GET['searchtags'])) {
1326 $searchtags = escape(normalize_spaces($_GET['searchtags']));
1327 } else {
1328 $searchtags = false;
1329 }
1330 } else {
1331 $searchtags = '';
1332 }
b3051a6a 1333 $searchterm = !empty($_GET['searchterm']) ? escape(normalize_spaces($_GET['searchterm'])) : '';
822bffce 1334
528a6f8a
A
1335 // Smallhash filter
1336 if (! empty($_SERVER['QUERY_STRING'])
1337 && preg_match('/^[a-zA-Z0-9-_@]{6}($|&|#)/', $_SERVER['QUERY_STRING'])) {
1338 try {
cf92b4dd
A
1339 $linksToDisplay = $linkDb->findByHash($_SERVER['QUERY_STRING']);
1340 } catch (BookmarkNotFoundException $e) {
528a6f8a 1341 $PAGE->render404($e->getMessage());
45034273
SS
1342 exit;
1343 }
528a6f8a 1344 } else {
cf92b4dd 1345 // Filter bookmarks according search parameters.
4869d535 1346 $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : null;
7d86f40b
A
1347 $request = [
1348 'searchtags' => $searchtags,
1349 'searchterm' => $searchterm,
1350 ];
cf92b4dd 1351 $linksToDisplay = $linkDb->search($request, $visibility, false, !empty($_SESSION['untaggedonly']));
45034273
SS
1352 }
1353
1354 // ---- Handle paging.
822bffce
A
1355 $keys = array();
1356 foreach ($linksToDisplay as $key => $value) {
1357 $keys[] = $key;
1358 }
45034273 1359
45034273 1360 // Select articles according to paging.
822bffce
A
1361 $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']);
1362 $pagecount = $pagecount == 0 ? 1 : $pagecount;
1363 $page= empty($_GET['page']) ? 1 : intval($_GET['page']);
1364 $page = $page < 1 ? 1 : $page;
1365 $page = $page > $pagecount ? $pagecount : $page;
1366 // Start index.
1367 $i = ($page-1) * $_SESSION['LINKS_PER_PAGE'];
1368 $end = $i + $_SESSION['LINKS_PER_PAGE'];
1b93137e 1369
b302b3c5
A
1370 $thumbnailsEnabled = $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE;
1371 if ($thumbnailsEnabled) {
1b93137e
A
1372 $thumbnailer = new Thumbnailer($conf);
1373 }
1374
822bffce 1375 $linkDisp = array();
93bf0918 1376 while ($i<$end && $i<count($keys)) {
cf92b4dd 1377 $link = $formatter->format($linksToDisplay[$keys[$i]]);
1b93137e 1378
b5c368b8 1379 // Logged in, thumbnails enabled, not a note,
1b93137e 1380 // and (never retrieved yet or no valid cache file)
cf92b4dd
A
1381 if ($loginManager->isLoggedIn()
1382 && $thumbnailsEnabled
1383 && !$linksToDisplay[$keys[$i]]->isNote()
1384 && $linksToDisplay[$keys[$i]]->getThumbnail() !== false
1385 && ! is_file($linksToDisplay[$keys[$i]]->getThumbnail())
1b93137e 1386 ) {
cf92b4dd
A
1387 $linksToDisplay[$keys[$i]]->setThumbnail($thumbnailer->get($link['url']));
1388 $linkDb->set($linksToDisplay[$keys[$i]], false);
1b93137e 1389 $updateDB = true;
cf92b4dd 1390 $link['thumbnail'] = $linksToDisplay[$keys[$i]]->getThumbnail();
1b93137e
A
1391 }
1392
822bffce 1393 // Check for both signs of a note: starting with ? and 7 chars long.
cf92b4dd
A
1394// if ($link['url'][0] === '?' && strlen($link['url']) === 7) {
1395// $link['url'] = index_url($_SERVER) . $link['url'];
1396// }
d33c5d4c 1397
45034273
SS
1398 $linkDisp[$keys[$i]] = $link;
1399 $i++;
1400 }
bb8f712d 1401
1b93137e
A
1402 // If we retrieved new thumbnails, we update the database.
1403 if (!empty($updateDB)) {
cf92b4dd 1404 $linkDb->save();
1b93137e
A
1405 }
1406
45034273 1407 // Compute paging navigation
7d86f40b 1408 $searchtagsUrl = $searchtags === '' ? '' : '&searchtags=' . urlencode($searchtags);
c51fae92 1409 $searchtermUrl = empty($searchterm) ? '' : '&searchterm=' . urlencode($searchterm);
822bffce
A
1410 $previous_page_url = '';
1411 if ($i != count($keys)) {
c51fae92 1412 $previous_page_url = '?page=' . ($page+1) . $searchtermUrl . $searchtagsUrl;
822bffce
A
1413 }
1414 $next_page_url='';
1415 if ($page>1) {
c51fae92 1416 $next_page_url = '?page=' . ($page-1) . $searchtermUrl . $searchtagsUrl;
822bffce 1417 }
45034273 1418
45034273 1419 // Fill all template fields.
6fc14d53 1420 $data = array(
6fc14d53
A
1421 'previous_page_url' => $previous_page_url,
1422 'next_page_url' => $next_page_url,
1423 'page_current' => $page,
1424 'page_max' => $pagecount,
1425 'result_count' => count($linksToDisplay),
c51fae92
A
1426 'search_term' => $searchterm,
1427 'search_tags' => $searchtags,
9d4736a3 1428 'visibility' => ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : '',
6fc14d53 1429 'links' => $linkDisp,
6fc14d53 1430 );
97ef33bb
A
1431
1432 // If there is only a single link, we change on-the-fly the title of the page.
1433 if (count($linksToDisplay) == 1) {
cf92b4dd 1434 $data['pagetitle'] = $linksToDisplay[$keys[0]]->getTitle() .' - '. $conf->get('general.title');
980efd6c
A
1435 } elseif (! empty($searchterm) || ! empty($searchtags)) {
1436 $data['pagetitle'] = t('Search: ');
1437 $data['pagetitle'] .= ! empty($searchterm) ? $searchterm .' ' : '';
1438 $bracketWrap = function ($tag) {
1439 return '['. $tag .']';
1440 };
1441 $data['pagetitle'] .= ! empty($searchtags)
1442 ? implode(' ', array_map($bracketWrap, preg_split('/\s+/', $searchtags))).' '
1443 : '';
1444 $data['pagetitle'] .= '- '. $conf->get('general.title');
18cca483 1445 }
6fc14d53 1446
63ea23c2 1447 $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => $loginManager->isLoggedIn()));
6fc14d53
A
1448
1449 foreach ($data as $key => $value) {
1450 $PAGE->assign($key, $value);
1451 }
1452
45034273
SS
1453 return;
1454}
1455
278d9ee2
A
1456/**
1457 * Installation
1458 * This function should NEVER be called if the file data/config.php exists.
1459 *
ebd650c0
V
1460 * @param ConfigManager $conf Configuration Manager instance.
1461 * @param SessionManager $sessionManager SessionManager instance
cad4251a 1462 * @param LoginManager $loginManager LoginManager instance
278d9ee2 1463 */
93bf0918
V
1464function install($conf, $sessionManager, $loginManager)
1465{
45034273 1466 // On free.fr host, make sure the /sessions directory exists, otherwise login will not work.
93bf0918
V
1467 if (endsWith($_SERVER['HTTP_HOST'], '.free.fr') && !is_dir($_SERVER['DOCUMENT_ROOT'].'/sessions')) {
1468 mkdir($_SERVER['DOCUMENT_ROOT'].'/sessions', 0705);
1469 }
45034273 1470
f37664a2
SS
1471
1472 // This part makes sure sessions works correctly.
1473 // (Because on some hosts, session.save_path may not be set correctly,
1474 // or we may not have write access to it.)
9d9f6d75
V
1475 if (isset($_GET['test_session'])
1476 && ( !isset($_SESSION) || !isset($_SESSION['session_tested']) || $_SESSION['session_tested']!='Working')) {
12266213
A
1477 // Step 2: Check if data in session is correct.
1478 $msg = t(
1479 '<pre>Sessions do not seem to work correctly on your server.<br>'.
1480 'Make sure the variable "session.save_path" is set correctly in your PHP config, '.
1481 'and that you have write access to it.<br>'.
1482 'It currently points to %s.<br>'.
1483 'On some browsers, accessing your server via a hostname like \'localhost\' '.
1484 'or any custom hostname without a dot causes cookie storage to fail. '.
1485 'We recommend accessing your server via it\'s IP address or Fully Qualified Domain Name.<br>'
1486 );
1487 $msg = sprintf($msg, session_save_path());
1488 echo $msg;
1489 echo '<br><a href="?">'. t('Click to try again.') .'</a></pre>';
f37664a2
SS
1490 die;
1491 }
93bf0918
V
1492 if (!isset($_SESSION['session_tested'])) {
1493 // Step 1 : Try to store data in session and reload page.
f37664a2 1494 $_SESSION['session_tested'] = 'Working'; // Try to set a variable in session.
482d67bd 1495 header('Location: '.index_url($_SERVER).'?test_session'); // Redirect to check stored data.
f37664a2 1496 }
93bf0918
V
1497 if (isset($_GET['test_session'])) {
1498 // Step 3: Sessions are OK. Remove test parameter from URL.
482d67bd 1499 header('Location: '.index_url($_SERVER));
f37664a2
SS
1500 }
1501
1502
93bf0918 1503 if (!empty($_POST['setlogin']) && !empty($_POST['setpassword'])) {
45034273 1504 $tz = 'UTC';
12ff86c9
A
1505 if (!empty($_POST['continent']) && !empty($_POST['city'])
1506 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1507 ) {
1508 $tz = $_POST['continent'].'/'.$_POST['city'];
d1e2f8e5 1509 }
da10377b 1510 $conf->set('general.timezone', $tz);
684e662a 1511 $login = $_POST['setlogin'];
da10377b 1512 $conf->set('credentials.login', $login);
684e662a 1513 $salt = sha1(uniqid('', true) .'_'. mt_rand());
da10377b
A
1514 $conf->set('credentials.salt', $salt);
1515 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $login . $salt));
684e662a 1516 if (!empty($_POST['title'])) {
7f179985 1517 $conf->set('general.title', escape($_POST['title']));
684e662a 1518 } else {
cf92b4dd 1519 $conf->set('general.title', 'Shared bookmarks on '.escape(index_url($_SERVER)));
684e662a 1520 }
f39580c6 1521 $conf->set('translation.language', escape($_POST['language']));
894a3c4b 1522 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
cbfdcff2
A
1523 $conf->set('api.enabled', !empty($_POST['enableApi']));
1524 $conf->set(
1525 'api.secret',
1526 generate_api_secret(
e3a430ba
A
1527 $conf->get('credentials.login'),
1528 $conf->get('credentials.salt')
cbfdcff2
A
1529 )
1530 );
dd484b90 1531 try {
684e662a 1532 // Everything is ok, let's create config file.
63ea23c2 1533 $conf->write($loginManager->isLoggedIn());
93bf0918 1534 } catch (Exception $e) {
dd484b90 1535 error_log(
93bf0918 1536 'ERROR while writing config file after installation.' . PHP_EOL .
dd484b90 1537 $e->getMessage()
93bf0918 1538 );
dd484b90
A
1539
1540 // TODO: do not handle exceptions/errors in JS.
1541 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?\';</script>';
1542 exit;
1543 }
cf92b4dd
A
1544
1545 $history = new History($conf->get('resource.history'));
1546 $bookmarkService = new BookmarkFileService($conf, $history, true);
1547 if ($bookmarkService->count() === 0) {
1548 $bookmarkService->initialize();
1549 }
1550
9d9f6d75
V
1551 echo '<script>alert('
1552 .'"Shaarli is now configured. '
cf92b4dd 1553 .'Please enter your login/password and start shaaring your bookmarks!"'
9e4cc28e 1554 .');document.location=\'./login\';</script>';
45034273
SS
1555 exit;
1556 }
1557
28f26524 1558 $PAGE = new PageBuilder($conf, $_SESSION, null, $sessionManager->generateToken());
ae3aa968
A
1559 list($continents, $cities) = generateTimeZoneData(timezone_identifiers_list(), date_default_timezone_get());
1560 $PAGE->assign('continents', $continents);
1561 $PAGE->assign('cities', $cities);
f39580c6 1562 $PAGE->assign('languages', Languages::getAvailableLanguages());
45034273
SS
1563 $PAGE->renderPage('install');
1564 exit;
1565}
1566
684e662a 1567if (!isset($_SESSION['LINKS_PER_PAGE'])) {
da10377b 1568 $_SESSION['LINKS_PER_PAGE'] = $conf->get('general.links_per_page', 20);
684e662a 1569}
18e67967 1570
3b67b222
A
1571try {
1572 $history = new History($conf->get('resource.history'));
93bf0918 1573} catch (Exception $e) {
3b67b222
A
1574 die($e->getMessage());
1575}
1576
cf92b4dd
A
1577$linkDb = new BookmarkFileService($conf, $history, $loginManager->isLoggedIn());
1578
1579if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=dailyrss')) {
c4d5be53 1580 header('Location: ./daily-rss');
cf92b4dd
A
1581 exit;
1582}
18e67967 1583
8e47af2b 1584$containerBuilder = new ContainerBuilder($conf, $sessionManager, $loginManager, WEB_PATH);
6c50a6cc
A
1585$container = $containerBuilder->build();
1586$app = new App($container);
18e67967
A
1587
1588// REST API routes
93bf0918 1589$app->group('/api/v1', function () {
68016e37 1590 $this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo')->setName('getInfo');
20433ea7
A
1591 $this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks')->setName('getLinks');
1592 $this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink')->setName('getLink');
1593 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
1594 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
1595 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
d3f42ca4
A
1596
1597 $this->get('/tags', '\Shaarli\Api\Controllers\Tags:getTags')->setName('getTags');
1598 $this->get('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:getTag')->setName('getTag');
1599 $this->put('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:putTag')->setName('putTag');
1600 $this->delete('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:deleteTag')->setName('deleteTag');
1601
18d2d3ae 1602 $this->get('/history', '\Shaarli\Api\Controllers\HistoryController:getHistory')->setName('getHistory');
465b1c40 1603})->add('\Shaarli\Api\ApiMiddleware');
18e67967 1604
6c50a6cc
A
1605$app->group('', function () {
1606 $this->get('/login', '\Shaarli\Front\Controller\LoginController:index')->setName('login');
b0428aa9 1607 $this->get('/logout', '\Shaarli\Front\Controller\LogoutController:index')->setName('logout');
485b168a 1608 $this->get('/picture-wall', '\Shaarli\Front\Controller\PictureWallController:index')->setName('picwall');
3772298e 1609 $this->get('/tag-cloud', '\Shaarli\Front\Controller\TagCloudController:cloud')->setName('tagcloud');
60ae2412 1610 $this->get('/tag-list', '\Shaarli\Front\Controller\TagCloudController:list')->setName('taglist');
69e29ff6 1611 $this->get('/daily', '\Shaarli\Front\Controller\DailyController:index')->setName('daily');
c4d5be53 1612 $this->get('/daily-rss', '\Shaarli\Front\Controller\DailyController:rss')->setName('dailyrss');
69e29ff6 1613
03340c18 1614 $this->get('/add-tag/{newTag}', '\Shaarli\Front\Controller\TagController:addTag')->setName('add-tag');
6c50a6cc
A
1615})->add('\Shaarli\Front\ShaarliMiddleware');
1616
18e67967 1617$response = $app->run(true);
5d9bc40d 1618
18e67967 1619// Hack to make Slim and Shaarli router work together:
16e3d006
A
1620// If a Slim route isn't found and NOT API call, we call renderPage().
1621if ($response->getStatusCode() == 404 && strpos($_SERVER['REQUEST_URI'], '/api/v1') === false) {
18e67967
A
1622 // We use UTF-8 for proper international characters handling.
1623 header('Content-Type: text/html; charset=utf-8');
44acf706 1624 renderPage($conf, $pluginManager, $linkDb, $history, $sessionManager, $loginManager);
18e67967 1625} else {
5d9bc40d
A
1626 $response = $response
1627 ->withHeader('Access-Control-Allow-Origin', '*')
1628 ->withHeader(
1629 'Access-Control-Allow-Headers',
1630 'X-Requested-With, Content-Type, Accept, Origin, Authorization'
1631 )
1632 ->withHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
18e67967
A
1633 $app->respond($response);
1634}