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