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