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