]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - index.php
Process change visibility action through Slim controller
[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) {
9c75f877 415 header('Location: ./tags/cloud');
bb8f712d 416 exit;
45034273
SS
417 }
418
49cc8e5d 419 // -------- Tag list
93bf0918 420 if ($targetPage == Router::$PAGE_TAGLIST) {
9c75f877 421 header('Location: ./tags/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;
69c474b9 435
9c75f877 436 header('Location: ./feed/'. $feedType .'?'. http_build_query($_GET));
82e36802 437 exit;
e67712ba
A
438 }
439
18e67967 440 // Display opensearch plugin (XML)
8f8113b9 441 if ($targetPage == Router::$PAGE_OPENSEARCH) {
5ec4708c 442 header('Location: ./open-search');
8f8113b9
A
443 exit;
444 }
445
45034273 446 // -------- User clicks on a tag in a link: The tag is added to the list of searched tags (searchtags=...)
93bf0918 447 if (isset($_GET['addtag'])) {
c56a540c 448 header('Location: ./add-tag/'. $_GET['addtag']);
45034273
SS
449 exit;
450 }
451
452 // -------- User clicks on a tag in result count: Remove the tag from the list of searched tags (searchtags=...)
775803a0 453 if (isset($_GET['removetag'])) {
893f5159 454 header('Location: ./remove-tag/'. $_GET['removetag']);
45034273
SS
455 exit;
456 }
457
cf92b4dd 458 // -------- User wants to change the number of bookmarks per page (linksperpage=...)
775803a0 459 if (isset($_GET['linksperpage'])) {
af290059 460 header('Location: ./links-per-page?nb='. $_GET['linksperpage']);
45034273
SS
461 exit;
462 }
bb8f712d 463
cf92b4dd 464 // -------- User wants to see only private bookmarks (toggle)
9d4736a3 465 if (isset($_GET['visibility'])) {
af290059 466 header('Location: ./visibility/'. $_GET['visibility']);
45034273
SS
467 exit;
468 }
469
cf92b4dd 470 // -------- User wants to see only untagged bookmarks (toggle)
f210d94f 471 if (isset($_GET['untaggedonly'])) {
af290059 472 header('Location: ./untagged-only');
f210d94f
LC
473 exit;
474 }
475
45034273 476 // -------- Handle other actions allowed for non-logged in users:
93bf0918 477 if (!$loginManager->isLoggedIn()) {
ad6c27b7 478 // User tries to post new link but is not logged in:
45034273 479 // Show login screen, then redirect to ?post=...
93bf0918 480 if (isset($_GET['post'])) {
0b04f797 481 header( // Redirect to login page, then back to post link.
72caf4e8 482 'Location: ./login?post='.urlencode($_GET['post']).
0b04f797 483 (!empty($_GET['title'])?'&title='.urlencode($_GET['title']):'').
484 (!empty($_GET['description'])?'&description='.urlencode($_GET['description']):'').
485 (!empty($_GET['tags'])?'&tags='.urlencode($_GET['tags']):'').
486 (!empty($_GET['source'])?'&source='.urlencode($_GET['source']):'')
487 );
45034273
SS
488 exit;
489 }
aedc912d 490
cf92b4dd 491 showLinkList($PAGE, $bookmarkService, $conf, $pluginManager, $loginManager);
5fbabbb9 492 if (isset($_GET['edit_link'])) {
72caf4e8 493 header('Location: ./login?edit_link='. escape($_GET['edit_link']));
5fbabbb9
A
494 exit;
495 }
496
ad6c27b7 497 exit; // Never remove this one! All operations below are reserved for logged in user.
45034273
SS
498 }
499
500 // -------- All other functions are reserved for the registered user:
501
7b8a6f28
A
502 // TODO: Remove legacy admin route redirections. We'll only keep public URL.
503
45034273 504 // -------- Display the Tools menu if requested (import/export/bookmarklet...)
93bf0918 505 if ($targetPage == Router::$PAGE_TOOLS) {
9c75f877 506 header('Location: ./admin/tools');
45034273
SS
507 exit;
508 }
509
510 // -------- User wants to change his/her password.
93bf0918 511 if ($targetPage == Router::$PAGE_CHANGEPASSWORD) {
9c75f877 512 header('Location: ./admin/password');
ef00f9d2 513 exit;
45034273
SS
514 }
515
516 // -------- User wants to change configuration
93bf0918 517 if ($targetPage == Router::$PAGE_CONFIGURE) {
9c75f877 518 header('Location: ./admin/configure');
66063ed1 519 exit;
45034273
SS
520 }
521
522 // -------- User wants to rename a tag or delete it
93bf0918 523 if ($targetPage == Router::$PAGE_CHANGETAG) {
9c75f877 524 header('Location: ./admin/tags');
d99aef53 525 exit;
45034273
SS
526 }
527
ad6c27b7 528 // -------- User wants to add a link without using the bookmarklet: Show form.
93bf0918 529 if ($targetPage == Router::$PAGE_ADDLINK) {
9c75f877 530 header('Location: ./admin/shaare');
45034273
SS
531 exit;
532 }
533
534 // -------- User clicked the "Save" button when editing a link: Save link to database.
93bf0918 535 if (isset($_POST['save_edit'])) {
c22fa57a
A
536 // This route is no longer supported in legacy mode
537 header('Location: ./');
45034273
SS
538 exit;
539 }
540
ad6c27b7 541 // -------- User clicked the "Delete" button when editing a link: Delete link from database.
93bf0918 542 if ($targetPage == Router::$PAGE_DELETELINK) {
9c75f877
A
543 $ids = $_GET['lf_linkdate'] ?? '';
544 $token = $_GET['token'] ?? '';
95e5add4 545
9c75f877 546 header('Location: ./admin/shaare/delete?id=' . $ids . '&token=' . $token);
45034273
SS
547 exit;
548 }
549
8d03f705
A
550 // -------- User clicked either "Set public" or "Set private" bulk operation
551 if ($targetPage == Router::$PAGE_CHANGE_VISIBILITY) {
7b8a6f28 552 header('Location: ./admin/shaare/visibility?id=' . $_GET['token']);
45034273
SS
553 exit;
554 }
555
556 // -------- User clicked the "EDIT" button on a link: Display link edit form.
93bf0918 557 if (isset($_GET['edit_link'])) {
01878a75 558 $id = (int) escape($_GET['edit_link']);
9c75f877 559 header('Location: ./admin/shaare/' . $id);
45034273
SS
560 exit;
561 }
562
563 // -------- User want to post a new link: Display link edit form.
d9d776af 564 if (isset($_GET['post'])) {
9c75f877 565 header('Location: ./admin/shaare?' . http_build_query($_GET));
45034273
SS
566 exit;
567 }
568
4154c25b 569 if ($targetPage == Router::$PAGE_PINLINK) {
cf92b4dd 570 if (! isset($_GET['id']) || !$bookmarkService->exists($_GET['id'])) {
4154c25b
A
571 // FIXME! Use a proper error system.
572 $msg = t('Invalid link ID provided');
573 echo '<script>alert("'. $msg .'");document.location=\''. index_url($_SERVER) .'\';</script>';
574 exit;
575 }
576 if (! $sessionManager->checkToken($_GET['token'])) {
577 die('Wrong token.');
578 }
579
cf92b4dd
A
580 $link = $bookmarkService->get($_GET['id']);
581 $link->setSticky(! $link->isSticky());
582 $bookmarkService->set($link);
4154c25b
A
583 header('Location: '.index_url($_SERVER));
584 exit;
585 }
586
cd5327be 587 if ($targetPage == Router::$PAGE_EXPORT) {
cf92b4dd 588 // Export bookmarks as a Netscape Bookmarks file
bb4a23aa 589
cd5327be 590 if (empty($_GET['selection'])) {
980efd6c 591 $PAGE->assign('pagetitle', t('Export') .' - '. $conf->get('general.title', 'Shaarli'));
45034273
SS
592 $PAGE->renderPage('export');
593 exit;
594 }
45034273 595
cd5327be
V
596 // export as bookmarks_(all|private|public)_YYYYmmdd_HHMMSS.html
597 $selection = $_GET['selection'];
bb4a23aa
V
598 if (isset($_GET['prepend_note_url'])) {
599 $prependNoteUrl = $_GET['prepend_note_url'];
600 } else {
601 $prependNoteUrl = false;
602 }
603
cd5327be 604 try {
a39acb25 605 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
e26e2060 606 $formatter = $factory->getFormatter('raw');
cd5327be
V
607 $PAGE->assign(
608 'links',
bb4a23aa 609 NetscapeBookmarkUtils::filterAndFormat(
cf92b4dd
A
610 $bookmarkService,
611 $formatter,
bb4a23aa
V
612 $selection,
613 $prependNoteUrl,
614 index_url($_SERVER)
615 )
cd5327be
V
616 );
617 } catch (Exception $exc) {
618 header('Content-Type: text/plain; charset=utf-8');
619 echo $exc->getMessage();
620 exit;
45034273 621 }
cd5327be
V
622 $now = new DateTime();
623 header('Content-Type: text/html; charset=utf-8');
624 header(
625 'Content-disposition: attachment; filename=bookmarks_'
cf92b4dd 626 .$selection.'_'.$now->format(Bookmark::LINK_DATE_FORMAT).'.html'
cd5327be
V
627 );
628 $PAGE->assign('date', $now->format(DateTime::RFC822));
629 $PAGE->assign('eol', PHP_EOL);
630 $PAGE->assign('selection', $selection);
631 $PAGE->renderPage('export.bookmarks');
632 exit;
45034273
SS
633 }
634
a973afea
V
635 if ($targetPage == Router::$PAGE_IMPORT) {
636 // Upload a Netscape bookmark dump to import its contents
637
638 if (! isset($_POST['token']) || ! isset($_FILES['filetoupload'])) {
639 // Show import dialog
6a19124a
A
640 $PAGE->assign(
641 'maxfilesize',
642 get_max_upload_size(
643 ini_get('post_max_size'),
644 ini_get('upload_max_filesize'),
645 false
646 )
647 );
648 $PAGE->assign(
649 'maxfilesizeHuman',
650 get_max_upload_size(
651 ini_get('post_max_size'),
652 ini_get('upload_max_filesize'),
653 true
654 )
655 );
980efd6c 656 $PAGE->assign('pagetitle', t('Import') .' - '. $conf->get('general.title', 'Shaarli'));
a973afea 657 $PAGE->renderPage('import');
45034273
SS
658 exit;
659 }
45034273 660
a973afea
V
661 // Import bookmarks from an uploaded file
662 if (isset($_FILES['filetoupload']['size']) && $_FILES['filetoupload']['size'] == 0) {
663 // The file is too big or some form field may be missing.
12266213
A
664 $msg = sprintf(
665 t(
666 'The file you are trying to upload is probably bigger than what this webserver can accept'
667 .' (%s). Please upload in smaller chunks.'
668 ),
669 get_max_upload_size(ini_get('post_max_size'), ini_get('upload_max_filesize'))
670 );
bee33239 671 echo '<script>alert("'. $msg .'");document.location=\'./?do='.Router::$PAGE_IMPORT .'\';</script>';
a973afea
V
672 exit;
673 }
ebd650c0 674 if (! $sessionManager->checkToken($_POST['token'])) {
a973afea
V
675 die('Wrong token.');
676 }
677 $status = NetscapeBookmarkUtils::import(
678 $_POST,
679 $_FILES,
cf92b4dd 680 $bookmarkService,
4306b184
A
681 $conf,
682 $history
a973afea 683 );
bee33239 684 echo '<script>alert("'.$status.'");document.location=\'./?do='
a973afea 685 .Router::$PAGE_IMPORT .'\';</script>';
45034273
SS
686 exit;
687 }
688
dea0ba28
A
689 // Plugin administration page
690 if ($targetPage == Router::$PAGE_PLUGINSADMIN) {
691 $pluginMeta = $pluginManager->getPluginsMeta();
692
693 // Split plugins into 2 arrays: ordered enabled plugins and disabled.
93bf0918
V
694 $enabledPlugins = array_filter($pluginMeta, function ($v) {
695 return $v['order'] !== false;
696 });
dea0ba28 697 // Load parameters.
684e662a 698 $enabledPlugins = load_plugin_parameter_values($enabledPlugins, $conf->get('plugins', array()));
dea0ba28
A
699 uasort(
700 $enabledPlugins,
93bf0918
V
701 function ($a, $b) {
702 return $a['order'] - $b['order'];
703 }
dea0ba28 704 );
93bf0918
V
705 $disabledPlugins = array_filter($pluginMeta, function ($v) {
706 return $v['order'] === false;
707 });
dea0ba28
A
708
709 $PAGE->assign('enabledPlugins', $enabledPlugins);
710 $PAGE->assign('disabledPlugins', $disabledPlugins);
980efd6c 711 $PAGE->assign('pagetitle', t('Plugin administration') .' - '. $conf->get('general.title', 'Shaarli'));
dea0ba28
A
712 $PAGE->renderPage('pluginsadmin');
713 exit;
714 }
715
716 // Plugin administration form action
717 if ($targetPage == Router::$PAGE_SAVE_PLUGINSADMIN) {
718 try {
719 if (isset($_POST['parameters_form'])) {
a5a0c039 720 $pluginManager->executeHooks('save_plugin_parameters', $_POST);
dea0ba28
A
721 unset($_POST['parameters_form']);
722 foreach ($_POST as $param => $value) {
684e662a 723 $conf->set('plugins.'. $param, escape($value));
dea0ba28 724 }
93bf0918 725 } else {
da10377b 726 $conf->set('general.enabled_plugins', save_plugin_config($_POST));
dea0ba28 727 }
63ea23c2 728 $conf->write($loginManager->isLoggedIn());
b86aeccf 729 $history->updateSettings();
93bf0918 730 } catch (Exception $e) {
dea0ba28
A
731 error_log(
732 'ERROR while saving plugin configuration:.' . PHP_EOL .
733 $e->getMessage()
734 );
735
736 // TODO: do not handle exceptions/errors in JS.
9d9f6d75
V
737 echo '<script>alert("'
738 . $e->getMessage()
bee33239 739 .'");document.location=\'./?do='
9d9f6d75
V
740 . Router::$PAGE_PLUGINSADMIN
741 .'\';</script>';
dea0ba28
A
742 exit;
743 }
bee33239 744 header('Location: ./?do='. Router::$PAGE_PLUGINSADMIN);
dea0ba28
A
745 exit;
746 }
747
986a5210
A
748 // Get a fresh token
749 if ($targetPage == Router::$GET_TOKEN) {
750 header('Content-Type:text/plain');
cf92b4dd 751 echo $sessionManager->generateToken();
986a5210
A
752 exit;
753 }
754
28f26524
A
755 // -------- Thumbnails Update
756 if ($targetPage == Router::$PAGE_THUMBS_UPDATE) {
757 $ids = [];
cf92b4dd 758 foreach ($bookmarkService->search() as $bookmark) {
28f26524 759 // A note or not HTTP(S)
cf92b4dd 760 if ($bookmark->isNote() || ! startsWith(strtolower($bookmark->getUrl()), 'http')) {
28f26524
A
761 continue;
762 }
cf92b4dd 763 $ids[] = $bookmark->getId();
28f26524
A
764 }
765 $PAGE->assign('ids', $ids);
7b4fea0e 766 $PAGE->assign('pagetitle', t('Thumbnails update') .' - '. $conf->get('general.title', 'Shaarli'));
28f26524
A
767 $PAGE->renderPage('thumbnails');
768 exit;
769 }
770
771 // -------- Single Thumbnail Update
772 if ($targetPage == Router::$AJAX_THUMB_UPDATE) {
773 if (! isset($_POST['id']) || ! ctype_digit($_POST['id'])) {
774 http_response_code(400);
775 exit;
776 }
777 $id = (int) $_POST['id'];
cf92b4dd 778 if (! $bookmarkService->exists($id)) {
28f26524
A
779 http_response_code(404);
780 exit;
781 }
782 $thumbnailer = new Thumbnailer($conf);
cf92b4dd
A
783 $bookmark = $bookmarkService->get($id);
784 $bookmark->setThumbnail($thumbnailer->get($bookmark->getUrl()));
785 $bookmarkService->set($bookmark);
28f26524 786
a39acb25 787 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
cf92b4dd 788 echo json_encode($factory->getFormatter('raw')->format($bookmark));
28f26524
A
789 exit;
790 }
791
cf92b4dd
A
792 // -------- Otherwise, simply display search form and bookmarks:
793 showLinkList($PAGE, $bookmarkService, $conf, $pluginManager, $loginManager);
45034273
SS
794 exit;
795}
796
528a6f8a 797/**
cf92b4dd 798 * Template for the list of bookmarks (<div id="linklist">)
528a6f8a
A
799 * This function fills all the necessary fields in the $PAGE for the template 'linklist.html'
800 *
cf92b4dd
A
801 * @param pageBuilder $PAGE pageBuilder instance.
802 * @param BookmarkServiceInterface $linkDb LinkDB instance.
803 * @param ConfigManager $conf Configuration Manager instance.
804 * @param PluginManager $pluginManager Plugin Manager instance.
805 * @param LoginManager $loginManager LoginManager instance
528a6f8a 806 */
cf92b4dd 807function buildLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager)
45034273 808{
a39acb25 809 $factory = new FormatterFactory($conf, $loginManager->isLoggedIn());
cf92b4dd
A
810 $formatter = $factory->getFormatter();
811
528a6f8a 812 // Used in templates
7d86f40b
A
813 if (isset($_GET['searchtags'])) {
814 if (! empty($_GET['searchtags'])) {
815 $searchtags = escape(normalize_spaces($_GET['searchtags']));
816 } else {
817 $searchtags = false;
818 }
819 } else {
820 $searchtags = '';
821 }
b3051a6a 822 $searchterm = !empty($_GET['searchterm']) ? escape(normalize_spaces($_GET['searchterm'])) : '';
822bffce 823
528a6f8a
A
824 // Smallhash filter
825 if (! empty($_SERVER['QUERY_STRING'])
826 && preg_match('/^[a-zA-Z0-9-_@]{6}($|&|#)/', $_SERVER['QUERY_STRING'])) {
827 try {
cf92b4dd
A
828 $linksToDisplay = $linkDb->findByHash($_SERVER['QUERY_STRING']);
829 } catch (BookmarkNotFoundException $e) {
528a6f8a 830 $PAGE->render404($e->getMessage());
45034273
SS
831 exit;
832 }
528a6f8a 833 } else {
cf92b4dd 834 // Filter bookmarks according search parameters.
4869d535 835 $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : null;
7d86f40b
A
836 $request = [
837 'searchtags' => $searchtags,
838 'searchterm' => $searchterm,
839 ];
cf92b4dd 840 $linksToDisplay = $linkDb->search($request, $visibility, false, !empty($_SESSION['untaggedonly']));
45034273
SS
841 }
842
843 // ---- Handle paging.
822bffce
A
844 $keys = array();
845 foreach ($linksToDisplay as $key => $value) {
846 $keys[] = $key;
847 }
45034273 848
45034273 849 // Select articles according to paging.
822bffce
A
850 $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']);
851 $pagecount = $pagecount == 0 ? 1 : $pagecount;
852 $page= empty($_GET['page']) ? 1 : intval($_GET['page']);
853 $page = $page < 1 ? 1 : $page;
854 $page = $page > $pagecount ? $pagecount : $page;
855 // Start index.
856 $i = ($page-1) * $_SESSION['LINKS_PER_PAGE'];
857 $end = $i + $_SESSION['LINKS_PER_PAGE'];
1b93137e 858
b302b3c5
A
859 $thumbnailsEnabled = $conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE;
860 if ($thumbnailsEnabled) {
1b93137e
A
861 $thumbnailer = new Thumbnailer($conf);
862 }
863
822bffce 864 $linkDisp = array();
93bf0918 865 while ($i<$end && $i<count($keys)) {
cf92b4dd 866 $link = $formatter->format($linksToDisplay[$keys[$i]]);
1b93137e 867
b5c368b8 868 // Logged in, thumbnails enabled, not a note,
1b93137e 869 // and (never retrieved yet or no valid cache file)
cf92b4dd
A
870 if ($loginManager->isLoggedIn()
871 && $thumbnailsEnabled
872 && !$linksToDisplay[$keys[$i]]->isNote()
873 && $linksToDisplay[$keys[$i]]->getThumbnail() !== false
874 && ! is_file($linksToDisplay[$keys[$i]]->getThumbnail())
1b93137e 875 ) {
cf92b4dd
A
876 $linksToDisplay[$keys[$i]]->setThumbnail($thumbnailer->get($link['url']));
877 $linkDb->set($linksToDisplay[$keys[$i]], false);
1b93137e 878 $updateDB = true;
cf92b4dd 879 $link['thumbnail'] = $linksToDisplay[$keys[$i]]->getThumbnail();
1b93137e
A
880 }
881
822bffce 882 // Check for both signs of a note: starting with ? and 7 chars long.
cf92b4dd
A
883// if ($link['url'][0] === '?' && strlen($link['url']) === 7) {
884// $link['url'] = index_url($_SERVER) . $link['url'];
885// }
d33c5d4c 886
45034273
SS
887 $linkDisp[$keys[$i]] = $link;
888 $i++;
889 }
bb8f712d 890
1b93137e
A
891 // If we retrieved new thumbnails, we update the database.
892 if (!empty($updateDB)) {
cf92b4dd 893 $linkDb->save();
1b93137e
A
894 }
895
45034273 896 // Compute paging navigation
7d86f40b 897 $searchtagsUrl = $searchtags === '' ? '' : '&searchtags=' . urlencode($searchtags);
c51fae92 898 $searchtermUrl = empty($searchterm) ? '' : '&searchterm=' . urlencode($searchterm);
822bffce
A
899 $previous_page_url = '';
900 if ($i != count($keys)) {
c51fae92 901 $previous_page_url = '?page=' . ($page+1) . $searchtermUrl . $searchtagsUrl;
822bffce
A
902 }
903 $next_page_url='';
904 if ($page>1) {
c51fae92 905 $next_page_url = '?page=' . ($page-1) . $searchtermUrl . $searchtagsUrl;
822bffce 906 }
45034273 907
45034273 908 // Fill all template fields.
6fc14d53 909 $data = array(
6fc14d53
A
910 'previous_page_url' => $previous_page_url,
911 'next_page_url' => $next_page_url,
912 'page_current' => $page,
913 'page_max' => $pagecount,
914 'result_count' => count($linksToDisplay),
c51fae92
A
915 'search_term' => $searchterm,
916 'search_tags' => $searchtags,
9d4736a3 917 'visibility' => ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : '',
6fc14d53 918 'links' => $linkDisp,
6fc14d53 919 );
97ef33bb
A
920
921 // If there is only a single link, we change on-the-fly the title of the page.
922 if (count($linksToDisplay) == 1) {
cf92b4dd 923 $data['pagetitle'] = $linksToDisplay[$keys[0]]->getTitle() .' - '. $conf->get('general.title');
980efd6c
A
924 } elseif (! empty($searchterm) || ! empty($searchtags)) {
925 $data['pagetitle'] = t('Search: ');
926 $data['pagetitle'] .= ! empty($searchterm) ? $searchterm .' ' : '';
927 $bracketWrap = function ($tag) {
928 return '['. $tag .']';
929 };
930 $data['pagetitle'] .= ! empty($searchtags)
931 ? implode(' ', array_map($bracketWrap, preg_split('/\s+/', $searchtags))).' '
932 : '';
933 $data['pagetitle'] .= '- '. $conf->get('general.title');
18cca483 934 }
6fc14d53 935
63ea23c2 936 $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => $loginManager->isLoggedIn()));
6fc14d53
A
937
938 foreach ($data as $key => $value) {
939 $PAGE->assign($key, $value);
940 }
941
45034273
SS
942 return;
943}
944
278d9ee2
A
945/**
946 * Installation
947 * This function should NEVER be called if the file data/config.php exists.
948 *
ebd650c0
V
949 * @param ConfigManager $conf Configuration Manager instance.
950 * @param SessionManager $sessionManager SessionManager instance
cad4251a 951 * @param LoginManager $loginManager LoginManager instance
278d9ee2 952 */
93bf0918
V
953function install($conf, $sessionManager, $loginManager)
954{
45034273 955 // On free.fr host, make sure the /sessions directory exists, otherwise login will not work.
93bf0918
V
956 if (endsWith($_SERVER['HTTP_HOST'], '.free.fr') && !is_dir($_SERVER['DOCUMENT_ROOT'].'/sessions')) {
957 mkdir($_SERVER['DOCUMENT_ROOT'].'/sessions', 0705);
958 }
45034273 959
f37664a2
SS
960
961 // This part makes sure sessions works correctly.
962 // (Because on some hosts, session.save_path may not be set correctly,
963 // or we may not have write access to it.)
9d9f6d75
V
964 if (isset($_GET['test_session'])
965 && ( !isset($_SESSION) || !isset($_SESSION['session_tested']) || $_SESSION['session_tested']!='Working')) {
12266213
A
966 // Step 2: Check if data in session is correct.
967 $msg = t(
968 '<pre>Sessions do not seem to work correctly on your server.<br>'.
969 'Make sure the variable "session.save_path" is set correctly in your PHP config, '.
970 'and that you have write access to it.<br>'.
971 'It currently points to %s.<br>'.
972 'On some browsers, accessing your server via a hostname like \'localhost\' '.
973 'or any custom hostname without a dot causes cookie storage to fail. '.
974 'We recommend accessing your server via it\'s IP address or Fully Qualified Domain Name.<br>'
975 );
976 $msg = sprintf($msg, session_save_path());
977 echo $msg;
978 echo '<br><a href="?">'. t('Click to try again.') .'</a></pre>';
f37664a2
SS
979 die;
980 }
93bf0918
V
981 if (!isset($_SESSION['session_tested'])) {
982 // Step 1 : Try to store data in session and reload page.
f37664a2 983 $_SESSION['session_tested'] = 'Working'; // Try to set a variable in session.
482d67bd 984 header('Location: '.index_url($_SERVER).'?test_session'); // Redirect to check stored data.
f37664a2 985 }
93bf0918
V
986 if (isset($_GET['test_session'])) {
987 // Step 3: Sessions are OK. Remove test parameter from URL.
482d67bd 988 header('Location: '.index_url($_SERVER));
f37664a2
SS
989 }
990
991
93bf0918 992 if (!empty($_POST['setlogin']) && !empty($_POST['setpassword'])) {
45034273 993 $tz = 'UTC';
12ff86c9
A
994 if (!empty($_POST['continent']) && !empty($_POST['city'])
995 && isTimeZoneValid($_POST['continent'], $_POST['city'])
996 ) {
997 $tz = $_POST['continent'].'/'.$_POST['city'];
d1e2f8e5 998 }
da10377b 999 $conf->set('general.timezone', $tz);
684e662a 1000 $login = $_POST['setlogin'];
da10377b 1001 $conf->set('credentials.login', $login);
684e662a 1002 $salt = sha1(uniqid('', true) .'_'. mt_rand());
da10377b
A
1003 $conf->set('credentials.salt', $salt);
1004 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $login . $salt));
684e662a 1005 if (!empty($_POST['title'])) {
7f179985 1006 $conf->set('general.title', escape($_POST['title']));
684e662a 1007 } else {
cf92b4dd 1008 $conf->set('general.title', 'Shared bookmarks on '.escape(index_url($_SERVER)));
684e662a 1009 }
f39580c6 1010 $conf->set('translation.language', escape($_POST['language']));
894a3c4b 1011 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
cbfdcff2
A
1012 $conf->set('api.enabled', !empty($_POST['enableApi']));
1013 $conf->set(
1014 'api.secret',
1015 generate_api_secret(
e3a430ba
A
1016 $conf->get('credentials.login'),
1017 $conf->get('credentials.salt')
cbfdcff2
A
1018 )
1019 );
dd484b90 1020 try {
684e662a 1021 // Everything is ok, let's create config file.
63ea23c2 1022 $conf->write($loginManager->isLoggedIn());
93bf0918 1023 } catch (Exception $e) {
dd484b90 1024 error_log(
93bf0918 1025 'ERROR while writing config file after installation.' . PHP_EOL .
dd484b90 1026 $e->getMessage()
93bf0918 1027 );
dd484b90
A
1028
1029 // TODO: do not handle exceptions/errors in JS.
1030 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?\';</script>';
1031 exit;
1032 }
cf92b4dd
A
1033
1034 $history = new History($conf->get('resource.history'));
1035 $bookmarkService = new BookmarkFileService($conf, $history, true);
1036 if ($bookmarkService->count() === 0) {
1037 $bookmarkService->initialize();
1038 }
1039
9d9f6d75
V
1040 echo '<script>alert('
1041 .'"Shaarli is now configured. '
cf92b4dd 1042 .'Please enter your login/password and start shaaring your bookmarks!"'
9e4cc28e 1043 .');document.location=\'./login\';</script>';
45034273
SS
1044 exit;
1045 }
1046
28f26524 1047 $PAGE = new PageBuilder($conf, $_SESSION, null, $sessionManager->generateToken());
ae3aa968
A
1048 list($continents, $cities) = generateTimeZoneData(timezone_identifiers_list(), date_default_timezone_get());
1049 $PAGE->assign('continents', $continents);
1050 $PAGE->assign('cities', $cities);
f39580c6 1051 $PAGE->assign('languages', Languages::getAvailableLanguages());
45034273
SS
1052 $PAGE->renderPage('install');
1053 exit;
1054}
1055
684e662a 1056if (!isset($_SESSION['LINKS_PER_PAGE'])) {
da10377b 1057 $_SESSION['LINKS_PER_PAGE'] = $conf->get('general.links_per_page', 20);
684e662a 1058}
18e67967 1059
3b67b222
A
1060try {
1061 $history = new History($conf->get('resource.history'));
93bf0918 1062} catch (Exception $e) {
3b67b222
A
1063 die($e->getMessage());
1064}
1065
cf92b4dd
A
1066$linkDb = new BookmarkFileService($conf, $history, $loginManager->isLoggedIn());
1067
1068if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=dailyrss')) {
c4d5be53 1069 header('Location: ./daily-rss');
cf92b4dd
A
1070 exit;
1071}
18e67967 1072
9c75f877 1073$containerBuilder = new ContainerBuilder($conf, $sessionManager, $loginManager);
6c50a6cc
A
1074$container = $containerBuilder->build();
1075$app = new App($container);
18e67967
A
1076
1077// REST API routes
93bf0918 1078$app->group('/api/v1', function () {
68016e37 1079 $this->get('/info', '\Shaarli\Api\Controllers\Info:getInfo')->setName('getInfo');
20433ea7
A
1080 $this->get('/links', '\Shaarli\Api\Controllers\Links:getLinks')->setName('getLinks');
1081 $this->get('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:getLink')->setName('getLink');
1082 $this->post('/links', '\Shaarli\Api\Controllers\Links:postLink')->setName('postLink');
1083 $this->put('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:putLink')->setName('putLink');
1084 $this->delete('/links/{id:[\d]+}', '\Shaarli\Api\Controllers\Links:deleteLink')->setName('deleteLink');
d3f42ca4
A
1085
1086 $this->get('/tags', '\Shaarli\Api\Controllers\Tags:getTags')->setName('getTags');
1087 $this->get('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:getTag')->setName('getTag');
1088 $this->put('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:putTag')->setName('putTag');
1089 $this->delete('/tags/{tagName:[\w]+}', '\Shaarli\Api\Controllers\Tags:deleteTag')->setName('deleteTag');
1090
18d2d3ae 1091 $this->get('/history', '\Shaarli\Api\Controllers\HistoryController:getHistory')->setName('getHistory');
465b1c40 1092})->add('\Shaarli\Api\ApiMiddleware');
18e67967 1093
6c50a6cc 1094$app->group('', function () {
2899ebb5 1095 /* -- PUBLIC --*/
9c75f877
A
1096 $this->get('/login', '\Shaarli\Front\Controller\Visitor\LoginController:index');
1097 $this->get('/picture-wall', '\Shaarli\Front\Controller\Visitor\PictureWallController:index');
1098 $this->get('/tags/cloud', '\Shaarli\Front\Controller\Visitor\TagCloudController:cloud');
1099 $this->get('/tags/list', '\Shaarli\Front\Controller\Visitor\TagCloudController:list');
1100 $this->get('/daily', '\Shaarli\Front\Controller\Visitor\DailyController:index');
1101 $this->get('/daily-rss', '\Shaarli\Front\Controller\Visitor\DailyController:rss');
1102 $this->get('/feed/atom', '\Shaarli\Front\Controller\Visitor\FeedController:atom');
1103 $this->get('/feed/rss', '\Shaarli\Front\Controller\Visitor\FeedController:rss');
1104 $this->get('/open-search', '\Shaarli\Front\Controller\Visitor\OpenSearchController:index');
1105
1106 $this->get('/add-tag/{newTag}', '\Shaarli\Front\Controller\Visitor\TagController:addTag');
1107 $this->get('/remove-tag/{tag}', '\Shaarli\Front\Controller\Visitor\TagController:removeTag');
2899ebb5
A
1108
1109 /* -- LOGGED IN -- */
9c75f877
A
1110 $this->get('/logout', '\Shaarli\Front\Controller\Admin\LogoutController:index');
1111 $this->get('/admin/tools', '\Shaarli\Front\Controller\Admin\ToolsController:index');
1112 $this->get('/admin/password', '\Shaarli\Front\Controller\Admin\PasswordController:index');
1113 $this->post('/admin/password', '\Shaarli\Front\Controller\Admin\PasswordController:change');
1114 $this->get('/admin/configure', '\Shaarli\Front\Controller\Admin\ConfigureController:index');
1115 $this->post('/admin/configure', '\Shaarli\Front\Controller\Admin\ConfigureController:save');
1116 $this->get('/admin/tags', '\Shaarli\Front\Controller\Admin\ManageTagController:index');
1117 $this->post('/admin/tags', '\Shaarli\Front\Controller\Admin\ManageTagController:save');
baa69791
A
1118 $this->get('/admin/add-shaare', '\Shaarli\Front\Controller\Admin\ManageShaareController:addShaare');
1119 $this->get('/admin/shaare', '\Shaarli\Front\Controller\Admin\ManageShaareController:displayCreateForm');
1120 $this->get('/admin/shaare/{id:[0-9]+}', '\Shaarli\Front\Controller\Admin\ManageShaareController:displayEditForm');
1121 $this->post('/admin/shaare', '\Shaarli\Front\Controller\Admin\ManageShaareController:save');
1122 $this->get('/admin/shaare/delete', '\Shaarli\Front\Controller\Admin\ManageShaareController:deleteBookmark');
7b8a6f28 1123 $this->get('/admin/shaare/visibility', '\Shaarli\Front\Controller\Admin\ManageShaareController:changeVisibility');
9c75f877
A
1124
1125 $this->get('/links-per-page', '\Shaarli\Front\Controller\Admin\SessionFilterController:linksPerPage');
1126 $this->get('/visibility/{visibility}', '\Shaarli\Front\Controller\Admin\SessionFilterController:visibility');
1127 $this->get('/untagged-only', '\Shaarli\Front\Controller\Admin\SessionFilterController:untaggedOnly');
6c50a6cc
A
1128})->add('\Shaarli\Front\ShaarliMiddleware');
1129
18e67967 1130$response = $app->run(true);
5d9bc40d 1131
18e67967 1132// Hack to make Slim and Shaarli router work together:
16e3d006
A
1133// If a Slim route isn't found and NOT API call, we call renderPage().
1134if ($response->getStatusCode() == 404 && strpos($_SERVER['REQUEST_URI'], '/api/v1') === false) {
18e67967
A
1135 // We use UTF-8 for proper international characters handling.
1136 header('Content-Type: text/html; charset=utf-8');
44acf706 1137 renderPage($conf, $pluginManager, $linkDb, $history, $sessionManager, $loginManager);
18e67967 1138} else {
5d9bc40d
A
1139 $response = $response
1140 ->withHeader('Access-Control-Allow-Origin', '*')
1141 ->withHeader(
1142 'Access-Control-Allow-Headers',
1143 'X-Requested-With, Content-Type, Accept, Origin, Authorization'
1144 )
1145 ->withHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS');
18e67967
A
1146 $app->respond($response);
1147}