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