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