]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - index.php
Update method to use the new ID system, which replaces linkdate primary keys.
[github/shaarli/Shaarli.git] / index.php
CommitLineData
45034273 1<?php
49e2b35b 2/**
fdf88d19 3 * Shaarli v0.8.0 - Shaare your links...
49e2b35b 4 *
2d97aa77 5 * The personal, minimalist, super-fast, database free, bookmarking service.
49e2b35b
V
6 *
7 * Friendly fork by the Shaarli community:
8 * - https://github.com/shaarli/Shaarli
9 *
10 * Original project by sebsauvage.net:
11 * - http://sebsauvage.net/wiki/doku.php?id=php:shaarli
12 * - https://github.com/sebsauvage/Shaarli
13 *
14 * Licence: http://www.opensource.org/licenses/zlib-license.php
15 *
16 * Requires: PHP 5.3.x
17 */
afd7b77b
V
18
19// Set 'UTC' as the default timezone if it is not defined in php.ini
20// See http://php.net/manual/en/datetime.configuration.php#ini.date.timezone
21if (date_default_timezone_get() == '') {
22 date_default_timezone_set('UTC');
23}
cb49ab94 24
28bb2b74
V
25/*
26 * PHP configuration
27 */
fdf88d19 28define('shaarli_version', '0.8.0');
28bb2b74 29
ae00595b 30// http://server.com/x/shaarli --> /shaarli/
684e662a 31define('WEB_PATH', substr($_SERVER['REQUEST_URI'], 0, 1+strrpos($_SERVER['REQUEST_URI'], '/', 0)));
45034273 32
28bb2b74
V
33// High execution time in case of problematic imports/exports.
34ini_set('max_input_time','60');
35
36// Try to set max upload file size and read
37ini_set('memory_limit', '128M');
45034273
SS
38ini_set('post_max_size', '16M');
39ini_set('upload_max_filesize', '16M');
45034273 40
28bb2b74
V
41// See all error except warnings
42error_reporting(E_ALL^E_WARNING);
43// See all errors (for debugging only)
44//error_reporting(-1);
45
50c9a12e 46
a973afea 47// 3rd-party libraries
52831753
V
48if (! file_exists(__DIR__ . '/vendor/autoload.php')) {
49 header('Content-Type: text/plain; charset=utf-8');
50 echo "Error: missing Composer configuration\n\n"
51 ."If you installed Shaarli through Git or using the development branch,\n"
52 ."please refer to the installation documentation to install PHP"
53 ." dependencies using Composer:\n"
54 ."- https://github.com/shaarli/Shaarli/wiki/Server-requirements\n"
55 ."- https://github.com/shaarli/Shaarli/wiki/Download-and-Installation";
56 exit;
57}
a973afea
V
58require_once 'inc/rain.tpl.class.php';
59require_once __DIR__ . '/vendor/autoload.php';
60
ca74886f 61// Shaarli library
2e28269b 62require_once 'application/ApplicationUtils.php';
01e48f26
V
63require_once 'application/Cache.php';
64require_once 'application/CachedPage.php';
278d9ee2
A
65require_once 'application/config/ConfigManager.php';
66require_once 'application/config/ConfigPlugin.php';
82e36802 67require_once 'application/FeedBuilder.php';
2e28269b 68require_once 'application/FileUtils.php';
451314eb 69require_once 'application/HttpUtils.php';
edf3ff5a 70require_once 'application/Languages.php';
ca74886f 71require_once 'application/LinkDB.php';
822bffce 72require_once 'application/LinkFilter.php';
1557cefb 73require_once 'application/LinkUtils.php';
cd5327be 74require_once 'application/NetscapeBookmarkUtils.php';
03eb19ac 75require_once 'application/PageBuilder.php';
d1e2f8e5 76require_once 'application/TimeZone.php';
d9d776af 77require_once 'application/Url.php';
ca74886f 78require_once 'application/Utils.php';
6fc14d53
A
79require_once 'application/PluginManager.php';
80require_once 'application/Router.php';
510377d2 81require_once 'application/Updater.php';
ca74886f 82
d1e2f8e5
V
83// Ensure the PHP version is supported
84try {
c9cf2715 85 ApplicationUtils::checkPHPVersion('5.3', PHP_VERSION);
2e28269b 86} catch(Exception $exc) {
d1e2f8e5 87 header('Content-Type: text/plain; charset=utf-8');
2e28269b 88 echo $exc->getMessage();
d1e2f8e5
V
89 exit;
90}
91
06b6660a
A
92// Force cookie path (but do not change lifetime)
93$cookie = session_get_cookie_params();
94$cookiedir = '';
95if (dirname($_SERVER['SCRIPT_NAME']) != '/') {
96 $cookiedir = dirname($_SERVER["SCRIPT_NAME"]).'/';
97}
98// Set default cookie expiration and path.
99session_set_cookie_params($cookie['lifetime'], $cookiedir, $_SERVER['SERVER_NAME']);
100// Set session parameters on server side.
101// If the user does not access any page within this time, his/her session is considered expired.
102define('INACTIVITY_TIMEOUT', 3600); // in seconds.
103// Use cookies to store session.
104ini_set('session.use_cookies', 1);
105// Force cookies for session (phpsessionID forbidden in URL).
106ini_set('session.use_only_cookies', 1);
107// Prevent PHP form using sessionID in URL if cookies are disabled.
108ini_set('session.use_trans_sid', false);
109
06b6660a
A
110session_name('shaarli');
111// Start session if needed (Some server auto-start sessions).
112if (session_id() == '') {
113 session_start();
114}
115
68bc2135
V
116// Regenerate session ID if invalid or not defined in cookie.
117if (isset($_COOKIE['shaarli']) && !is_session_id_valid($_COOKIE['shaarli'])) {
118 session_regenerate_id(true);
119 $_COOKIE['shaarli'] = session_id();
120}
121
278d9ee2 122$conf = new ConfigManager();
7f179985
A
123$conf->setEmpty('general.timezone', date_default_timezone_get());
124$conf->setEmpty('general.title', 'Shared links on '. escape(index_url($_SERVER)));
894a3c4b
A
125RainTPL::$tpl_dir = $conf->get('resource.raintpl_tpl'); // template directory
126RainTPL::$cache_dir = $conf->get('resource.raintpl_tmp'); // cache directory
45034273 127
278d9ee2 128$pluginManager = new PluginManager($conf);
da10377b 129$pluginManager->load($conf->get('general.enabled_plugins'));
6fc14d53 130
da10377b 131date_default_timezone_set($conf->get('general.timezone', 'UTC'));
d93d51b2 132
45034273
SS
133ob_start(); // Output buffering for the page cache.
134
45034273
SS
135// In case stupid admin has left magic_quotes enabled in php.ini:
136if (get_magic_quotes_gpc())
137{
138 function stripslashes_deep($value) { $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value); return $value; }
139 $_POST = array_map('stripslashes_deep', $_POST);
140 $_GET = array_map('stripslashes_deep', $_GET);
141 $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
142}
143
144// Prevent caching on client side or proxy: (yes, it's ugly)
145header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
146header("Cache-Control: no-store, no-cache, must-revalidate");
147header("Cache-Control: post-check=0, pre-check=0", false);
148header("Pragma: no-cache");
149
278d9ee2 150if (! is_file($conf->getConfigFileExt())) {
2e28269b 151 // Ensure Shaarli has proper access to its resources
278d9ee2 152 $errors = ApplicationUtils::checkResourcePermissions($conf);
2e28269b
V
153
154 if ($errors != array()) {
155 $message = '<p>Insufficient permissions:</p><ul>';
156
157 foreach ($errors as $error) {
158 $message .= '<li>'.$error.'</li>';
159 }
160 $message .= '</ul>';
161
162 header('Content-Type: text/html; charset=utf-8');
163 echo $message;
164 exit;
165 }
166
167 // Display the installation form if no existing config is found
278d9ee2 168 install($conf);
50c9a12e 169}
8a80e4fe 170
ae00595b 171// a token depending of deployment salt, user password, and the current ip
da10377b 172define('STAY_SIGNED_IN_TOKEN', sha1($conf->get('credentials.hash') . $_SERVER['REMOTE_ADDR'] . $conf->get('credentials.salt')));
8a80e4fe 173
408def1a
A
174// Sniff browser language and set date format accordingly.
175if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
176 autoLocale($_SERVER['HTTP_ACCEPT_LANGUAGE']);
177}
45034273
SS
178header('Content-Type: text/html; charset=utf-8'); // We use UTF-8 for proper international characters handling.
179
278d9ee2
A
180/**
181 * Checking session state (i.e. is the user still logged in)
182 *
183 * @param ConfigManager $conf The configuration manager.
184 *
185 * @return bool: true if the user is logged in, false otherwise.
186 */
187function setup_login_state($conf)
188{
894a3c4b 189 if ($conf->get('security.open_shaarli')) {
02ad8fb6 190 return true;
ff69d87e 191 }
02ad8fb6
JP
192 $userIsLoggedIn = false; // By default, we do not consider the user as logged in;
193 $loginFailure = false; // If set to true, every attempt to authenticate the user will fail. This indicates that an important condition isn't met.
da10377b 194 if (! $conf->exists('credentials.login')) {
ff69d87e
FE
195 $userIsLoggedIn = false; // Shaarli is not configured yet.
196 $loginFailure = true;
197 }
198 if (isset($_COOKIE['shaarli_staySignedIn']) &&
199 $_COOKIE['shaarli_staySignedIn']===STAY_SIGNED_IN_TOKEN &&
200 !$loginFailure)
201 {
278d9ee2 202 fillSessionInfo($conf);
ff69d87e
FE
203 $userIsLoggedIn = true;
204 }
205 // If session does not exist on server side, or IP address has changed, or session has expired, logout.
684e662a 206 if (empty($_SESSION['uid'])
da10377b 207 || ($conf->get('security.session_protection_disabled') == false && $_SESSION['ip'] != allIPs())
684e662a 208 || time() >= $_SESSION['expires_on'])
ff69d87e
FE
209 {
210 logout();
211 $userIsLoggedIn = false;
212 $loginFailure = true;
213 }
214 if (!empty($_SESSION['longlastingsession'])) {
215 $_SESSION['expires_on']=time()+$_SESSION['longlastingsession']; // In case of "Stay signed in" checked.
216 }
217 else {
218 $_SESSION['expires_on']=time()+INACTIVITY_TIMEOUT; // Standard session expiration date.
219 }
220 if (!$loginFailure) {
221 $userIsLoggedIn = true;
222 }
223
224 return $userIsLoggedIn;
225}
278d9ee2 226$userIsLoggedIn = setup_login_state($conf);
45034273 227
278d9ee2
A
228/**
229 * PubSubHubbub protocol support (if enabled) [UNTESTED]
230 * (Source: http://aldarone.fr/les-flux-rss-shaarli-et-pubsubhubbub/ )
231 *
232 * @param ConfigManager $conf Configuration Manager instance.
233 */
234function pubsubhub($conf)
45034273 235{
684e662a
A
236 $pshUrl = $conf->get('config.PUBSUBHUB_URL');
237 if (!empty($pshUrl))
45034273 238 {
684e662a
A
239 include_once './publisher.php';
240 $p = new Publisher($pshUrl);
241 $topic_url = array (
242 index_url($_SERVER).'?do=atom',
243 index_url($_SERVER).'?do=rss'
244 );
245 $p->publish_update($topic_url);
45034273
SS
246 }
247}
248
249// ------------------------------------------------------------------------------------------
250// Session management
45034273
SS
251
252// Returns the IP address of the client (Used to prevent session cookie hijacking.)
253function allIPs()
254{
684e662a 255 $ip = $_SERVER['REMOTE_ADDR'];
45034273
SS
256 // Then we use more HTTP headers to prevent session hijacking from users behind the same proxy.
257 if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { $ip=$ip.'_'.$_SERVER['HTTP_X_FORWARDED_FOR']; }
258 if (isset($_SERVER['HTTP_CLIENT_IP'])) { $ip=$ip.'_'.$_SERVER['HTTP_CLIENT_IP']; }
259 return $ip;
260}
261
278d9ee2
A
262/**
263 * Load user session.
264 *
265 * @param ConfigManager $conf Configuration Manager instance.
266 */
267function fillSessionInfo($conf)
268{
ad6c27b7 269 $_SESSION['uid'] = sha1(uniqid('',true).'_'.mt_rand()); // Generate unique random number (different than phpsessionid)
ae00595b 270 $_SESSION['ip']=allIPs(); // We store IP address(es) of the client to make sure session is not hijacked.
da10377b 271 $_SESSION['username']= $conf->get('credentials.login');
ae00595b
CH
272 $_SESSION['expires_on']=time()+INACTIVITY_TIMEOUT; // Set session expiration.
273}
274
278d9ee2
A
275/**
276 * Check that user/password is correct.
277 *
278 * @param string $login Username
279 * @param string $password User password
280 * @param ConfigManager $conf Configuration Manager instance.
281 *
282 * @return bool: authentication successful or not.
283 */
284function check_auth($login, $password, $conf)
45034273 285{
da10377b
A
286 $hash = sha1($password . $login . $conf->get('credentials.salt'));
287 if ($login == $conf->get('credentials.login') && $hash == $conf->get('credentials.hash'))
45034273 288 { // Login/password is correct.
278d9ee2 289 fillSessionInfo($conf);
894a3c4b 290 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Login successful');
278d9ee2 291 return true;
45034273 292 }
894a3c4b 293 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Login failed for user '.$login);
278d9ee2 294 return false;
45034273
SS
295}
296
297// Returns true if the user is logged in.
298function isLoggedIn()
299{
ff69d87e
FE
300 global $userIsLoggedIn;
301 return $userIsLoggedIn;
45034273
SS
302}
303
304// Force logout.
ff69d87e
FE
305function logout() {
306 if (isset($_SESSION)) {
307 unset($_SESSION['uid']);
308 unset($_SESSION['ip']);
309 unset($_SESSION['username']);
310 unset($_SESSION['privateonly']);
311 }
312 setcookie('shaarli_staySignedIn', FALSE, 0, WEB_PATH);
ae00595b 313}
45034273
SS
314
315
316// ------------------------------------------------------------------------------------------
317// Brute force protection system
318// Several consecutive failed logins will ban the IP address for 30 minutes.
894a3c4b 319if (!is_file($conf->get('resource.ban_file', 'data/ipbans.php'))) {
684e662a
A
320 // FIXME! globals
321 file_put_contents(
894a3c4b 322 $conf->get('resource.ban_file', 'data/ipbans.php'),
684e662a
A
323 "<?php\n\$GLOBALS['IPBANS']=".var_export(array('FAILURES'=>array(),'BANS'=>array()),true).";\n?>"
324 );
325}
894a3c4b 326include $conf->get('resource.ban_file', 'data/ipbans.php');
278d9ee2
A
327/**
328 * Signal a failed login. Will ban the IP if too many failures:
329 *
330 * @param ConfigManager $conf Configuration Manager instance.
331 */
332function ban_loginFailed($conf)
45034273 333{
684e662a 334 $ip = $_SERVER['REMOTE_ADDR'];
50d17918
A
335 $trusted = $conf->get('security.trusted_proxies', array());
336 if (in_array($ip, $trusted)) {
337 $ip = getIpAddressFromProxy($_SERVER, $trusted);
338 if (!$ip) {
339 return;
340 }
341 }
684e662a 342 $gb = $GLOBALS['IPBANS'];
50d17918
A
343 if (! isset($gb['FAILURES'][$ip])) {
344 $gb['FAILURES'][$ip]=0;
345 }
45034273 346 $gb['FAILURES'][$ip]++;
da10377b 347 if ($gb['FAILURES'][$ip] > ($conf->get('security.ban_after') - 1))
45034273 348 {
da10377b 349 $gb['BANS'][$ip] = time() + $conf->get('security.ban_after', 1800);
894a3c4b 350 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'IP address banned from login');
45034273
SS
351 }
352 $GLOBALS['IPBANS'] = $gb;
684e662a 353 file_put_contents(
894a3c4b 354 $conf->get('resource.ban_file', 'data/ipbans.php'),
684e662a
A
355 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
356 );
45034273
SS
357}
358
278d9ee2
A
359/**
360 * Signals a successful login. Resets failed login counter.
361 *
362 * @param ConfigManager $conf Configuration Manager instance.
363 */
364function ban_loginOk($conf)
45034273 365{
684e662a
A
366 $ip = $_SERVER['REMOTE_ADDR'];
367 $gb = $GLOBALS['IPBANS'];
45034273
SS
368 unset($gb['FAILURES'][$ip]); unset($gb['BANS'][$ip]);
369 $GLOBALS['IPBANS'] = $gb;
684e662a 370 file_put_contents(
894a3c4b 371 $conf->get('resource.ban_file', 'data/ipbans.php'),
684e662a
A
372 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
373 );
45034273
SS
374}
375
278d9ee2
A
376/**
377 * Checks if the user CAN login. If 'true', the user can try to login.
378 *
379 * @param ConfigManager $conf Configuration Manager instance.
380 *
381 * @return bool: true if the user is allowed to login.
382 */
383function ban_canLogin($conf)
45034273
SS
384{
385 $ip=$_SERVER["REMOTE_ADDR"]; $gb=$GLOBALS['IPBANS'];
386 if (isset($gb['BANS'][$ip]))
387 {
388 // User is banned. Check if the ban has expired:
389 if ($gb['BANS'][$ip]<=time())
390 { // Ban expired, user can try to login again.
894a3c4b 391 logm($conf->get('resource.log'), $_SERVER['REMOTE_ADDR'], 'Ban lifted.');
45034273 392 unset($gb['FAILURES'][$ip]); unset($gb['BANS'][$ip]);
684e662a 393 file_put_contents(
894a3c4b 394 $conf->get('resource.ban_file', 'data/ipbans.php'),
684e662a
A
395 "<?php\n\$GLOBALS['IPBANS']=".var_export($gb,true).";\n?>"
396 );
45034273
SS
397 return true; // Ban has expired, user can login.
398 }
399 return false; // User is banned.
400 }
401 return true; // User is not banned.
402}
403
404// ------------------------------------------------------------------------------------------
405// Process login form: Check if login/password is correct.
406if (isset($_POST['login']))
407{
278d9ee2
A
408 if (!ban_canLogin($conf)) die('I said: NO. You are banned for the moment. Go away.');
409 if (isset($_POST['password'])
410 && tokenOk($_POST['token'])
411 && (check_auth($_POST['login'], $_POST['password'], $conf))
412 ) { // Login/password is OK.
413 ban_loginOk($conf);
45034273
SS
414 // If user wants to keep the session cookie even after the browser closes:
415 if (!empty($_POST['longlastingsession']))
416 {
ae00595b 417 setcookie('shaarli_staySignedIn', STAY_SIGNED_IN_TOKEN, time()+31536000, WEB_PATH);
45034273
SS
418 $_SESSION['longlastingsession']=31536000; // (31536000 seconds = 1 year)
419 $_SESSION['expires_on']=time()+$_SESSION['longlastingsession']; // Set session expiration on server-side.
2d9fab88
SS
420
421 $cookiedir = ''; if(dirname($_SERVER['SCRIPT_NAME'])!='/') $cookiedir=dirname($_SERVER["SCRIPT_NAME"]).'/';
2f32d074 422 session_set_cookie_params($_SESSION['longlastingsession'],$cookiedir,$_SERVER['SERVER_NAME']); // Set session cookie expiration on client side
ad6c27b7 423 // Note: Never forget the trailing slash on the cookie path!
45034273
SS
424 session_regenerate_id(true); // Send cookie with new expiration date to browser.
425 }
426 else // Standard session expiration (=when browser closes)
427 {
2d9fab88 428 $cookiedir = ''; if(dirname($_SERVER['SCRIPT_NAME'])!='/') $cookiedir=dirname($_SERVER["SCRIPT_NAME"]).'/';
2f32d074 429 session_set_cookie_params(0,$cookiedir,$_SERVER['SERVER_NAME']); // 0 means "When browser closes"
45034273
SS
430 session_regenerate_id(true);
431 }
f4c84ad7 432
45034273 433 // Optional redirect after login:
5fbabbb9
A
434 if (isset($_GET['post'])) {
435 $uri = '?post='. urlencode($_GET['post']);
436 foreach (array('description', 'source', 'title') as $param) {
437 if (!empty($_GET[$param])) {
438 $uri .= '&'.$param.'='.urlencode($_GET[$param]);
439 }
440 }
441 header('Location: '. $uri);
442 exit;
443 }
444
445 if (isset($_GET['edit_link'])) {
446 header('Location: ?edit_link='. escape($_GET['edit_link']));
447 exit;
448 }
449
450 if (isset($_POST['returnurl'])) {
451 // Prevent loops over login screen.
452 if (strpos($_POST['returnurl'], 'do=login') === false) {
e15f08d7 453 header('Location: '. generateLocation($_POST['returnurl'], $_SERVER['HTTP_HOST']));
5fbabbb9
A
454 exit;
455 }
45034273
SS
456 }
457 header('Location: ?'); exit;
458 }
459 else
460 {
278d9ee2 461 ban_loginFailed($conf);
85c4bdc2 462 $redir = '&username='. $_POST['login'];
5fbabbb9 463 if (isset($_GET['post'])) {
85c4bdc2 464 $redir .= '&post=' . urlencode($_GET['post']);
5fbabbb9
A
465 foreach (array('description', 'source', 'title') as $param) {
466 if (!empty($_GET[$param])) {
467 $redir .= '&' . $param . '=' . urlencode($_GET[$param]);
468 }
469 }
470 }
fe16b01e 471 echo '<script>alert("Wrong login/password.");document.location=\'?do=login'.$redir.'\';</script>'; // Redirect to login screen.
45034273
SS
472 exit;
473 }
474}
475
476// ------------------------------------------------------------------------------------------
477// Misc utility functions:
478
ad6c27b7 479// Convert post_max_size/upload_max_filesize (e.g. '16M') parameters to bytes.
45034273
SS
480function return_bytes($val)
481{
482 $val = trim($val); $last=strtolower($val[strlen($val)-1]);
483 switch($last)
484 {
485 case 'g': $val *= 1024;
486 case 'm': $val *= 1024;
487 case 'k': $val *= 1024;
488 }
489 return $val;
490}
491
492// Try to determine max file size for uploads (POST).
493// Returns an integer (in bytes)
494function getMaxFileSize()
495{
496 $size1 = return_bytes(ini_get('post_max_size'));
497 $size2 = return_bytes(ini_get('upload_max_filesize'));
498 // Return the smaller of two:
499 $maxsize = min($size1,$size2);
ad6c27b7 500 // FIXME: Then convert back to readable notations ? (e.g. 2M instead of 2000000)
45034273
SS
501 return $maxsize;
502}
503
45034273
SS
504// ------------------------------------------------------------------------------------------
505// Token management for XSRF protection
506// Token should be used in any form which acts on data (create,update,delete,import...).
507if (!isset($_SESSION['tokens'])) $_SESSION['tokens']=array(); // Token are attached to the session.
508
278d9ee2
A
509/**
510 * Returns a token.
511 *
512 * @param ConfigManager $conf Configuration Manager instance.
513 *
514 * @return string token.
515 */
516function getToken($conf)
45034273 517{
da10377b 518 $rnd = sha1(uniqid('', true) .'_'. mt_rand() . $conf->get('credentials.salt')); // We generate a random string.
45034273
SS
519 $_SESSION['tokens'][$rnd]=1; // Store it on the server side.
520 return $rnd;
521}
522
ad6c27b7 523// Tells if a token is OK. Using this function will destroy the token.
524// true=token is OK.
45034273
SS
525function tokenOk($token)
526{
527 if (isset($_SESSION['tokens'][$token]))
528 {
529 unset($_SESSION['tokens'][$token]); // Token is used: destroy it.
ad6c27b7 530 return true; // Token is OK.
45034273
SS
531 }
532 return false; // Wrong token, or already used.
533}
534
278d9ee2
A
535/**
536 * Daily RSS feed: 1 RSS entry per day giving all the links on that day.
537 * Gives the last 7 days (which have links).
538 * This RSS feed cannot be filtered.
539 *
540 * @param ConfigManager $conf Configuration Manager instance.
541 */
542function showDailyRSS($conf) {
45034273 543 // Cache system
5046bcb6 544 $query = $_SERVER['QUERY_STRING'];
01e48f26 545 $cache = new CachedPage(
684e662a 546 $conf->get('config.PAGE_CACHE'),
482d67bd 547 page_url($_SERVER),
01e48f26
V
548 startsWith($query,'do=dailyrss') && !isLoggedIn()
549 );
f3b8f9f0
A
550 $cached = $cache->cachedVersion();
551 if (!empty($cached)) {
552 echo $cached;
553 exit;
554 }
9f15ca9e 555
f3b8f9f0
A
556 // If cached was not found (or not usable), then read the database and build the response:
557 // Read links from database (and filter private links if used it not logged in).
9f15ca9e 558 $LINKSDB = new LinkDB(
894a3c4b 559 $conf->get('resource.datastore'),
02ad8fb6 560 isLoggedIn(),
894a3c4b
A
561 $conf->get('privacy.hide_public_links'),
562 $conf->get('redirector.url'),
563 $conf->get('redirector.encode_url')
9f15ca9e 564 );
bb8f712d 565
45034273
SS
566 /* Some Shaarlies may have very few links, so we need to look
567 back in time (rsort()) until we have enough days ($nb_of_days).
568 */
f3b8f9f0
A
569 $linkdates = array();
570 foreach ($LINKSDB as $linkdate => $value) {
571 $linkdates[] = $linkdate;
572 }
45034273 573 rsort($linkdates);
f3b8f9f0 574 $nb_of_days = 7; // We take 7 days.
684e662a 575 $today = date('Ymd');
f3b8f9f0
A
576 $days = array();
577
578 foreach ($linkdates as $linkdate) {
579 $day = substr($linkdate, 0, 8); // Extract day (without time)
580 if (strcmp($day,$today) < 0) {
581 if (empty($days[$day])) {
582 $days[$day] = array();
583 }
584 $days[$day][] = $linkdate;
585 }
586
587 if (count($days) > $nb_of_days) {
588 break; // Have we collected enough days?
45034273 589 }
45034273 590 }
bb8f712d 591
45034273
SS
592 // Build the RSS feed.
593 header('Content-Type: application/rss+xml; charset=utf-8');
482d67bd 594 $pageaddr = escape(index_url($_SERVER));
45034273 595 echo '<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">';
f3b8f9f0 596 echo '<channel>';
da10377b 597 echo '<title>Daily - '. $conf->get('general.title') . '</title>';
f3b8f9f0
A
598 echo '<link>'. $pageaddr .'</link>';
599 echo '<description>Daily shared links</description>';
600 echo '<language>en-en</language>';
601 echo '<copyright>'. $pageaddr .'</copyright>'. PHP_EOL;
602
603 // For each day.
604 foreach ($days as $day => $linkdates) {
205a4277 605 $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000');
482d67bd 606 $absurl = escape(index_url($_SERVER).'?do=daily&day='.$day); // Absolute URL of the corresponding "Daily" page.
bb8f712d 607
45034273 608 // Build the HTML body of this RSS entry.
f3b8f9f0
A
609 $links = array();
610
45034273 611 // We pre-format some fields for proper output.
f3b8f9f0 612 foreach ($linkdates as $linkdate) {
45034273 613 $l = $LINKSDB[$linkdate];
894a3c4b 614 $l['formatedDescription'] = format_description($l['description'], $conf->get('redirector.url'));
278d9ee2 615 $l['thumbnail'] = thumbnail($conf, $l['url']);
205a4277
V
616 $l_date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $l['linkdate']);
617 $l['timestamp'] = $l_date->getTimestamp();
f3b8f9f0 618 if (startsWith($l['url'], '?')) {
482d67bd 619 $l['url'] = index_url($_SERVER) . $l['url']; // make permalink URL absolute
f3b8f9f0
A
620 }
621 $links[$linkdate] = $l;
45034273 622 }
f3b8f9f0 623
45034273 624 // Then build the HTML for this day:
bb8f712d 625 $tpl = new RainTPL;
da10377b 626 $tpl->assign('title', $conf->get('general.title'));
205a4277 627 $tpl->assign('daydate', $dayDate->getTimestamp());
f3b8f9f0
A
628 $tpl->assign('absurl', $absurl);
629 $tpl->assign('links', $links);
205a4277 630 $tpl->assign('rssdate', escape($dayDate->format(DateTime::RSS)));
894a3c4b 631 $tpl->assign('hide_timestamps', $conf->get('privacy.hide_timestamps', false));
f3b8f9f0 632 $html = $tpl->draw('dailyrss', $return_string=true);
45034273 633
f3b8f9f0 634 echo $html . PHP_EOL;
bb8f712d 635 }
482d67bd 636 echo '</channel></rss><!-- Cached version of '. escape(page_url($_SERVER)) .' -->';
bb8f712d 637
45034273
SS
638 $cache->cache(ob_get_contents());
639 ob_end_flush();
640 exit;
641}
642
38603b24
A
643/**
644 * Show the 'Daily' page.
645 *
278d9ee2
A
646 * @param PageBuilder $pageBuilder Template engine wrapper.
647 * @param LinkDB $LINKSDB LinkDB instance.
648 * @param ConfigManager $conf Configuration Manager instance.
649 * @param PluginManager $pluginManager Plugin Manager instane.
38603b24 650 */
278d9ee2 651function showDaily($pageBuilder, $LINKSDB, $conf, $pluginManager)
45034273 652{
684e662a 653 $day=date('Ymd',strtotime('-1 day')); // Yesterday, in format YYYYMMDD.
45034273 654 if (isset($_GET['day'])) $day=$_GET['day'];
bb8f712d 655
45034273
SS
656 $days = $LINKSDB->days();
657 $i = array_search($day,$days);
f3db3774 658 if ($i===false) { $i=count($days)-1; $day=$days[$i]; }
bb8f712d
KT
659 $previousday='';
660 $nextday='';
45034273
SS
661 if ($i!==false)
662 {
f3db3774 663 if ($i>=1) $previousday=$days[$i-1];
45034273
SS
664 if ($i<count($days)-1) $nextday=$days[$i+1];
665 }
666
9186ab95 667 try {
528a6f8a 668 $linksToDisplay = $LINKSDB->filterDay($day);
9186ab95
V
669 } catch (Exception $exc) {
670 error_log($exc);
d1e2f8e5 671 $linksToDisplay = array();
9186ab95
V
672 }
673
45034273
SS
674 // We pre-format some fields for proper output.
675 foreach($linksToDisplay as $key=>$link)
676 {
5f85fcd8 677
dd62b9ba
SS
678 $taglist = explode(' ',$link['tags']);
679 uasort($taglist, 'strcasecmp');
680 $linksToDisplay[$key]['taglist']=$taglist;
894a3c4b 681 $linksToDisplay[$key]['formatedDescription'] = format_description($link['description'], $conf->get('redirector.url'));
278d9ee2 682 $linksToDisplay[$key]['thumbnail'] = thumbnail($conf, $link['url']);
205a4277
V
683 $date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $link['linkdate']);
684 $linksToDisplay[$key]['timestamp'] = $date->getTimestamp();
45034273 685 }
bb8f712d 686
45034273 687 /* We need to spread the articles on 3 columns.
ad6c27b7 688 I did not want to use a JavaScript lib like http://masonry.desandro.com/
bb8f712d 689 so I manually spread entries with a simple method: I roughly evaluate the
45034273
SS
690 height of a div according to title and description length.
691 */
692 $columns=array(array(),array(),array()); // Entries to display, for each column.
693 $fill=array(0,0,0); // Rough estimate of columns fill.
694 foreach($linksToDisplay as $key=>$link)
695 {
696 // Roughly estimate length of entry (by counting characters)
697 // Title: 30 chars = 1 line. 1 line is 30 pixels height.
698 // Description: 836 characters gives roughly 342 pixel height.
ad6c27b7 699 // This is not perfect, but it's usually OK.
45034273
SS
700 $length=strlen($link['title'])+(342*strlen($link['description']))/836;
701 if ($link['thumbnail']) $length +=100; // 1 thumbnails roughly takes 100 pixels height.
702 // Then put in column which is the less filled:
703 $smallest=min($fill); // find smallest value in array.
704 $index=array_search($smallest,$fill); // find index of this smallest value.
705 array_push($columns[$index],$link); // Put entry in this column.
706 $fill[$index]+=$length;
707 }
38603b24 708
205a4277 709 $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000');
6fc14d53
A
710 $data = array(
711 'linksToDisplay' => $linksToDisplay,
6fc14d53 712 'cols' => $columns,
205a4277 713 'day' => $dayDate->getTimestamp(),
6fc14d53
A
714 'previousday' => $previousday,
715 'nextday' => $nextday,
716 );
278d9ee2 717
6fc14d53
A
718 $pluginManager->executeHooks('render_daily', $data, array('loggedin' => isLoggedIn()));
719
720 foreach ($data as $key => $value) {
38603b24 721 $pageBuilder->assign($key, $value);
6fc14d53
A
722 }
723
38603b24 724 $pageBuilder->renderPage('daily');
45034273
SS
725 exit;
726}
727
278d9ee2
A
728/**
729 * Renders the linklist
730 *
731 * @param pageBuilder $PAGE pageBuilder instance.
732 * @param LinkDB $LINKSDB LinkDB instance.
733 * @param ConfigManager $conf Configuration Manager instance.
734 * @param PluginManager $pluginManager Plugin Manager instance.
735 */
736function showLinkList($PAGE, $LINKSDB, $conf, $pluginManager) {
737 buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager); // Compute list of links to display
6fc14d53
A
738 $PAGE->renderPage('linklist');
739}
740
278d9ee2
A
741/**
742 * Render HTML page (according to URL parameters and user rights)
743 *
744 * @param ConfigManager $conf Configuration Manager instance.
745 * @param PluginManager $pluginManager Plugin Manager instance,
746 */
747function renderPage($conf, $pluginManager)
45034273 748{
9f15ca9e 749 $LINKSDB = new LinkDB(
894a3c4b 750 $conf->get('resource.datastore'),
02ad8fb6 751 isLoggedIn(),
894a3c4b
A
752 $conf->get('privacy.hide_public_links'),
753 $conf->get('redirector.url'),
754 $conf->get('redirector.encode_url')
9f15ca9e 755 );
45034273 756
510377d2 757 $updater = new Updater(
894a3c4b 758 read_updates_file($conf->get('resource.updates')),
510377d2 759 $LINKSDB,
278d9ee2 760 $conf,
510377d2
A
761 isLoggedIn()
762 );
763 try {
764 $newUpdates = $updater->update();
765 if (! empty($newUpdates)) {
766 write_updates_file(
894a3c4b 767 $conf->get('resource.updates'),
510377d2
A
768 $updater->getDoneUpdates()
769 );
770 }
771 }
772 catch(Exception $e) {
773 die($e->getMessage());
774 }
775
278d9ee2 776 $PAGE = new PageBuilder($conf);
141a86c5
A
777 $PAGE->assign('linkcount', count($LINKSDB));
778 $PAGE->assign('privateLinkcount', count_private($LINKSDB));
7fde6de1 779 $PAGE->assign('plugin_errors', $pluginManager->getErrors());
6fc14d53
A
780
781 // Determine which page will be rendered.
782 $query = (isset($_SERVER['QUERY_STRING'])) ? $_SERVER['QUERY_STRING'] : '';
783 $targetPage = Router::findPage($query, $_GET, isLoggedIn());
784
785 // Call plugin hooks for header, footer and includes, specifying which page will be rendered.
786 // Then assign generated data to RainTPL.
787 $common_hooks = array(
fea5db7a 788 'includes',
6fc14d53
A
789 'header',
790 'footer',
6fc14d53 791 );
278d9ee2 792
6fc14d53
A
793 foreach($common_hooks as $name) {
794 $plugin_data = array();
795 $pluginManager->executeHooks('render_' . $name, $plugin_data,
796 array(
797 'target' => $targetPage,
798 'loggedin' => isLoggedIn()
799 )
800 );
801 $PAGE->assign('plugins_' . $name, $plugin_data);
802 }
803
45034273 804 // -------- Display login form.
6fc14d53 805 if ($targetPage == Router::$PAGE_LOGIN)
45034273 806 {
894a3c4b 807 if ($conf->get('security.open_shaarli')) { header('Location: ?'); exit; } // No need to login for open Shaarli
85c4bdc2
A
808 if (isset($_GET['username'])) {
809 $PAGE->assign('username', escape($_GET['username']));
810 }
5f85fcd8 811 $PAGE->assign('returnurl',(isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']):''));
45034273
SS
812 $PAGE->renderPage('loginform');
813 exit;
814 }
815 // -------- User wants to logout.
5046bcb6 816 if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=logout'))
45034273 817 {
894a3c4b 818 invalidateCaches($conf->get('resource.page_cache'));
45034273
SS
819 logout();
820 header('Location: ?');
821 exit;
822 }
823
824 // -------- Picture wall
6fc14d53 825 if ($targetPage == Router::$PAGE_PICWALL)
45034273 826 {
ad6c27b7 827 // Optionally filter the results:
528a6f8a 828 $links = $LINKSDB->filterSearch($_GET);
822bffce 829 $linksToDisplay = array();
45034273
SS
830
831 // Get only links which have a thumbnail.
832 foreach($links as $link)
833 {
7af9a418 834 $permalink='?'.escape(smallHash($link['linkdate']));
278d9ee2 835 $thumb=lazyThumbnail($conf, $link['url'],$permalink);
45034273
SS
836 if ($thumb!='') // Only output links which have a thumbnail.
837 {
838 $link['thumbnail']=$thumb; // Thumbnail HTML code.
45034273
SS
839 $linksToDisplay[]=$link; // Add to array.
840 }
841 }
f3db3774 842
6fc14d53 843 $data = array(
6fc14d53
A
844 'linksToDisplay' => $linksToDisplay,
845 );
846 $pluginManager->executeHooks('render_picwall', $data, array('loggedin' => isLoggedIn()));
847
848 foreach ($data as $key => $value) {
849 $PAGE->assign($key, $value);
850 }
851
45034273
SS
852 $PAGE->renderPage('picwall');
853 exit;
854 }
855
856 // -------- Tag cloud
6fc14d53 857 if ($targetPage == Router::$PAGE_TAGCLOUD)
45034273
SS
858 {
859 $tags= $LINKSDB->allTags();
a037ac69 860
45034273
SS
861 // We sort tags alphabetically, then choose a font size according to count.
862 // First, find max value.
f1e96a06
A
863 $maxcount = 0;
864 foreach ($tags as $value) {
865 $maxcount = max($maxcount, $value);
866 }
867
7af9a418 868 // Sort tags alphabetically: case insensitive, support locale if available.
f1e96a06
A
869 uksort($tags, function($a, $b) {
870 // Collator is part of PHP intl.
871 if (class_exists('Collator')) {
7eb0a832
A
872 $c = new Collator(setlocale(LC_COLLATE, 0));
873 if (!intl_is_failure(intl_get_error_code())) {
874 return $c->compare($a, $b);
875 }
f1e96a06 876 }
7eb0a832 877 return strcasecmp($a, $b);
f1e96a06
A
878 });
879
b0128609
A
880 $tagList = array();
881 foreach($tags as $key => $value) {
882 // Tag font size scaling:
883 // default 15 and 30 logarithm bases affect scaling,
884 // 22 and 6 are arbitrary font sizes for max and min sizes.
885 $size = log($value, 15) / log($maxcount, 30) * 2.2 + 0.8;
886 $tagList[$key] = array(
887 'count' => $value,
888 'size' => number_format($size, 2, '.', ''),
889 );
45034273 890 }
6fc14d53
A
891
892 $data = array(
6fc14d53
A
893 'tags' => $tagList,
894 );
895 $pluginManager->executeHooks('render_tagcloud', $data, array('loggedin' => isLoggedIn()));
896
897 foreach ($data as $key => $value) {
898 $PAGE->assign($key, $value);
899 }
900
45034273 901 $PAGE->renderPage('tagcloud');
bb8f712d 902 exit;
45034273
SS
903 }
904
38603b24
A
905 // Daily page.
906 if ($targetPage == Router::$PAGE_DAILY) {
278d9ee2 907 showDaily($PAGE, $LINKSDB, $conf, $pluginManager);
38603b24
A
908 }
909
82e36802
A
910 // ATOM and RSS feed.
911 if ($targetPage == Router::$PAGE_FEED_ATOM || $targetPage == Router::$PAGE_FEED_RSS) {
912 $feedType = $targetPage == Router::$PAGE_FEED_RSS ? FeedBuilder::$FEED_RSS : FeedBuilder::$FEED_ATOM;
913 header('Content-Type: application/'. $feedType .'+xml; charset=utf-8');
914
915 // Cache system
916 $query = $_SERVER['QUERY_STRING'];
917 $cache = new CachedPage(
894a3c4b 918 $conf->get('resource.page_cache'),
82e36802
A
919 page_url($_SERVER),
920 startsWith($query,'do='. $targetPage) && !isLoggedIn()
921 );
922 $cached = $cache->cachedVersion();
5f143b72 923 if (!empty($cached)) {
82e36802
A
924 echo $cached;
925 exit;
926 }
69c474b9 927
82e36802
A
928 // Generate data.
929 $feedGenerator = new FeedBuilder($LINKSDB, $feedType, $_SERVER, $_GET, isLoggedIn());
930 $feedGenerator->setLocale(strtolower(setlocale(LC_COLLATE, 0)));
894a3c4b
A
931 $feedGenerator->setHideDates($conf->get('privacy.hide_timestamps') && !isLoggedIn());
932 $feedGenerator->setUsePermalinks(isset($_GET['permalinks']) || !$conf->get('feed.rss_permalinks'));
684e662a
A
933 $pshUrl = $conf->get('config.PUBSUBHUB_URL');
934 if (!empty($pshUrl)) {
935 $feedGenerator->setPubsubhubUrl($pshUrl);
82e36802
A
936 }
937 $data = $feedGenerator->buildData();
938
939 // Process plugin hook.
82e36802
A
940 $pluginManager->executeHooks('render_feed', $data, array(
941 'loggedin' => isLoggedIn(),
942 'target' => $targetPage,
943 ));
944
945 // Render the template.
946 $PAGE->assignAll($data);
947 $PAGE->renderPage('feed.'. $feedType);
948 $cache->cache(ob_get_contents());
949 ob_end_flush();
950 exit;
e67712ba
A
951 }
952
8f8113b9
A
953 // Display openseach plugin (XML)
954 if ($targetPage == Router::$PAGE_OPENSEARCH) {
955 header('Content-Type: application/xml; charset=utf-8');
956 $PAGE->assign('serverurl', index_url($_SERVER));
957 $PAGE->renderPage('opensearch');
958 exit;
959 }
960
45034273
SS
961 // -------- User clicks on a tag in a link: The tag is added to the list of searched tags (searchtags=...)
962 if (isset($_GET['addtag']))
963 {
964 // Get previous URL (http_referer) and add the tag to the searchtags parameters in query.
965 if (empty($_SERVER['HTTP_REFERER'])) { header('Location: ?searchtags='.urlencode($_GET['addtag'])); exit; } // In case browser does not send HTTP_REFERER
966 parse_str(parse_url($_SERVER['HTTP_REFERER'],PHP_URL_QUERY), $params);
732e683b 967
775803a0
A
968 // Prevent redirection loop
969 if (isset($params['addtag'])) {
970 unset($params['addtag']);
971 }
972
732e683b
FE
973 // Check if this tag is already in the search query and ignore it if it is.
974 // Each tag is always separated by a space
6ac95d9c
A
975 if (isset($params['searchtags'])) {
976 $current_tags = explode(' ', $params['searchtags']);
977 } else {
978 $current_tags = array();
979 }
732e683b
FE
980 $addtag = true;
981 foreach ($current_tags as $value) {
982 if ($value === $_GET['addtag']) {
983 $addtag = false;
984 break;
985 }
986 }
987 // Append the tag if necessary
988 if (empty($params['searchtags'])) {
989 $params['searchtags'] = trim($_GET['addtag']);
990 }
991 else if ($addtag) {
992 $params['searchtags'] = trim($params['searchtags']).' '.trim($_GET['addtag']);
993 }
994
45034273
SS
995 unset($params['page']); // We also remove page (keeping the same page has no sense, since the results are different)
996 header('Location: ?'.http_build_query($params));
997 exit;
998 }
999
1000 // -------- User clicks on a tag in result count: Remove the tag from the list of searched tags (searchtags=...)
775803a0 1001 if (isset($_GET['removetag'])) {
45034273 1002 // Get previous URL (http_referer) and remove the tag from the searchtags parameters in query.
775803a0
A
1003 if (empty($_SERVER['HTTP_REFERER'])) {
1004 header('Location: ?');
1005 exit;
1006 }
1007
1008 // In case browser does not send HTTP_REFERER
1009 parse_str(parse_url($_SERVER['HTTP_REFERER'], PHP_URL_QUERY), $params);
1010
1011 // Prevent redirection loop
1012 if (isset($params['removetag'])) {
1013 unset($params['removetag']);
1014 }
1015
1016 if (isset($params['searchtags'])) {
822bffce 1017 $tags = explode(' ', $params['searchtags']);
2c75f8e7
A
1018 // Remove value from array $tags.
1019 $tags = array_diff($tags, array($_GET['removetag']));
1020 $params['searchtags'] = implode(' ',$tags);
1021
1022 if (empty($params['searchtags'])) {
775803a0 1023 unset($params['searchtags']);
775803a0 1024 }
2c75f8e7 1025
45034273
SS
1026 unset($params['page']); // We also remove page (keeping the same page has no sense, since the results are different)
1027 }
1028 header('Location: ?'.http_build_query($params));
1029 exit;
1030 }
1031
1032 // -------- User wants to change the number of links per page (linksperpage=...)
775803a0
A
1033 if (isset($_GET['linksperpage'])) {
1034 if (is_numeric($_GET['linksperpage'])) {
1035 $_SESSION['LINKS_PER_PAGE']=abs(intval($_GET['linksperpage']));
1036 }
1037
1038 header('Location: '. generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('linksperpage')));
45034273
SS
1039 exit;
1040 }
bb8f712d 1041
45034273 1042 // -------- User wants to see only private links (toggle)
775803a0
A
1043 if (isset($_GET['privateonly'])) {
1044 if (empty($_SESSION['privateonly'])) {
1045 $_SESSION['privateonly'] = 1; // See only private links
1046 } else {
45034273
SS
1047 unset($_SESSION['privateonly']); // See all links
1048 }
775803a0
A
1049
1050 header('Location: '. generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('privateonly')));
45034273
SS
1051 exit;
1052 }
1053
1054 // -------- Handle other actions allowed for non-logged in users:
1055 if (!isLoggedIn())
1056 {
ad6c27b7 1057 // User tries to post new link but is not logged in:
45034273
SS
1058 // Show login screen, then redirect to ?post=...
1059 if (isset($_GET['post']))
1060 {
a1795ddc 1061 header('Location: ?do=login&post='.urlencode($_GET['post']).(!empty($_GET['title'])?'&title='.urlencode($_GET['title']):'').(!empty($_GET['description'])?'&description='.urlencode($_GET['description']):'').(!empty($_GET['source'])?'&source='.urlencode($_GET['source']):'')); // Redirect to login page, then back to post link.
45034273
SS
1062 exit;
1063 }
aedc912d 1064
278d9ee2 1065 showLinkList($PAGE, $LINKSDB, $conf, $pluginManager);
5fbabbb9
A
1066 if (isset($_GET['edit_link'])) {
1067 header('Location: ?do=login&edit_link='. escape($_GET['edit_link']));
1068 exit;
1069 }
1070
ad6c27b7 1071 exit; // Never remove this one! All operations below are reserved for logged in user.
45034273
SS
1072 }
1073
1074 // -------- All other functions are reserved for the registered user:
1075
1076 // -------- Display the Tools menu if requested (import/export/bookmarklet...)
6fc14d53 1077 if ($targetPage == Router::$PAGE_TOOLS)
45034273 1078 {
6fc14d53 1079 $data = array(
6fc14d53 1080 'pageabsaddr' => index_url($_SERVER),
caa382dd 1081 'sslenabled' => !empty($_SERVER['HTTPS'])
6fc14d53
A
1082 );
1083 $pluginManager->executeHooks('render_tools', $data);
1084
1085 foreach ($data as $key => $value) {
1086 $PAGE->assign($key, $value);
1087 }
1088
45034273
SS
1089 $PAGE->renderPage('tools');
1090 exit;
1091 }
1092
1093 // -------- User wants to change his/her password.
6fc14d53 1094 if ($targetPage == Router::$PAGE_CHANGEPASSWORD)
45034273 1095 {
894a3c4b 1096 if ($conf->get('security.open_shaarli')) {
684e662a
A
1097 die('You are not supposed to change a password on an Open Shaarli.');
1098 }
1099
45034273
SS
1100 if (!empty($_POST['setpassword']) && !empty($_POST['oldpassword']))
1101 {
ad6c27b7 1102 if (!tokenOk($_POST['token'])) die('Wrong token.'); // Go away!
45034273
SS
1103
1104 // Make sure old password is correct.
da10377b
A
1105 $oldhash = sha1($_POST['oldpassword'].$conf->get('credentials.login').$conf->get('credentials.salt'));
1106 if ($oldhash!= $conf->get('credentials.hash')) { echo '<script>alert("The old password is not correct.");document.location=\'?do=changepasswd\';</script>'; exit; }
45034273 1107 // Save new password
684e662a 1108 // Salt renders rainbow-tables attacks useless.
da10377b
A
1109 $conf->set('credentials.salt', sha1(uniqid('', true) .'_'. mt_rand()));
1110 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $conf->get('credentials.login') . $conf->get('credentials.salt')));
dd484b90 1111 try {
684e662a 1112 $conf->write(isLoggedIn());
dd484b90
A
1113 }
1114 catch(Exception $e) {
1115 error_log(
1116 'ERROR while writing config file after changing password.' . PHP_EOL .
1117 $e->getMessage()
1118 );
1119
1120 // TODO: do not handle exceptions/errors in JS.
1121 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do=tools\';</script>';
1122 exit;
1123 }
fe16b01e 1124 echo '<script>alert("Your password has been changed.");document.location=\'?do=tools\';</script>';
45034273
SS
1125 exit;
1126 }
1127 else // show the change password form.
1128 {
45034273
SS
1129 $PAGE->renderPage('changepassword');
1130 exit;
1131 }
1132 }
1133
1134 // -------- User wants to change configuration
6fc14d53 1135 if ($targetPage == Router::$PAGE_CONFIGURE)
45034273
SS
1136 {
1137 if (!empty($_POST['title']) )
1138 {
12ff86c9
A
1139 if (!tokenOk($_POST['token'])) {
1140 die('Wrong token.'); // Go away!
1141 }
45034273 1142 $tz = 'UTC';
12ff86c9
A
1143 if (!empty($_POST['continent']) && !empty($_POST['city'])
1144 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1145 ) {
1146 $tz = $_POST['continent'] . '/' . $_POST['city'];
1147 }
da10377b 1148 $conf->set('general.timezone', $tz);
7f179985
A
1149 $conf->set('general.title', escape($_POST['title']));
1150 $conf->set('general.header_link', escape($_POST['titleLink']));
894a3c4b 1151 $conf->set('redirector.url', escape($_POST['redirector']));
da10377b 1152 $conf->set('security.session_protection_disabled', !empty($_POST['disablesessionprotection']));
894a3c4b
A
1153 $conf->set('privacy.default_private_links', !empty($_POST['privateLinkByDefault']));
1154 $conf->set('feed.rss_permalinks', !empty($_POST['enableRssPermalinks']));
1155 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
1156 $conf->set('privacy.hide_public_links', !empty($_POST['hidePublicLinks']));
dd484b90 1157 try {
684e662a 1158 $conf->write(isLoggedIn());
dd484b90
A
1159 }
1160 catch(Exception $e) {
1161 error_log(
1162 'ERROR while writing config file after configuration update.' . PHP_EOL .
1163 $e->getMessage()
1164 );
1165
1166 // TODO: do not handle exceptions/errors in JS.
684e662a 1167 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do=configure\';</script>';
dd484b90
A
1168 exit;
1169 }
684e662a 1170 echo '<script>alert("Configuration was saved.");document.location=\'?do=configure\';</script>';
45034273
SS
1171 exit;
1172 }
1173 else // Show the configuration form.
1174 {
da10377b 1175 $PAGE->assign('title', $conf->get('general.title'));
894a3c4b 1176 $PAGE->assign('redirector', $conf->get('redirector.url'));
da10377b 1177 list($timezone_form, $timezone_js) = generateTimeZoneForm($conf->get('general.timezone'));
d1e2f8e5 1178 $PAGE->assign('timezone_form', $timezone_form);
45034273 1179 $PAGE->assign('timezone_js',$timezone_js);
894a3c4b 1180 $PAGE->assign('private_links_default', $conf->get('privacy.default_private_links', false));
2e193ad3 1181 $PAGE->assign('session_protection_disabled', $conf->get('security.session_protection_disabled', false));
894a3c4b
A
1182 $PAGE->assign('enable_rss_permalinks', $conf->get('feed.rss_permalinks', false));
1183 $PAGE->assign('enable_update_check', $conf->get('updates.check_updates', true));
1184 $PAGE->assign('hide_public_links', $conf->get('privacy.hide_public_links', false));
45034273
SS
1185 $PAGE->renderPage('configure');
1186 exit;
1187 }
1188 }
1189
1190 // -------- User wants to rename a tag or delete it
6fc14d53 1191 if ($targetPage == Router::$PAGE_CHANGETAG)
45034273 1192 {
6a6aa2b9 1193 if (empty($_POST['fromtag']) || (empty($_POST['totag']) && isset($_POST['renametag']))) {
bdd1715b 1194 $PAGE->assign('tags', $LINKSDB->allTags());
45034273
SS
1195 $PAGE->renderPage('changetag');
1196 exit;
1197 }
6a6aa2b9
A
1198
1199 if (!tokenOk($_POST['token'])) {
1200 die('Wrong token.');
1201 }
45034273
SS
1202
1203 // Delete a tag:
6a6aa2b9 1204 if (isset($_POST['deletetag']) && !empty($_POST['fromtag'])) {
528a6f8a 1205 $needle = trim($_POST['fromtag']);
822bffce 1206 // True for case-sensitive tag search.
528a6f8a 1207 $linksToAlter = $LINKSDB->filterSearch(array('searchtags' => $needle), true);
45034273
SS
1208 foreach($linksToAlter as $key=>$value)
1209 {
1210 $tags = explode(' ',trim($value['tags']));
1211 unset($tags[array_search($needle,$tags)]); // Remove tag.
1212 $value['tags']=trim(implode(' ',$tags));
1213 $LINKSDB[$key]=$value;
1214 }
f21abf32 1215 $LINKSDB->save($conf->get('resource.page_cache'));
fe16b01e 1216 echo '<script>alert("Tag was removed from '.count($linksToAlter).' links.");document.location=\'?\';</script>';
45034273
SS
1217 exit;
1218 }
1219
1220 // Rename a tag:
6a6aa2b9 1221 if (isset($_POST['renametag']) && !empty($_POST['fromtag']) && !empty($_POST['totag'])) {
528a6f8a 1222 $needle = trim($_POST['fromtag']);
822bffce 1223 // True for case-sensitive tag search.
528a6f8a 1224 $linksToAlter = $LINKSDB->filterSearch(array('searchtags' => $needle), true);
45034273
SS
1225 foreach($linksToAlter as $key=>$value)
1226 {
1227 $tags = explode(' ',trim($value['tags']));
ad6c27b7 1228 $tags[array_search($needle,$tags)] = trim($_POST['totag']); // Replace tags value.
45034273
SS
1229 $value['tags']=trim(implode(' ',$tags));
1230 $LINKSDB[$key]=$value;
1231 }
f21abf32 1232 $LINKSDB->save($conf->get('resource.page_cache')); // Save to disk.
fe16b01e 1233 echo '<script>alert("Tag was renamed in '.count($linksToAlter).' links.");document.location=\'?searchtags='.urlencode($_POST['totag']).'\';</script>';
45034273
SS
1234 exit;
1235 }
1236 }
1237
ad6c27b7 1238 // -------- User wants to add a link without using the bookmarklet: Show form.
6fc14d53 1239 if ($targetPage == Router::$PAGE_ADDLINK)
45034273 1240 {
45034273
SS
1241 $PAGE->renderPage('addlink');
1242 exit;
1243 }
1244
1245 // -------- User clicked the "Save" button when editing a link: Save link to database.
1246 if (isset($_POST['save_edit']))
1247 {
9646b7da
A
1248 $linkdate = $_POST['lf_linkdate'];
1249 $updated = isset($LINKSDB[$linkdate]) ? strval(date('Ymd_His')) : false;
1250
5a23950c
A
1251 // Go away!
1252 if (! tokenOk($_POST['token'])) {
1253 die('Wrong token.');
1254 }
1255 // Remove multiple spaces.
1256 $tags = trim(preg_replace('/\s\s+/', ' ', $_POST['lf_tags']));
ce354bf1
A
1257 // Remove first '-' char in tags.
1258 $tags = preg_replace('/(^| )\-/', '$1', $tags);
5a23950c
A
1259 // Remove duplicates.
1260 $tags = implode(' ', array_unique(explode(' ', $tags)));
9646b7da 1261
feebc6d4 1262 $url = trim($_POST['lf_url']);
5a23950c
A
1263 if (! startsWith($url, 'http:') && ! startsWith($url, 'https:')
1264 && ! startsWith($url, 'ftp:') && ! startsWith($url, 'magnet:')
1265 && ! startsWith($url, '?') && ! startsWith($url, 'javascript:')
1266 ) {
1267 $url = 'http://' . $url;
1268 }
1269
1270 $link = array(
1271 'title' => trim($_POST['lf_title']),
1272 'url' => $url,
ed853da7 1273 'description' => $_POST['lf_description'],
5a23950c
A
1274 'private' => (isset($_POST['lf_private']) ? 1 : 0),
1275 'linkdate' => $linkdate,
9646b7da 1276 'updated' => $updated,
5a23950c
A
1277 'tags' => str_replace(',', ' ', $tags)
1278 );
1279 // If title is empty, use the URL as title.
1280 if ($link['title'] == '') {
1281 $link['title'] = $link['url'];
1282 }
6fc14d53
A
1283
1284 $pluginManager->executeHooks('save_link', $link);
1285
45034273 1286 $LINKSDB[$linkdate] = $link;
f21abf32 1287 $LINKSDB->save($conf->get('resource.page_cache'));
278d9ee2 1288 pubsubhub($conf);
45034273
SS
1289
1290 // If we are called from the bookmarklet, we must close the popup:
d01c2342
A
1291 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) {
1292 echo '<script>self.close();</script>';
1293 exit;
1294 }
1295
fd50e14c 1296 $returnurl = !empty($_POST['returnurl']) ? $_POST['returnurl'] : '?';
775803a0 1297 $location = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
5a23950c
A
1298 // Scroll to the link which has been edited.
1299 $location .= '#' . smallHash($_POST['lf_linkdate']);
1300 // After saving the link, redirect to the page the user was on.
1301 header('Location: '. $location);
45034273
SS
1302 exit;
1303 }
1304
1305 // -------- User clicked the "Cancel" button when editing a link.
1306 if (isset($_POST['cancel_edit']))
1307 {
ad6c27b7 1308 // If we are called from the bookmarklet, we must close the popup:
d33c5d4c 1309 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) { echo '<script>self.close();</script>'; exit; }
45034273 1310 $returnurl = ( isset($_POST['returnurl']) ? $_POST['returnurl'] : '?' );
b342b2a4 1311 $returnurl .= '#'.smallHash($_POST['lf_linkdate']); // Scroll to the link which has been edited.
775803a0 1312 $returnurl = generateLocation($returnurl, $_SERVER['HTTP_HOST'], array('addlink', 'post', 'edit_link'));
45034273
SS
1313 header('Location: '.$returnurl); // After canceling, redirect to the page the user was on.
1314 exit;
1315 }
1316
ad6c27b7 1317 // -------- User clicked the "Delete" button when editing a link: Delete link from database.
45034273
SS
1318 if (isset($_POST['delete_link']))
1319 {
1320 if (!tokenOk($_POST['token'])) die('Wrong token.');
1321 // We do not need to ask for confirmation:
ad6c27b7 1322 // - confirmation is handled by JavaScript
45034273
SS
1323 // - we are protected from XSRF by the token.
1324 $linkdate=$_POST['lf_linkdate'];
6fc14d53
A
1325
1326 $pluginManager->executeHooks('delete_link', $LINKSDB[$linkdate]);
1327
45034273 1328 unset($LINKSDB[$linkdate]);
f21abf32 1329 $LINKSDB->save('resource.page_cache'); // save to disk
45034273
SS
1330
1331 // If we are called from the bookmarklet, we must close the popup:
d33c5d4c 1332 if (isset($_GET['source']) && ($_GET['source']=='bookmarklet' || $_GET['source']=='firefoxsocialapi')) { echo '<script>self.close();</script>'; exit; }
d528433d 1333 // Pick where we're going to redirect
1334 // =============================================================
1335 // Basically, we can't redirect to where we were previously if it was a permalink
1336 // or an edit_link, because it would 404.
1337 // Cases:
1338 // - / : nothing in $_GET, redirect to self
1339 // - /?page : redirect to self
d33c5d4c 1340 // - /?searchterm : redirect to self (there might be other links)
d528433d 1341 // - /?searchtags : redirect to self
1342 // - /permalink : redirect to / (the link does not exist anymore)
1343 // - /?edit_link : redirect to / (the link does not exist anymore)
1344 // PHP treats the permalink as a $_GET variable, so we need to check if every condition for self
1345 // redirect is not satisfied, and only then redirect to /
1346 $location = "?";
1347 // Self redirection
775803a0
A
1348 if (count($_GET) == 0
1349 || isset($_GET['page'])
1350 || isset($_GET['searchterm'])
1351 || isset($_GET['searchtags'])
1352 ) {
d528433d 1353 if (isset($_POST['returnurl'])) {
1354 $location = $_POST['returnurl']; // Handle redirects given by the form
775803a0
A
1355 } else {
1356 $location = generateLocation($_SERVER['HTTP_REFERER'], $_SERVER['HTTP_HOST'], array('delete_link'));
d528433d 1357 }
1358 }
1359
1360 header('Location: ' . $location); // After deleting the link, redirect to appropriate location
45034273
SS
1361 exit;
1362 }
1363
1364 // -------- User clicked the "EDIT" button on a link: Display link edit form.
1365 if (isset($_GET['edit_link']))
1366 {
1367 $link = $LINKSDB[$_GET['edit_link']]; // Read database
1368 if (!$link) { header('Location: ?'); exit; } // Link not found in database.
6fc14d53 1369 $data = array(
6fc14d53
A
1370 'link' => $link,
1371 'link_is_new' => false,
6fc14d53
A
1372 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
1373 'tags' => $LINKSDB->allTags(),
1374 );
1375 $pluginManager->executeHooks('render_editlink', $data);
1376
1377 foreach ($data as $key => $value) {
1378 $PAGE->assign($key, $value);
1379 }
1380
45034273
SS
1381 $PAGE->renderPage('editlink');
1382 exit;
1383 }
1384
1385 // -------- User want to post a new link: Display link edit form.
d9d776af 1386 if (isset($_GET['post'])) {
ce7b0b64 1387 $url = cleanup_url($_GET['post']);
45034273
SS
1388
1389 $link_is_new = false;
9e1724f1 1390 // Check if URL is not already in database (in this case, we will edit the existing link)
ef591e7e 1391 $link = $LINKSDB->getLinkFromUrl($url);
45034273
SS
1392 if (!$link)
1393 {
9e1724f1 1394 $link_is_new = true;
45034273 1395 $linkdate = strval(date('Ymd_His'));
9e1724f1 1396 // Get title if it was provided in URL (by the bookmarklet).
739dc243 1397 $title = empty($_GET['title']) ? '' : escape($_GET['title']);
9e1724f1 1398 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that]
739dc243
A
1399 $description = empty($_GET['description']) ? '' : escape($_GET['description']);
1400 $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']);
1401 $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0;
26c50346 1402 // If this is an HTTP(S) link, we try go get the page to extract the title (otherwise we will to straight to the edit form.)
ef591e7e 1403 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) {
451314eb 1404 // Short timeout to keep the application responsive
1557cefb 1405 list($headers, $content) = get_http_response($url, 4);
451314eb 1406 if (strpos($headers[0], '200 OK') !== false) {
1557cefb
A
1407 // Retrieve charset.
1408 $charset = get_charset($headers, $content);
1409 // Extract title.
1410 $title = html_extract_title($content);
1411 // Re-encode title in utf-8 if necessary.
ce7b0b64
A
1412 if (! empty($title) && strtolower($charset) != 'utf-8') {
1413 $title = mb_convert_encoding($title, 'utf-8', $charset);
9e1724f1
A
1414 }
1415 }
45034273 1416 }
1557cefb 1417
9e1724f1
A
1418 if ($url == '') {
1419 $url = '?' . smallHash($linkdate);
1420 $title = 'Note: ';
27646ca5 1421 }
ce7b0b64
A
1422 $url = escape($url);
1423 $title = escape($title);
1557cefb 1424
9e1724f1
A
1425 $link = array(
1426 'linkdate' => $linkdate,
1427 'title' => $title,
ef591e7e 1428 'url' => $url,
9e1724f1
A
1429 'description' => $description,
1430 'tags' => $tags,
1431 'private' => $private
1432 );
45034273
SS
1433 }
1434
6fc14d53 1435 $data = array(
6fc14d53
A
1436 'link' => $link,
1437 'link_is_new' => $link_is_new,
6fc14d53
A
1438 'http_referer' => (isset($_SERVER['HTTP_REFERER']) ? escape($_SERVER['HTTP_REFERER']) : ''),
1439 'source' => (isset($_GET['source']) ? $_GET['source'] : ''),
1440 'tags' => $LINKSDB->allTags(),
cdbc8180 1441 'default_private_links' => $conf->get('privacy.default_private_links', false),
6fc14d53
A
1442 );
1443 $pluginManager->executeHooks('render_editlink', $data);
1444
1445 foreach ($data as $key => $value) {
1446 $PAGE->assign($key, $value);
1447 }
1448
45034273
SS
1449 $PAGE->renderPage('editlink');
1450 exit;
1451 }
1452
cd5327be 1453 if ($targetPage == Router::$PAGE_EXPORT) {
bb4a23aa
V
1454 // Export links as a Netscape Bookmarks file
1455
cd5327be 1456 if (empty($_GET['selection'])) {
45034273
SS
1457 $PAGE->renderPage('export');
1458 exit;
1459 }
45034273 1460
cd5327be
V
1461 // export as bookmarks_(all|private|public)_YYYYmmdd_HHMMSS.html
1462 $selection = $_GET['selection'];
bb4a23aa
V
1463 if (isset($_GET['prepend_note_url'])) {
1464 $prependNoteUrl = $_GET['prepend_note_url'];
1465 } else {
1466 $prependNoteUrl = false;
1467 }
1468
cd5327be
V
1469 try {
1470 $PAGE->assign(
1471 'links',
bb4a23aa
V
1472 NetscapeBookmarkUtils::filterAndFormat(
1473 $LINKSDB,
1474 $selection,
1475 $prependNoteUrl,
1476 index_url($_SERVER)
1477 )
cd5327be
V
1478 );
1479 } catch (Exception $exc) {
1480 header('Content-Type: text/plain; charset=utf-8');
1481 echo $exc->getMessage();
1482 exit;
45034273 1483 }
cd5327be
V
1484 $now = new DateTime();
1485 header('Content-Type: text/html; charset=utf-8');
1486 header(
1487 'Content-disposition: attachment; filename=bookmarks_'
1488 .$selection.'_'.$now->format(LinkDB::LINK_DATE_FORMAT).'.html'
1489 );
1490 $PAGE->assign('date', $now->format(DateTime::RFC822));
1491 $PAGE->assign('eol', PHP_EOL);
1492 $PAGE->assign('selection', $selection);
1493 $PAGE->renderPage('export.bookmarks');
1494 exit;
45034273
SS
1495 }
1496
a973afea
V
1497 if ($targetPage == Router::$PAGE_IMPORT) {
1498 // Upload a Netscape bookmark dump to import its contents
1499
1500 if (! isset($_POST['token']) || ! isset($_FILES['filetoupload'])) {
1501 // Show import dialog
1502 $PAGE->assign('maxfilesize', getMaxFileSize());
1503 $PAGE->renderPage('import');
45034273
SS
1504 exit;
1505 }
45034273 1506
a973afea
V
1507 // Import bookmarks from an uploaded file
1508 if (isset($_FILES['filetoupload']['size']) && $_FILES['filetoupload']['size'] == 0) {
1509 // The file is too big or some form field may be missing.
1510 echo '<script>alert("The file you are trying to upload is probably'
1511 .' bigger than what this webserver can accept ('
1512 .getMaxFileSize().' bytes).'
1513 .' Please upload in smaller chunks.");document.location=\'?do='
1514 .Router::$PAGE_IMPORT .'\';</script>';
1515 exit;
1516 }
1517 if (! tokenOk($_POST['token'])) {
1518 die('Wrong token.');
1519 }
1520 $status = NetscapeBookmarkUtils::import(
1521 $_POST,
1522 $_FILES,
1523 $LINKSDB,
1524 $conf->get('resource.page_cache')
1525 );
1526 echo '<script>alert("'.$status.'");document.location=\'?do='
1527 .Router::$PAGE_IMPORT .'\';</script>';
45034273
SS
1528 exit;
1529 }
1530
dea0ba28
A
1531 // Plugin administration page
1532 if ($targetPage == Router::$PAGE_PLUGINSADMIN) {
1533 $pluginMeta = $pluginManager->getPluginsMeta();
1534
1535 // Split plugins into 2 arrays: ordered enabled plugins and disabled.
1536 $enabledPlugins = array_filter($pluginMeta, function($v) { return $v['order'] !== false; });
1537 // Load parameters.
684e662a 1538 $enabledPlugins = load_plugin_parameter_values($enabledPlugins, $conf->get('plugins', array()));
dea0ba28
A
1539 uasort(
1540 $enabledPlugins,
1541 function($a, $b) { return $a['order'] - $b['order']; }
1542 );
1543 $disabledPlugins = array_filter($pluginMeta, function($v) { return $v['order'] === false; });
1544
1545 $PAGE->assign('enabledPlugins', $enabledPlugins);
1546 $PAGE->assign('disabledPlugins', $disabledPlugins);
1547 $PAGE->renderPage('pluginsadmin');
1548 exit;
1549 }
1550
1551 // Plugin administration form action
1552 if ($targetPage == Router::$PAGE_SAVE_PLUGINSADMIN) {
1553 try {
1554 if (isset($_POST['parameters_form'])) {
1555 unset($_POST['parameters_form']);
1556 foreach ($_POST as $param => $value) {
684e662a 1557 $conf->set('plugins.'. $param, escape($value));
dea0ba28
A
1558 }
1559 }
1560 else {
da10377b 1561 $conf->set('general.enabled_plugins', save_plugin_config($_POST));
dea0ba28 1562 }
684e662a 1563 $conf->write(isLoggedIn());
dea0ba28
A
1564 }
1565 catch (Exception $e) {
1566 error_log(
1567 'ERROR while saving plugin configuration:.' . PHP_EOL .
1568 $e->getMessage()
1569 );
1570
1571 // TODO: do not handle exceptions/errors in JS.
59edea42 1572 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?do='. Router::$PAGE_PLUGINSADMIN .'\';</script>';
dea0ba28
A
1573 exit;
1574 }
1575 header('Location: ?do='. Router::$PAGE_PLUGINSADMIN);
1576 exit;
1577 }
1578
45034273 1579 // -------- Otherwise, simply display search form and links:
278d9ee2 1580 showLinkList($PAGE, $LINKSDB, $conf, $pluginManager);
45034273
SS
1581 exit;
1582}
1583
528a6f8a
A
1584/**
1585 * Template for the list of links (<div id="linklist">)
1586 * This function fills all the necessary fields in the $PAGE for the template 'linklist.html'
1587 *
278d9ee2
A
1588 * @param pageBuilder $PAGE pageBuilder instance.
1589 * @param LinkDB $LINKSDB LinkDB instance.
1590 * @param ConfigManager $conf Configuration Manager instance.
1591 * @param PluginManager $pluginManager Plugin Manager instance.
528a6f8a 1592 */
278d9ee2 1593function buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager)
45034273 1594{
528a6f8a 1595 // Used in templates
c51fae92 1596 $searchtags = !empty($_GET['searchtags']) ? escape($_GET['searchtags']) : '';
528a6f8a 1597 $searchterm = !empty($_GET['searchterm']) ? escape($_GET['searchterm']) : '';
822bffce 1598
528a6f8a
A
1599 // Smallhash filter
1600 if (! empty($_SERVER['QUERY_STRING'])
1601 && preg_match('/^[a-zA-Z0-9-_@]{6}($|&|#)/', $_SERVER['QUERY_STRING'])) {
1602 try {
1603 $linksToDisplay = $LINKSDB->filterHash($_SERVER['QUERY_STRING']);
1604 } catch (LinkNotFoundException $e) {
1605 $PAGE->render404($e->getMessage());
45034273
SS
1606 exit;
1607 }
528a6f8a
A
1608 } else {
1609 // Filter links according search parameters.
1610 $privateonly = !empty($_SESSION['privateonly']);
1611 $linksToDisplay = $LINKSDB->filterSearch($_GET, false, $privateonly);
45034273
SS
1612 }
1613
1614 // ---- Handle paging.
822bffce
A
1615 $keys = array();
1616 foreach ($linksToDisplay as $key => $value) {
1617 $keys[] = $key;
1618 }
45034273 1619
97ef33bb 1620
45034273
SS
1621
1622 // Select articles according to paging.
822bffce
A
1623 $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']);
1624 $pagecount = $pagecount == 0 ? 1 : $pagecount;
1625 $page= empty($_GET['page']) ? 1 : intval($_GET['page']);
1626 $page = $page < 1 ? 1 : $page;
1627 $page = $page > $pagecount ? $pagecount : $page;
1628 // Start index.
1629 $i = ($page-1) * $_SESSION['LINKS_PER_PAGE'];
1630 $end = $i + $_SESSION['LINKS_PER_PAGE'];
1631 $linkDisp = array();
45034273
SS
1632 while ($i<$end && $i<count($keys))
1633 {
1634 $link = $linksToDisplay[$keys[$i]];
894a3c4b 1635 $link['description'] = format_description($link['description'], $conf->get('redirector.url'));
822bffce
A
1636 $classLi = ($i % 2) != 0 ? '' : 'publicLinkHightLight';
1637 $link['class'] = $link['private'] == 0 ? $classLi : 'private';
205a4277
V
1638 $date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $link['linkdate']);
1639 $link['timestamp'] = $date->getTimestamp();
9646b7da
A
1640 if (! empty($link['updated'])) {
1641 $date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $link['updated']);
1642 $link['updated_timestamp'] = $date->getTimestamp();
1643 } else {
1644 $link['updated_timestamp'] = '';
1645 }
822bffce 1646 $taglist = explode(' ', $link['tags']);
a5752e77 1647 uasort($taglist, 'strcasecmp');
822bffce 1648 $link['taglist'] = $taglist;
6fc14d53 1649 $link['shorturl'] = smallHash($link['linkdate']);
822bffce
A
1650 // Check for both signs of a note: starting with ? and 7 chars long.
1651 if ($link['url'][0] === '?' &&
1652 strlen($link['url']) === 7) {
1653 $link['url'] = index_url($_SERVER) . $link['url'];
b47f515a 1654 }
d33c5d4c 1655
45034273
SS
1656 $linkDisp[$keys[$i]] = $link;
1657 $i++;
1658 }
bb8f712d 1659
45034273 1660 // Compute paging navigation
c51fae92
A
1661 $searchtagsUrl = empty($searchtags) ? '' : '&searchtags=' . urlencode($searchtags);
1662 $searchtermUrl = empty($searchterm) ? '' : '&searchterm=' . urlencode($searchterm);
822bffce
A
1663 $previous_page_url = '';
1664 if ($i != count($keys)) {
c51fae92 1665 $previous_page_url = '?page=' . ($page+1) . $searchtermUrl . $searchtagsUrl;
822bffce
A
1666 }
1667 $next_page_url='';
1668 if ($page>1) {
c51fae92 1669 $next_page_url = '?page=' . ($page-1) . $searchtermUrl . $searchtagsUrl;
822bffce 1670 }
45034273 1671
45034273 1672 // Fill all template fields.
6fc14d53 1673 $data = array(
6fc14d53
A
1674 'previous_page_url' => $previous_page_url,
1675 'next_page_url' => $next_page_url,
1676 'page_current' => $page,
1677 'page_max' => $pagecount,
1678 'result_count' => count($linksToDisplay),
c51fae92
A
1679 'search_term' => $searchterm,
1680 'search_tags' => $searchtags,
894a3c4b 1681 'redirector' => $conf->get('redirector.url'), // Optional redirector URL.
6fc14d53
A
1682 'links' => $linkDisp,
1683 'tags' => $LINKSDB->allTags(),
1684 );
97ef33bb
A
1685
1686 // If there is only a single link, we change on-the-fly the title of the page.
1687 if (count($linksToDisplay) == 1) {
1688 $data['pagetitle'] = $linksToDisplay[$keys[0]]['title'] .' - '. $conf->get('general.title');
18cca483 1689 }
6fc14d53 1690
6fc14d53
A
1691 $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => isLoggedIn()));
1692
1693 foreach ($data as $key => $value) {
1694 $PAGE->assign($key, $value);
1695 }
1696
45034273
SS
1697 return;
1698}
1699
278d9ee2
A
1700/**
1701 * Compute the thumbnail for a link.
1702 *
1703 * With a link to the original URL.
1704 * Understands various services (youtube.com...)
1705 * Input: $url = URL for which the thumbnail must be found.
1706 * $href = if provided, this URL will be followed instead of $url
1707 * Returns an associative array with thumbnail attributes (src,href,width,height,style,alt)
1708 * Some of them may be missing.
1709 * Return an empty array if no thumbnail available.
1710 *
1711 * @param ConfigManager $conf Configuration Manager instance.
1712 * @param string $url
1713 * @param string|bool $href
1714 *
1715 * @return array
1716 */
1717function computeThumbnail($conf, $url, $href = false)
45034273 1718{
894a3c4b 1719 if (!$conf->get('thumbnail.enable_thumbnails')) return array();
45034273
SS
1720 if ($href==false) $href=$url;
1721
1722 // For most hosts, the URL of the thumbnail can be easily deduced from the URL of the link.
ad6c27b7 1723 // (e.g. http://www.youtube.com/watch?v=spVypYk4kto ---> http://img.youtube.com/vi/spVypYk4kto/default.jpg )
45034273
SS
1724 // ^^^^^^^^^^^ ^^^^^^^^^^^
1725 $domain = parse_url($url,PHP_URL_HOST);
1726 if ($domain=='youtube.com' || $domain=='www.youtube.com')
1727 {
1728 parse_str(parse_url($url,PHP_URL_QUERY), $params); // Extract video ID and get thumbnail
1a663a0f 1729 if (!empty($params['v'])) return array('src'=>'https://img.youtube.com/vi/'.$params['v'].'/default.jpg',
45034273
SS
1730 'href'=>$href,'width'=>'120','height'=>'90','alt'=>'YouTube thumbnail');
1731 }
1732 if ($domain=='youtu.be') // Youtube short links
1733 {
1734 $path = parse_url($url,PHP_URL_PATH);
1a663a0f 1735 return array('src'=>'https://img.youtube.com/vi'.$path.'/default.jpg',
bb8f712d 1736 'href'=>$href,'width'=>'120','height'=>'90','alt'=>'YouTube thumbnail');
45034273
SS
1737 }
1738 if ($domain=='pix.toile-libre.org') // pix.toile-libre.org image hosting
1739 {
1740 parse_str(parse_url($url,PHP_URL_QUERY), $params); // Extract image filename.
1741 if (!empty($params) && !empty($params['img'])) return array('src'=>'http://pix.toile-libre.org/upload/thumb/'.urlencode($params['img']),
bb8f712d
KT
1742 'href'=>$href,'style'=>'max-width:120px; max-height:150px','alt'=>'pix.toile-libre.org thumbnail');
1743 }
1744
45034273
SS
1745 if ($domain=='imgur.com')
1746 {
1747 $path = parse_url($url,PHP_URL_PATH);
1748 if (startsWith($path,'/a/')) return array(); // Thumbnails for albums are not available.
1a663a0f 1749 if (startsWith($path,'/r/')) return array('src'=>'https://i.imgur.com/'.basename($path).'s.jpg',
45034273 1750 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1a663a0f 1751 if (startsWith($path,'/gallery/')) return array('src'=>'https://i.imgur.com'.substr($path,8).'s.jpg',
45034273
SS
1752 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1753
1a663a0f 1754 if (substr_count($path,'/')==1) return array('src'=>'https://i.imgur.com/'.substr($path,1).'s.jpg',
45034273
SS
1755 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1756 }
1757 if ($domain=='i.imgur.com')
1758 {
1759 $pi = pathinfo(parse_url($url,PHP_URL_PATH));
1a663a0f 1760 if (!empty($pi['filename'])) return array('src'=>'https://i.imgur.com/'.$pi['filename'].'s.jpg',
45034273
SS
1761 'href'=>$href,'width'=>'90','height'=>'90','alt'=>'imgur.com thumbnail');
1762 }
1763 if ($domain=='dailymotion.com' || $domain=='www.dailymotion.com')
1764 {
1765 if (strpos($url,'dailymotion.com/video/')!==false)
1766 {
1767 $thumburl=str_replace('dailymotion.com/video/','dailymotion.com/thumbnail/video/',$url);
1768 return array('src'=>$thumburl,
1769 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'DailyMotion thumbnail');
1770 }
1771 }
1772 if (endsWith($domain,'.imageshack.us'))
1773 {
1774 $ext=strtolower(pathinfo($url,PATHINFO_EXTENSION));
1775 if ($ext=='jpg' || $ext=='jpeg' || $ext=='png' || $ext=='gif')
1776 {
1777 $thumburl = substr($url,0,strlen($url)-strlen($ext)).'th.'.$ext;
1778 return array('src'=>$thumburl,
1779 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'imageshack.us thumbnail');
1780 }
1781 }
1782
1783 // Some other hosts are SLOW AS HELL and usually require an extra HTTP request to get the thumbnail URL.
1784 // So we deport the thumbnail generation in order not to slow down page generation
1785 // (and we also cache the thumbnail)
1786
894a3c4b 1787 if (! $conf->get('thumbnail.enable_localcache')) return array(); // If local cache is disabled, no thumbnails for services which require the use a local cache.
45034273
SS
1788
1789 if ($domain=='flickr.com' || endsWith($domain,'.flickr.com')
1790 || $domain=='vimeo.com'
1791 || $domain=='ted.com' || endsWith($domain,'.ted.com')
1792 || $domain=='xkcd.com' || endsWith($domain,'.xkcd.com')
1793 )
1794 {
1795 if ($domain=='vimeo.com')
ad6c27b7 1796 { // Make sure this vimeo URL points to a video (/xxx... where xxx is numeric)
45034273
SS
1797 $path = parse_url($url,PHP_URL_PATH);
1798 if (!preg_match('!/\d+.+?!',$path)) return array(); // This is not a single video URL.
1799 }
1800 if ($domain=='xkcd.com' || endsWith($domain,'.xkcd.com'))
ad6c27b7 1801 { // Make sure this URL points to a single comic (/xxx... where xxx is numeric)
45034273
SS
1802 $path = parse_url($url,PHP_URL_PATH);
1803 if (!preg_match('!/\d+.+?!',$path)) return array();
1804 }
1805 if ($domain=='ted.com' || endsWith($domain,'.ted.com'))
ad6c27b7 1806 { // Make sure this TED URL points to a video (/talks/...)
45034273
SS
1807 $path = parse_url($url,PHP_URL_PATH);
1808 if ("/talks/" !== substr($path,0,7)) return array(); // This is not a single video URL.
1809 }
da10377b 1810 $sign = hash_hmac('sha256', $url, $conf->get('credentials.salt')); // We use the salt to sign data (it's random, secret, and specific to each installation)
482d67bd 1811 return array('src'=>index_url($_SERVER).'?do=genthumbnail&hmac='.$sign.'&url='.urlencode($url),
45034273
SS
1812 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'thumbnail');
1813 }
1814
1815 // For all other, we try to make a thumbnail of links ending with .jpg/jpeg/png/gif
1816 // Technically speaking, we should download ALL links and check their Content-Type to see if they are images.
1817 // But using the extension will do.
1818 $ext=strtolower(pathinfo($url,PATHINFO_EXTENSION));
1819 if ($ext=='jpg' || $ext=='jpeg' || $ext=='png' || $ext=='gif')
1820 {
da10377b 1821 $sign = hash_hmac('sha256', $url, $conf->get('credentials.salt')); // We use the salt to sign data (it's random, secret, and specific to each installation)
482d67bd 1822 return array('src'=>index_url($_SERVER).'?do=genthumbnail&hmac='.$sign.'&url='.urlencode($url),
bb8f712d 1823 'href'=>$href,'width'=>'120','style'=>'height:auto;','alt'=>'thumbnail');
45034273
SS
1824 }
1825 return array(); // No thumbnail.
1826
1827}
1828
1829
1830// Returns the HTML code to display a thumbnail for a link
1831// with a link to the original URL.
1832// Understands various services (youtube.com...)
ad6c27b7 1833// Input: $url = URL for which the thumbnail must be found.
45034273
SS
1834// $href = if provided, this URL will be followed instead of $url
1835// Returns '' if no thumbnail available.
1836function thumbnail($url,$href=false)
1837{
278d9ee2
A
1838 // FIXME!
1839 global $conf;
1840 $t = computeThumbnail($conf, $url,$href);
45034273 1841 if (count($t)==0) return ''; // Empty array = no thumbnail for this URL.
bb8f712d 1842
5f85fcd8
A
1843 $html='<a href="'.escape($t['href']).'"><img src="'.escape($t['src']).'"';
1844 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1845 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1846 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1847 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
45034273
SS
1848 $html.='></a>';
1849 return $html;
1850}
1851
45034273
SS
1852// Returns the HTML code to display a thumbnail for a link
1853// for the picture wall (using lazy image loading)
1854// Understands various services (youtube.com...)
ad6c27b7 1855// Input: $url = URL for which the thumbnail must be found.
45034273
SS
1856// $href = if provided, this URL will be followed instead of $url
1857// Returns '' if no thumbnail available.
278d9ee2 1858function lazyThumbnail($conf, $url,$href=false)
45034273 1859{
278d9ee2
A
1860 // FIXME!
1861 global $conf;
1862 $t = computeThumbnail($conf, $url,$href);
45034273
SS
1863 if (count($t)==0) return ''; // Empty array = no thumbnail for this URL.
1864
5f85fcd8 1865 $html='<a href="'.escape($t['href']).'">';
bb8f712d 1866
34047d23 1867 // Lazy image
5f85fcd8 1868 $html.='<img class="b-lazy" src="#" data-src="'.escape($t['src']).'"';
858c5c2b 1869
5f85fcd8
A
1870 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1871 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1872 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1873 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
45034273 1874 $html.='>';
bb8f712d 1875
ad6c27b7 1876 // No-JavaScript fallback.
5f85fcd8
A
1877 $html.='<noscript><img src="'.escape($t['src']).'"';
1878 if (!empty($t['width'])) $html.=' width="'.escape($t['width']).'"';
1879 if (!empty($t['height'])) $html.=' height="'.escape($t['height']).'"';
1880 if (!empty($t['style'])) $html.=' style="'.escape($t['style']).'"';
1881 if (!empty($t['alt'])) $html.=' alt="'.escape($t['alt']).'"';
45034273 1882 $html.='></noscript></a>';
bb8f712d 1883
45034273
SS
1884 return $html;
1885}
1886
1887
278d9ee2
A
1888/**
1889 * Installation
1890 * This function should NEVER be called if the file data/config.php exists.
1891 *
1892 * @param ConfigManager $conf Configuration Manager instance.
1893 */
1894function install($conf)
45034273
SS
1895{
1896 // On free.fr host, make sure the /sessions directory exists, otherwise login will not work.
f6a6ca0a 1897 if (endsWith($_SERVER['HTTP_HOST'],'.free.fr') && !is_dir($_SERVER['DOCUMENT_ROOT'].'/sessions')) mkdir($_SERVER['DOCUMENT_ROOT'].'/sessions',0705);
45034273 1898
f37664a2
SS
1899
1900 // This part makes sure sessions works correctly.
1901 // (Because on some hosts, session.save_path may not be set correctly,
1902 // or we may not have write access to it.)
1903 if (isset($_GET['test_session']) && ( !isset($_SESSION) || !isset($_SESSION['session_tested']) || $_SESSION['session_tested']!='Working'))
1904 { // Step 2: Check if data in session is correct.
1905 echo '<pre>Sessions do not seem to work correctly on your server.<br>';
1906 echo 'Make sure the variable session.save_path is set correctly in your php config, and that you have write access to it.<br>';
01ec1791 1907 echo 'It currently points to '.session_save_path().'<br>';
1908 echo 'Check that the hostname used to access Shaarli contains a dot. On some browsers, accessing your server via a hostname like \'localhost\' or any custom hostname without a dot causes cookie storage to fail. We recommend accessing your server via it\'s IP address or Fully Qualified Domain Name.<br>';
1909 echo '<br><a href="?">Click to try again.</a></pre>';
f37664a2
SS
1910 die;
1911 }
1912 if (!isset($_SESSION['session_tested']))
1913 { // Step 1 : Try to store data in session and reload page.
1914 $_SESSION['session_tested'] = 'Working'; // Try to set a variable in session.
482d67bd 1915 header('Location: '.index_url($_SERVER).'?test_session'); // Redirect to check stored data.
f37664a2
SS
1916 }
1917 if (isset($_GET['test_session']))
ad6c27b7 1918 { // Step 3: Sessions are OK. Remove test parameter from URL.
482d67bd 1919 header('Location: '.index_url($_SERVER));
f37664a2
SS
1920 }
1921
1922
45034273
SS
1923 if (!empty($_POST['setlogin']) && !empty($_POST['setpassword']))
1924 {
1925 $tz = 'UTC';
12ff86c9
A
1926 if (!empty($_POST['continent']) && !empty($_POST['city'])
1927 && isTimeZoneValid($_POST['continent'], $_POST['city'])
1928 ) {
1929 $tz = $_POST['continent'].'/'.$_POST['city'];
d1e2f8e5 1930 }
da10377b 1931 $conf->set('general.timezone', $tz);
684e662a 1932 $login = $_POST['setlogin'];
da10377b 1933 $conf->set('credentials.login', $login);
684e662a 1934 $salt = sha1(uniqid('', true) .'_'. mt_rand());
da10377b
A
1935 $conf->set('credentials.salt', $salt);
1936 $conf->set('credentials.hash', sha1($_POST['setpassword'] . $login . $salt));
684e662a 1937 if (!empty($_POST['title'])) {
7f179985 1938 $conf->set('general.title', escape($_POST['title']));
684e662a 1939 } else {
da10377b 1940 $conf->set('general.title', 'Shared links on '.escape(index_url($_SERVER)));
684e662a 1941 }
894a3c4b 1942 $conf->set('updates.check_updates', !empty($_POST['updateCheck']));
dd484b90 1943 try {
684e662a
A
1944 // Everything is ok, let's create config file.
1945 $conf->write(isLoggedIn());
dd484b90
A
1946 }
1947 catch(Exception $e) {
1948 error_log(
1949 'ERROR while writing config file after installation.' . PHP_EOL .
1950 $e->getMessage()
1951 );
1952
1953 // TODO: do not handle exceptions/errors in JS.
1954 echo '<script>alert("'. $e->getMessage() .'");document.location=\'?\';</script>';
1955 exit;
1956 }
fe16b01e 1957 echo '<script>alert("Shaarli is now configured. Please enter your login/password and start shaaring your links!");document.location=\'?do=login\';</script>';
45034273
SS
1958 exit;
1959 }
1960
1961 // Display config form:
d1e2f8e5
V
1962 list($timezone_form, $timezone_js) = generateTimeZoneForm();
1963 $timezone_html = '';
1964 if ($timezone_form != '') {
1965 $timezone_html = '<tr><td><b>Timezone:</b></td><td>'.$timezone_form.'</td></tr>';
1966 }
bb8f712d 1967
278d9ee2 1968 $PAGE = new PageBuilder($conf);
45034273
SS
1969 $PAGE->assign('timezone_html',$timezone_html);
1970 $PAGE->assign('timezone_js',$timezone_js);
1971 $PAGE->renderPage('install');
1972 exit;
1973}
1974
278d9ee2
A
1975/**
1976 * Because some f*cking services like flickr require an extra HTTP request to get the thumbnail URL,
1977 * I have deported the thumbnail URL code generation here, otherwise this would slow down page generation.
1978 * The following function takes the URL a link (e.g. a flickr page) and return the proper thumbnail.
1979 * This function is called by passing the URL:
1980 * http://mywebsite.com/shaarli/?do=genthumbnail&hmac=[HMAC]&url=[URL]
1981 * [URL] is the URL of the link (e.g. a flickr page)
1982 * [HMAC] is the signature for the [URL] (so that these URL cannot be forged).
1983 * The function below will fetch the image from the webservice and store it in the cache.
1984 *
1985 * @param ConfigManager $conf Configuration Manager instance,
1986 */
1987function genThumbnail($conf)
45034273
SS
1988{
1989 // Make sure the parameters in the URL were generated by us.
da10377b 1990 $sign = hash_hmac('sha256', $_GET['url'], $conf->get('credentials.salt'));
ad6c27b7 1991 if ($sign!=$_GET['hmac']) die('Naughty boy!');
45034273 1992
894a3c4b 1993 $cacheDir = $conf->get('resource.thumbnails_cache', 'cache');
45034273
SS
1994 // Let's see if we don't already have the image for this URL in the cache.
1995 $thumbname=hash('sha1',$_GET['url']).'.jpg';
684e662a 1996 if (is_file($cacheDir .'/'. $thumbname))
45034273
SS
1997 { // We have the thumbnail, just serve it:
1998 header('Content-Type: image/jpeg');
684e662a 1999 echo file_get_contents($cacheDir .'/'. $thumbname);
45034273
SS
2000 return;
2001 }
2002 // We may also serve a blank image (if service did not respond)
2003 $blankname=hash('sha1',$_GET['url']).'.gif';
684e662a 2004 if (is_file($cacheDir .'/'. $blankname))
45034273
SS
2005 {
2006 header('Content-Type: image/gif');
684e662a 2007 echo file_get_contents($cacheDir .'/'. $blankname);
45034273
SS
2008 return;
2009 }
2010
2011 // Otherwise, generate the thumbnail.
2012 $url = $_GET['url'];
2013 $domain = parse_url($url,PHP_URL_HOST);
2014
2015 if ($domain=='flickr.com' || endsWith($domain,'.flickr.com'))
2016 {
ad6c27b7 2017 // Crude replacement to handle new flickr domain policy (They prefer www. now)
45034273
SS
2018 $url = str_replace('http://flickr.com/','http://www.flickr.com/',$url);
2019
2020 // Is this a link to an image, or to a flickr page ?
2021 $imageurl='';
5046bcb6 2022 if (endsWith(parse_url($url, PHP_URL_PATH), '.jpg'))
ad6c27b7 2023 { // This is a direct link to an image. e.g. http://farm1.staticflickr.com/5/5921913_ac83ed27bd_o.jpg
45034273
SS
2024 preg_match('!(http://farm\d+\.staticflickr\.com/\d+/\d+_\w+_)\w.jpg!',$url,$matches);
2025 if (!empty($matches[1])) $imageurl=$matches[1].'m.jpg';
2026 }
ad6c27b7 2027 else // This is a flickr page (html)
45034273 2028 {
451314eb 2029 // Get the flickr html page.
1557cefb 2030 list($headers, $content) = get_http_response($url, 20);
451314eb 2031 if (strpos($headers[0], '200 OK') !== false)
45034273 2032 {
ad6c27b7 2033 // flickr now nicely provides the URL of the thumbnail in each flickr page.
1557cefb 2034 preg_match('!<link rel=\"image_src\" href=\"(.+?)\"!', $content, $matches);
45034273
SS
2035 if (!empty($matches[1])) $imageurl=$matches[1];
2036
2037 // In albums (and some other pages), the link rel="image_src" is not provided,
2038 // but flickr provides:
2039 // <meta property="og:image" content="http://farm4.staticflickr.com/3398/3239339068_25d13535ff_z.jpg" />
2040 if ($imageurl=='')
2041 {
1557cefb 2042 preg_match('!<meta property=\"og:image\" content=\"(.+?)\"!', $content, $matches);
45034273
SS
2043 if (!empty($matches[1])) $imageurl=$matches[1];
2044 }
2045 }
2046 }
2047
2048 if ($imageurl!='')
2049 { // Let's download the image.
451314eb 2050 // Image is 240x120, so 10 seconds to download should be enough.
1557cefb 2051 list($headers, $content) = get_http_response($imageurl, 10);
451314eb 2052 if (strpos($headers[0], '200 OK') !== false) {
1557cefb 2053 // Save image to cache.
684e662a 2054 file_put_contents($cacheDir .'/'. $thumbname, $content);
45034273 2055 header('Content-Type: image/jpeg');
1557cefb 2056 echo $content;
45034273
SS
2057 return;
2058 }
2059 }
2060 }
2061
2062 elseif ($domain=='vimeo.com' )
2063 {
2064 // This is more complex: we have to perform a HTTP request, then parse the result.
ad6c27b7 2065 // Maybe we should deport this to JavaScript ? Example: http://stackoverflow.com/questions/1361149/get-img-thumbnails-from-vimeo/4285098#4285098
45034273 2066 $vid = substr(parse_url($url,PHP_URL_PATH),1);
1557cefb 2067 list($headers, $content) = get_http_response('https://vimeo.com/api/v2/video/'.escape($vid).'.php', 5);
451314eb 2068 if (strpos($headers[0], '200 OK') !== false) {
1557cefb 2069 $t = unserialize($content);
45034273
SS
2070 $imageurl = $t[0]['thumbnail_medium'];
2071 // Then we download the image and serve it to our client.
1557cefb 2072 list($headers, $content) = get_http_response($imageurl, 10);
451314eb 2073 if (strpos($headers[0], '200 OK') !== false) {
1557cefb 2074 // Save image to cache.
684e662a 2075 file_put_contents($cacheDir .'/'. $thumbname, $content);
45034273 2076 header('Content-Type: image/jpeg');
1557cefb 2077 echo $content;
45034273
SS
2078 return;
2079 }
2080 }
2081 }
2082
2083 elseif ($domain=='ted.com' || endsWith($domain,'.ted.com'))
2084 {
2085 // The thumbnail for TED talks is located in the <link rel="image_src" [...]> tag on that page
2086 // http://www.ted.com/talks/mikko_hypponen_fighting_viruses_defending_the_net.html
2087 // <link rel="image_src" href="http://images.ted.com/images/ted/28bced335898ba54d4441809c5b1112ffaf36781_389x292.jpg" />
1557cefb 2088 list($headers, $content) = get_http_response($url, 5);
451314eb 2089 if (strpos($headers[0], '200 OK') !== false) {
45034273 2090 // Extract the link to the thumbnail
1557cefb 2091 preg_match('!link rel="image_src" href="(http://images.ted.com/images/ted/.+_\d+x\d+\.jpg)"!', $content, $matches);
45034273
SS
2092 if (!empty($matches[1]))
2093 { // Let's download the image.
2094 $imageurl=$matches[1];
451314eb 2095 // No control on image size, so wait long enough
1557cefb 2096 list($headers, $content) = get_http_response($imageurl, 20);
451314eb 2097 if (strpos($headers[0], '200 OK') !== false) {
684e662a 2098 $filepath = $cacheDir .'/'. $thumbname;
1557cefb 2099 file_put_contents($filepath, $content); // Save image to cache.
45034273
SS
2100 if (resizeImage($filepath))
2101 {
2102 header('Content-Type: image/jpeg');
2103 echo file_get_contents($filepath);
2104 return;
2105 }
2106 }
2107 }
2108 }
2109 }
bb8f712d 2110
45034273
SS
2111 elseif ($domain=='xkcd.com' || endsWith($domain,'.xkcd.com'))
2112 {
2113 // There is no thumbnail available for xkcd comics, so download the whole image and resize it.
2114 // http://xkcd.com/327/
2115 // <img src="http://imgs.xkcd.com/comics/exploits_of_a_mom.png" title="<BLABLA>" alt="<BLABLA>" />
1557cefb 2116 list($headers, $content) = get_http_response($url, 5);
451314eb 2117 if (strpos($headers[0], '200 OK') !== false) {
45034273 2118 // Extract the link to the thumbnail
1557cefb 2119 preg_match('!<img src="(http://imgs.xkcd.com/comics/.*)" title="[^s]!', $content, $matches);
45034273
SS
2120 if (!empty($matches[1]))
2121 { // Let's download the image.
2122 $imageurl=$matches[1];
451314eb 2123 // No control on image size, so wait long enough
1557cefb 2124 list($headers, $content) = get_http_response($imageurl, 20);
451314eb 2125 if (strpos($headers[0], '200 OK') !== false) {
684e662a 2126 $filepath = $cacheDir.'/'.$thumbname;
1557cefb
A
2127 // Save image to cache.
2128 file_put_contents($filepath, $content);
45034273
SS
2129 if (resizeImage($filepath))
2130 {
2131 header('Content-Type: image/jpeg');
2132 echo file_get_contents($filepath);
2133 return;
2134 }
2135 }
2136 }
2137 }
bb8f712d 2138 }
45034273
SS
2139
2140 else
2141 {
2142 // For all other domains, we try to download the image and make a thumbnail.
451314eb 2143 // We allow 30 seconds max to download (and downloads are limited to 4 Mb)
1557cefb 2144 list($headers, $content) = get_http_response($url, 30);
451314eb 2145 if (strpos($headers[0], '200 OK') !== false) {
684e662a 2146 $filepath = $cacheDir .'/'.$thumbname;
1557cefb
A
2147 // Save image to cache.
2148 file_put_contents($filepath, $content);
45034273
SS
2149 if (resizeImage($filepath))
2150 {
2151 header('Content-Type: image/jpeg');
2152 echo file_get_contents($filepath);
2153 return;
2154 }
2155 }
2156 }
2157
2158
2159 // Otherwise, return an empty image (8x8 transparent gif)
2160 $blankgif = base64_decode('R0lGODlhCAAIAIAAAP///////yH5BAEKAAEALAAAAAAIAAgAAAIHjI+py+1dAAA7');
684e662a
A
2161 // Also put something in cache so that this URL is not requested twice.
2162 file_put_contents($cacheDir .'/'. $blankname, $blankgif);
45034273
SS
2163 header('Content-Type: image/gif');
2164 echo $blankgif;
2165}
2166
2167// Make a thumbnail of the image (to width: 120 pixels)
2168// Returns true if success, false otherwise.
2169function resizeImage($filepath)
2170{
2171 if (!function_exists('imagecreatefromjpeg')) return false; // GD not present: no thumbnail possible.
2172
2173 // Trick: some stupid people rename GIF as JPEG... or else.
2174 // So we really try to open each image type whatever the extension is.
2175 $header=file_get_contents($filepath,false,NULL,0,256); // Read first 256 bytes and try to sniff file type.
2176 $im=false;
2177 $i=strpos($header,'GIF8'); if (($i!==false) && ($i==0)) $im = imagecreatefromgif($filepath); // Well this is crude, but it should be enough.
2178 $i=strpos($header,'PNG'); if (($i!==false) && ($i==1)) $im = imagecreatefrompng($filepath);
2179 $i=strpos($header,'JFIF'); if ($i!==false) $im = imagecreatefromjpeg($filepath);
2180 if (!$im) return false; // Unable to open image (corrupted or not an image)
2181 $w = imagesx($im);
2182 $h = imagesy($im);
2183 $ystart = 0; $yheight=$h;
2184 if ($h>$w) { $ystart= ($h/2)-($w/2); $yheight=$w/2; }
2185 $nw = 120; // Desired width
2186 $nh = min(floor(($h*$nw)/$w),120); // Compute new width/height, but maximum 120 pixels height.
2187 // Resize image:
2188 $im2 = imagecreatetruecolor($nw,$nh);
2189 imagecopyresampled($im2, $im, 0, 0, 0, $ystart, $nw, $nh, $w, $yheight);
2190 imageinterlace($im2,true); // For progressive JPEG.
2191 $tempname=$filepath.'_TEMP.jpg';
2192 imagejpeg($im2, $tempname, 90);
2193 imagedestroy($im);
2194 imagedestroy($im2);
9e820906 2195 unlink($filepath);
45034273
SS
2196 rename($tempname,$filepath); // Overwrite original picture with thumbnail.
2197 return true;
2198}
2199
278d9ee2
A
2200if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=genthumbnail')) { genThumbnail($conf); exit; } // Thumbnail generation/cache does not need the link database.
2201if (isset($_SERVER['QUERY_STRING']) && startsWith($_SERVER['QUERY_STRING'], 'do=dailyrss')) { showDailyRSS($conf); exit; }
684e662a 2202if (!isset($_SESSION['LINKS_PER_PAGE'])) {
da10377b 2203 $_SESSION['LINKS_PER_PAGE'] = $conf->get('general.links_per_page', 20);
684e662a 2204}
278d9ee2 2205renderPage($conf, $pluginManager);