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