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