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