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