]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
make URL analyzer save new info on URLs
[quix0rs-gnu-social.git] / lib / util.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /* XXX: break up into separate modules (HTTP, user, files) */
21
22 // Show a server error
23
24 function common_server_error($msg, $code=500)
25 {
26     $err = new ServerErrorAction($msg, $code);
27     $err->showPage();
28 }
29
30 // Show a user error
31 function common_user_error($msg, $code=400)
32 {
33     $err = new ClientErrorAction($msg, $code);
34     $err->showPage();
35 }
36
37 function common_init_locale($language=null)
38 {
39     if(!$language) {
40         $language = common_language();
41     }
42     putenv('LANGUAGE='.$language);
43     putenv('LANG='.$language);
44     return setlocale(LC_ALL, $language . ".utf8",
45                      $language . ".UTF8",
46                      $language . ".utf-8",
47                      $language . ".UTF-8",
48                      $language);
49 }
50
51 function common_init_language()
52 {
53     mb_internal_encoding('UTF-8');
54     $language = common_language();
55     // So we don't have to make people install the gettext locales
56     $locale_set = common_init_locale($language);
57     bindtextdomain("statusnet", common_config('site','locale_path'));
58     bind_textdomain_codeset("statusnet", "UTF-8");
59     textdomain("statusnet");
60     setlocale(LC_CTYPE, 'C');
61     if(!$locale_set) {
62         common_log(LOG_INFO,'Language requested:'.$language.' - locale could not be set:',__FILE__);
63     }
64 }
65
66 function common_timezone()
67 {
68     if (common_logged_in()) {
69         $user = common_current_user();
70         if ($user->timezone) {
71             return $user->timezone;
72         }
73     }
74
75     return common_config('site', 'timezone');
76 }
77
78 function common_language()
79 {
80
81     // If there is a user logged in and they've set a language preference
82     // then return that one...
83     if (_have_config() && common_logged_in()) {
84         $user = common_current_user();
85         $user_language = $user->language;
86         if ($user_language)
87           return $user_language;
88     }
89
90     // Otherwise, find the best match for the languages requested by the
91     // user's browser...
92     $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : null;
93     if (!empty($httplang)) {
94         $language = client_prefered_language($httplang);
95         if ($language)
96           return $language;
97     }
98
99     // Finally, if none of the above worked, use the site's default...
100     return common_config('site', 'language');
101 }
102 // salted, hashed passwords are stored in the DB
103
104 function common_munge_password($password, $id)
105 {
106     return md5($password . $id);
107 }
108
109 // check if a username exists and has matching password
110 function common_check_user($nickname, $password)
111 {
112     // NEVER allow blank passwords, even if they match the DB
113     if (mb_strlen($password) == 0) {
114         return false;
115     }
116     $user = User::staticGet('nickname', $nickname);
117     if (is_null($user) || $user === false) {
118         return false;
119     } else {
120         if (0 == strcmp(common_munge_password($password, $user->id),
121                         $user->password)) {
122             return $user;
123         } else {
124             return false;
125         }
126     }
127 }
128
129 // is the current user logged in?
130 function common_logged_in()
131 {
132     return (!is_null(common_current_user()));
133 }
134
135 function common_have_session()
136 {
137     return (0 != strcmp(session_id(), ''));
138 }
139
140 function common_ensure_session()
141 {
142     $c = null;
143     if (array_key_exists(session_name(), $_COOKIE)) {
144         $c = $_COOKIE[session_name()];
145     }
146     if (!common_have_session()) {
147         if (common_config('sessions', 'handle')) {
148             Session::setSaveHandler();
149         }
150         @session_start();
151         if (!isset($_SESSION['started'])) {
152             $_SESSION['started'] = time();
153             if (!empty($c)) {
154                 common_log(LOG_WARNING, 'Session cookie "' . $_COOKIE[session_name()] . '" ' .
155                            ' is set but started value is null');
156             }
157         }
158     }
159 }
160
161 // Three kinds of arguments:
162 // 1) a user object
163 // 2) a nickname
164 // 3) null to clear
165
166 // Initialize to false; set to null if none found
167
168 $_cur = false;
169
170 function common_set_user($user)
171 {
172
173     global $_cur;
174
175     if (is_null($user) && common_have_session()) {
176         $_cur = null;
177         unset($_SESSION['userid']);
178         return true;
179     } else if (is_string($user)) {
180         $nickname = $user;
181         $user = User::staticGet('nickname', $nickname);
182     } else if (!($user instanceof User)) {
183         return false;
184     }
185
186     if ($user) {
187         common_ensure_session();
188         $_SESSION['userid'] = $user->id;
189         $_cur = $user;
190         return $_cur;
191     }
192     return false;
193 }
194
195 function common_set_cookie($key, $value, $expiration=0)
196 {
197     $path = common_config('site', 'path');
198     $server = common_config('site', 'server');
199
200     if ($path && ($path != '/')) {
201         $cookiepath = '/' . $path . '/';
202     } else {
203         $cookiepath = '/';
204     }
205     return setcookie($key,
206                      $value,
207                      $expiration,
208                      $cookiepath,
209                      $server);
210 }
211
212 define('REMEMBERME', 'rememberme');
213 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); // 30 days
214
215 function common_rememberme($user=null)
216 {
217     if (!$user) {
218         $user = common_current_user();
219         if (!$user) {
220             common_debug('No current user to remember', __FILE__);
221             return false;
222         }
223     }
224
225     $rm = new Remember_me();
226
227     $rm->code = common_good_rand(16);
228     $rm->user_id = $user->id;
229
230     // Wrap the insert in some good ol' fashioned transaction code
231
232     $rm->query('BEGIN');
233
234     $result = $rm->insert();
235
236     if (!$result) {
237         common_log_db_error($rm, 'INSERT', __FILE__);
238         common_debug('Error adding rememberme record for ' . $user->nickname, __FILE__);
239         return false;
240     }
241
242     $rm->query('COMMIT');
243
244     common_debug('Inserted rememberme record (' . $rm->code . ', ' . $rm->user_id . '); result = ' . $result . '.', __FILE__);
245
246     $cookieval = $rm->user_id . ':' . $rm->code;
247
248     common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
249
250     common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
251
252     return true;
253 }
254
255 function common_remembered_user()
256 {
257
258     $user = null;
259
260     $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null;
261
262     if (!$packed) {
263         return null;
264     }
265
266     list($id, $code) = explode(':', $packed);
267
268     if (!$id || !$code) {
269         common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
270         common_forgetme();
271         return null;
272     }
273
274     $rm = Remember_me::staticGet($code);
275
276     if (!$rm) {
277         common_log(LOG_WARNING, 'No such remember code: ' . $code);
278         common_forgetme();
279         return null;
280     }
281
282     if ($rm->user_id != $id) {
283         common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
284         common_forgetme();
285         return null;
286     }
287
288     $user = User::staticGet($rm->user_id);
289
290     if (!$user) {
291         common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
292         common_forgetme();
293         return null;
294     }
295
296     // successful!
297     $result = $rm->delete();
298
299     if (!$result) {
300         common_log_db_error($rm, 'DELETE', __FILE__);
301         common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
302         common_forgetme();
303         return null;
304     }
305
306     common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
307
308     common_set_user($user);
309     common_real_login(false);
310
311     // We issue a new cookie, so they can log in
312     // automatically again after this session
313
314     common_rememberme($user);
315
316     return $user;
317 }
318
319 // must be called with a valid user!
320
321 function common_forgetme()
322 {
323     common_set_cookie(REMEMBERME, '', 0);
324 }
325
326 // who is the current user?
327 function common_current_user()
328 {
329     global $_cur;
330
331     if (!_have_config()) {
332         return null;
333     }
334
335     if ($_cur === false) {
336
337         if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
338             common_ensure_session();
339             $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
340             if ($id) {
341                 $_cur = User::staticGet($id);
342                 return $_cur;
343             }
344         }
345
346         // that didn't work; try to remember; will init $_cur to null on failure
347         $_cur = common_remembered_user();
348
349         if ($_cur) {
350             common_debug("Got User " . $_cur->nickname);
351             common_debug("Faking session on remembered user");
352             // XXX: Is this necessary?
353             $_SESSION['userid'] = $_cur->id;
354         }
355     }
356
357     return $_cur;
358 }
359
360 // Logins that are 'remembered' aren't 'real' -- they're subject to
361 // cookie-stealing. So, we don't let them do certain things. New reg,
362 // OpenID, and password logins _are_ real.
363
364 function common_real_login($real=true)
365 {
366     common_ensure_session();
367     $_SESSION['real_login'] = $real;
368 }
369
370 function common_is_real_login()
371 {
372     return common_logged_in() && $_SESSION['real_login'];
373 }
374
375 // get canonical version of nickname for comparison
376 function common_canonical_nickname($nickname)
377 {
378     // XXX: UTF-8 canonicalization (like combining chars)
379     return strtolower($nickname);
380 }
381
382 // get canonical version of email for comparison
383 function common_canonical_email($email)
384 {
385     // XXX: canonicalize UTF-8
386     // XXX: lcase the domain part
387     return $email;
388 }
389
390 function common_render_content($text, $notice)
391 {
392     $r = common_render_text($text);
393     $id = $notice->profile_id;
394     $r = preg_replace('/(^|\s+)@([A-Za-z0-9]{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
395     $r = preg_replace('/^T ([A-Z0-9]{1,64}) /e', "'T '.common_at_link($id, '\\1').' '", $r);
396     $r = preg_replace('/(^|\s+)@#([A-Za-z0-9]{1,64})/e', "'\\1@#'.common_at_hash_link($id, '\\2')", $r);
397     $r = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r);
398     return $r;
399 }
400
401 function common_render_text($text)
402 {
403     $r = htmlspecialchars($text);
404
405     $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
406     $r = common_replace_urls_callback($r, 'common_linkify');
407     $r = preg_replace('/(^|\&quot\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
408     // XXX: machine tags
409     return $r;
410 }
411
412 function common_replace_urls_callback($text, $callback, $notice_id = null) {
413     // Start off with a regex
414     $regex = '#'.
415     '(?:^|[\s\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'.
416     '('.
417         '(?:'.
418             '(?:'. //Known protocols
419                 '(?:'.
420                     '(?:(?:https?|ftps?|mms|rtsp|gopher|news|nntp|telnet|wais|file|prospero|webcal|irc)://)'.
421                     '|'.
422                     '(?:(?:mailto|aim|tel|xmpp):)'.
423                 ')'.
424                 '(?:[\pN\pL\-\_\+]+(?::[\pN\pL\-\_\+]+)?\@)?'. //user:pass@
425                 '(?:'.
426                     '(?:'.
427                         '\[[\pN\pL\-\_\:\.]+(?<![\.\:])\]'. //[dns]
428                     ')|(?:'.
429                         '[\pN\pL\-\_\:\.]+(?<![\.\:])'. //dns
430                     ')'.
431                 ')'.
432             ')'.
433             '|(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)'. //IPv4
434             '|(?:'. //IPv6
435                 '\[?(?:(?:(?:[0-9A-Fa-f]{1,4}:){7}(?:(?:[0-9A-Fa-f]{1,4})|:))|(?:(?:[0-9A-Fa-f]{1,4}:){6}(?::|(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})|(?::[0-9A-Fa-f]{1,4})))|(?:(?:[0-9A-Fa-f]{1,4}:){5}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:[0-9A-Fa-f]{1,4}:){4}(?::[0-9A-Fa-f]{1,4}){0,1}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:[0-9A-Fa-f]{1,4}:){3}(?::[0-9A-Fa-f]{1,4}){0,2}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:[0-9A-Fa-f]{1,4}:){2}(?::[0-9A-Fa-f]{1,4}){0,3}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:[0-9A-Fa-f]{1,4}:)(?::[0-9A-Fa-f]{1,4}){0,4}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?::(?::[0-9A-Fa-f]{1,4}){0,5}(?:(?::(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})?)|(?:(?::[0-9A-Fa-f]{1,4}){1,2})))|(?:(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})(?:\.(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})){3})))\]?'.
436             ')|(?:'. //DNS
437                 '(?:[\pN\pL\-\_\+]+(?:\:[\pN\pL\-\_\+]+)?\@)?'. //user:pass@
438                 '[\pN\pL\-\_]+(?:\.[\pN\pL\-\_]+)*\.'.
439                 //tld list from http://data.iana.org/TLD/tlds-alpha-by-domain.txt, also added local, loc, and onion
440                 '(?:AC|AD|AE|AERO|AF|AG|AI|AL|AM|AN|AO|AQ|AR|ARPA|AS|ASIA|AT|AU|AW|AX|AZ|BA|BB|BD|BE|BF|BG|BH|BI|BIZ|BJ|BM|BN|BO|BR|BS|BT|BV|BW|BY|BZ|CA|CAT|CC|CD|CF|CG|CH|CI|CK|CL|CM|CN|CO|COM|COOP|CR|CU|CV|CX|CY|CZ|DE|DJ|DK|DM|DO|DZ|EC|EDU|EE|EG|ER|ES|ET|EU|FI|FJ|FK|FM|FO|FR|GA|GB|GD|GE|GF|GG|GH|GI|GL|GM|GN|GOV|GP|GQ|GR|GS|GT|GU|GW|GY|HK|HM|HN|HR|HT|HU|ID|IE|IL|IM|IN|INFO|INT|IO|IQ|IR|IS|IT|JE|JM|JO|JOBS|JP|KE|KG|KH|KI|KM|KN|KP|KR|KW|KY|KZ|LA|LB|LC|LI|LK|LR|LS|LT|LU|LV|LY|MA|MC|MD|ME|MG|MH|MIL|MK|ML|MM|MN|MO|MOBI|MP|MQ|MR|MS|MT|MU|MUSEUM|MV|MW|MX|MY|MZ|NA|NAME|NC|NE|NET|NF|NG|NI|NL|NO|NP|NR|NU|NZ|OM|ORG|PA|PE|PF|PG|PH|PK|PL|PM|PN|PR|PRO|PS|PT|PW|PY|QA|RE|RO|RS|RU|RW|SA|SB|SC|SD|SE|SG|SH|SI|SJ|SK|SL|SM|SN|SO|SR|ST|SU|SV|SY|SZ|TC|TD|TEL|TF|TG|TH|TJ|TK|TL|TM|TN|TO|TP|TR|TRAVEL|TT|TV|TW|TZ|UA|UG|UK|US|UY|UZ|VA|VC|VE|VG|VI|VN|VU|WF|WS|XN--0ZWM56D|测试|XN--11B5BS3A9AJ6G|परीक्षा|XN--80AKHBYKNJ4F|испытание|XN--9T4B11YI5A|테스트|XN--DEBA0AD|טעסט|XN--G6W251D|測試|XN--HGBK6AJ7F53BBA|آزمایشی|XN--HLCJ6AYA9ESC7A|பரிட்சை|XN--JXALPDLP|δοκιμή|XN--KGBECHTV|إختبار|XN--ZCKZAH|テスト|YE|YT|YU|ZA|ZM|ZW|local|loc|onion)'.
441             ')(?![\pN\pL\-\_])'.
442         ')'.
443         '(?:'.
444             '(?:\:\d+)?'. //:port
445             '(?:/[\pN\pL$\[\]\,\!\(\)\.\-\_\+\/\=\&\;]*)?'. // /path
446             '(?:\?[\pN\pL\$\[\]\,\!\(\)\.\-\_\+\/\=\&\;\/]*)?'. // ?query string
447             '(?:\#[\pN\pL$\[\]\,\!\(\)\.\-\_\+\/\=\&\;\/\?\#]*)?'. // #fragment
448         ')(?<![\?\.\,\#\,])'.
449     ')'.
450     '#ixu';
451     preg_match_all($regex,$text,$matches);
452     //print_r($matches);
453     return preg_replace_callback($regex, curry(callback_helper,$callback,$notice_id) ,$text);
454 }
455
456 function callback_helper($matches, $callback, $notice_id) {
457     $url=$matches[1];
458     $left = strpos($matches[0],$url);
459     $right = $left+strlen($url);
460
461     $groupSymbolSets=array(
462         array(
463             'left'=>'(',
464             'right'=>')'
465         ),
466         array(
467             'left'=>'[',
468             'right'=>']'
469         ),
470         array(
471             'left'=>'{',
472             'right'=>'}'
473         )
474     );
475     $cannotEndWith=array('.','?',',','#');
476     $original_url=$url;
477     do{
478         $original_url=$url;
479         foreach($groupSymbolSets as $groupSymbolSet){
480             if(substr($url,-1)==$groupSymbolSet['right']){
481                 $group_left_count = substr_count($url,$groupSymbolSet['left']);
482                 $group_right_count = substr_count($url,$groupSymbolSet['right']);
483                 if($group_left_count<$group_right_count){
484                     $right-=1;
485                     $url=substr($url,0,-1);
486                 }
487             }
488         }
489         if(in_array(substr($url,-1),$cannotEndWith)){
490             $right-=1;
491             $url=substr($url,0,-1);
492         }
493     }while($original_url!=$url);
494
495     if(empty($notice_id)){
496         $result = call_user_func_array($callback,$url);
497     }else{
498         $result = call_user_func_array($callback, array($url,$notice_id) );
499     }
500     return substr($matches[0],0,$left) . $result . substr($matches[0],$right);
501 }
502
503 function curry($fn) {
504     //TODO switch to a PHP 5.3 function closure based approach if PHP 5.3 is used
505     $args = func_get_args();
506     array_shift($args);
507     $id = uniqid('_partial');
508     $GLOBALS[$id] = array($fn, $args);
509     return create_function('',
510                            '$args = func_get_args(); '.
511                            'return call_user_func_array('.
512                            '$GLOBALS["'.$id.'"][0],'.
513                            'array_merge('.
514                            '$args,'.
515                            '$GLOBALS["'.$id.'"][1]));');
516 }
517
518 function common_linkify($url) {
519     // It comes in special'd, so we unspecial it before passing to the stringifying
520     // functions
521     $url = htmlspecialchars_decode($url);
522
523    if(strpos($url, '@') !== false && strpos($url, ':') === false) {
524        //url is an email address without the mailto: protocol
525        return XMLStringer::estring('a', array('href' => "mailto:$url", 'rel' => 'external'), $url);
526    }
527
528     $canon = File_redirection::_canonUrl($url);
529
530     $longurl_data = File_redirection::where($url);
531     if (is_array($longurl_data)) {
532         $longurl = $longurl_data['url'];
533     } elseif (is_string($longurl_data)) {
534         $longurl = $longurl_data;
535     } else {
536         throw new ServerException("Can't linkify url '$url'");
537     }
538
539     $attrs = array('href' => $canon, 'rel' => 'external');
540
541     $is_attachment = false;
542     $attachment_id = null;
543     $has_thumb = false;
544
545     // Check to see whether this is a known "attachment" URL.
546
547     $f = File::staticGet('url', $longurl);
548
549     if (empty($f)) {
550         // XXX: this writes to the database. :<
551         $f = File::processNew($longurl);
552     }
553
554     if (!empty($f)) {
555         if (isset($f->filename)) {
556             $is_attachment = true;
557             $attachment_id = $f->id;
558         } else { // if it has OEmbed info, it's an attachment, too
559             $foe = File_oembed::staticGet('file_id', $f->id);
560             if (!empty($foe)) {
561                 $is_attachment = true;
562                 $attachment_id = $f->id;
563
564                 $thumb = File_thumbnail::staticGet('file_id', $f->id);
565                 if (!empty($thumb)) {
566                     $has_thumb = true;
567                 }
568             }
569         }
570     }
571
572     // Add clippy
573     if ($is_attachment) {
574         $attrs['class'] = 'attachment';
575         if ($has_thumb) {
576             $attrs['class'] = 'attachment thumbnail';
577         }
578         $attrs['id'] = "attachment-{$attachment_id}";
579     }
580
581     return XMLStringer::estring('a', $attrs, $url);
582 }
583
584 function common_shorten_links($text)
585 {
586     if (mb_strlen($text) <= 140) return $text;
587     return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
588 }
589
590 function common_xml_safe_str($str)
591 {
592     // Neutralize control codes and surrogates
593         return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
594 }
595
596 function common_tag_link($tag)
597 {
598     $canonical = common_canonical_tag($tag);
599     $url = common_local_url('tag', array('tag' => $canonical));
600     $xs = new XMLStringer();
601     $xs->elementStart('span', 'tag');
602     $xs->element('a', array('href' => $url,
603                             'rel' => 'tag'),
604                  $tag);
605     $xs->elementEnd('span');
606     return $xs->getString();
607 }
608
609 function common_canonical_tag($tag)
610 {
611   $tag = mb_convert_case($tag, MB_CASE_LOWER, "UTF-8");
612   return str_replace(array('-', '_', '.'), '', $tag);
613 }
614
615 function common_valid_profile_tag($str)
616 {
617     return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
618 }
619
620 function common_at_link($sender_id, $nickname)
621 {
622     $sender = Profile::staticGet($sender_id);
623     $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
624     if ($recipient) {
625         $user = User::staticGet('id', $recipient->id);
626         if ($user) {
627             $url = common_local_url('userbyid', array('id' => $user->id));
628         } else {
629             $url = $recipient->profileurl;
630         }
631         $xs = new XMLStringer(false);
632         $attrs = array('href' => $url,
633                        'class' => 'url');
634         if (!empty($recipient->fullname)) {
635             $attrs['title'] = $recipient->fullname . ' (' . $recipient->nickname . ')';
636         }
637         $xs->elementStart('span', 'vcard');
638         $xs->elementStart('a', $attrs);
639         $xs->element('span', 'fn nickname', $nickname);
640         $xs->elementEnd('a');
641         $xs->elementEnd('span');
642         return $xs->getString();
643     } else {
644         return $nickname;
645     }
646 }
647
648 function common_group_link($sender_id, $nickname)
649 {
650     $sender = Profile::staticGet($sender_id);
651     $group = User_group::getForNickname($nickname);
652     if ($group && $sender->isMember($group)) {
653         $attrs = array('href' => $group->permalink(),
654                        'class' => 'url');
655         if (!empty($group->fullname)) {
656             $attrs['title'] = $group->fullname . ' (' . $group->nickname . ')';
657         }
658         $xs = new XMLStringer();
659         $xs->elementStart('span', 'vcard');
660         $xs->elementStart('a', $attrs);
661         $xs->element('span', 'fn nickname', $nickname);
662         $xs->elementEnd('a');
663         $xs->elementEnd('span');
664         return $xs->getString();
665     } else {
666         return $nickname;
667     }
668 }
669
670 function common_at_hash_link($sender_id, $tag)
671 {
672     $user = User::staticGet($sender_id);
673     if (!$user) {
674         return $tag;
675     }
676     $tagged = Profile_tag::getTagged($user->id, common_canonical_tag($tag));
677     if ($tagged) {
678         $url = common_local_url('subscriptions',
679                                 array('nickname' => $user->nickname,
680                                       'tag' => $tag));
681         $xs = new XMLStringer();
682         $xs->elementStart('span', 'tag');
683         $xs->element('a', array('href' => $url,
684                                 'rel' => $tag),
685                      $tag);
686         $xs->elementEnd('span');
687         return $xs->getString();
688     } else {
689         return $tag;
690     }
691 }
692
693 function common_relative_profile($sender, $nickname, $dt=null)
694 {
695     // Try to find profiles this profile is subscribed to that have this nickname
696     $recipient = new Profile();
697     // XXX: use a join instead of a subquery
698     $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
699     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
700     if ($recipient->find(true)) {
701         // XXX: should probably differentiate between profiles with
702         // the same name by date of most recent update
703         return $recipient;
704     }
705     // Try to find profiles that listen to this profile and that have this nickname
706     $recipient = new Profile();
707     // XXX: use a join instead of a subquery
708     $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
709     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
710     if ($recipient->find(true)) {
711         // XXX: should probably differentiate between profiles with
712         // the same name by date of most recent update
713         return $recipient;
714     }
715     // If this is a local user, try to find a local user with that nickname.
716     $sender = User::staticGet($sender->id);
717     if ($sender) {
718         $recipient_user = User::staticGet('nickname', $nickname);
719         if ($recipient_user) {
720             return $recipient_user->getProfile();
721         }
722     }
723     // Otherwise, no links. @messages from local users to remote users,
724     // or from remote users to other remote users, are just
725     // outside our ability to make intelligent guesses about
726     return null;
727 }
728
729 function common_local_url($action, $args=null, $params=null, $fragment=null)
730 {
731     static $sensitive = array('login', 'register', 'passwordsettings',
732                               'twittersettings', 'finishopenidlogin',
733                               'finishaddopenid', 'api');
734
735     $r = Router::get();
736     $path = $r->build($action, $args, $params, $fragment);
737
738     $ssl = in_array($action, $sensitive);
739
740     if (common_config('site','fancy')) {
741         $url = common_path(mb_substr($path, 1), $ssl);
742     } else {
743         if (mb_strpos($path, '/index.php') === 0) {
744             $url = common_path(mb_substr($path, 1), $ssl);
745         } else {
746             $url = common_path('index.php'.$path, $ssl);
747         }
748     }
749     return $url;
750 }
751
752 function common_path($relative, $ssl=false)
753 {
754     $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
755
756     if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
757         || common_config('site', 'ssl') === 'always') {
758         $proto = 'https';
759         if (is_string(common_config('site', 'sslserver')) &&
760             mb_strlen(common_config('site', 'sslserver')) > 0) {
761             $serverpart = common_config('site', 'sslserver');
762         } else {
763             $serverpart = common_config('site', 'server');
764         }
765     } else {
766         $proto = 'http';
767         $serverpart = common_config('site', 'server');
768     }
769
770     return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
771 }
772
773 function common_date_string($dt)
774 {
775     // XXX: do some sexy date formatting
776     // return date(DATE_RFC822, $dt);
777     $t = strtotime($dt);
778     $now = time();
779     $diff = $now - $t;
780
781     if ($now < $t) { // that shouldn't happen!
782         return common_exact_date($dt);
783     } else if ($diff < 60) {
784         return _('a few seconds ago');
785     } else if ($diff < 92) {
786         return _('about a minute ago');
787     } else if ($diff < 3300) {
788         return sprintf(_('about %d minutes ago'), round($diff/60));
789     } else if ($diff < 5400) {
790         return _('about an hour ago');
791     } else if ($diff < 22 * 3600) {
792         return sprintf(_('about %d hours ago'), round($diff/3600));
793     } else if ($diff < 37 * 3600) {
794         return _('about a day ago');
795     } else if ($diff < 24 * 24 * 3600) {
796         return sprintf(_('about %d days ago'), round($diff/(24*3600)));
797     } else if ($diff < 46 * 24 * 3600) {
798         return _('about a month ago');
799     } else if ($diff < 330 * 24 * 3600) {
800         return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
801     } else if ($diff < 480 * 24 * 3600) {
802         return _('about a year ago');
803     } else {
804         return common_exact_date($dt);
805     }
806 }
807
808 function common_exact_date($dt)
809 {
810     static $_utc;
811     static $_siteTz;
812
813     if (!$_utc) {
814         $_utc = new DateTimeZone('UTC');
815         $_siteTz = new DateTimeZone(common_timezone());
816     }
817
818     $dateStr = date('d F Y H:i:s', strtotime($dt));
819     $d = new DateTime($dateStr, $_utc);
820     $d->setTimezone($_siteTz);
821     return $d->format(DATE_RFC850);
822 }
823
824 function common_date_w3dtf($dt)
825 {
826     $dateStr = date('d F Y H:i:s', strtotime($dt));
827     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
828     $d->setTimezone(new DateTimeZone(common_timezone()));
829     return $d->format(DATE_W3C);
830 }
831
832 function common_date_rfc2822($dt)
833 {
834     $dateStr = date('d F Y H:i:s', strtotime($dt));
835     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
836     $d->setTimezone(new DateTimeZone(common_timezone()));
837     return $d->format('r');
838 }
839
840 function common_date_iso8601($dt)
841 {
842     $dateStr = date('d F Y H:i:s', strtotime($dt));
843     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
844     $d->setTimezone(new DateTimeZone(common_timezone()));
845     return $d->format('c');
846 }
847
848 function common_sql_now()
849 {
850     return common_sql_date(time());
851 }
852
853 function common_sql_date($datetime)
854 {
855     return strftime('%Y-%m-%d %H:%M:%S', $datetime);
856 }
857
858 function common_redirect($url, $code=307)
859 {
860     static $status = array(301 => "Moved Permanently",
861                            302 => "Found",
862                            303 => "See Other",
863                            307 => "Temporary Redirect");
864
865     header('HTTP/1.1 '.$code.' '.$status[$code]);
866     header("Location: $url");
867
868     $xo = new XMLOutputter();
869     $xo->startXML('a',
870                   '-//W3C//DTD XHTML 1.0 Strict//EN',
871                   'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
872     $xo->element('a', array('href' => $url), $url);
873     $xo->endXML();
874     exit;
875 }
876
877 function common_broadcast_notice($notice, $remote=false)
878 {
879     return common_enqueue_notice($notice);
880 }
881
882 // Stick the notice on the queue
883
884 function common_enqueue_notice($notice)
885 {
886     static $localTransports = array('omb',
887                                     'twitter',
888                                     'facebook',
889                                     'ping');
890     static $allTransports = array('sms');
891
892     $transports = $allTransports;
893
894     $xmpp = common_config('xmpp', 'enabled');
895
896     if ($xmpp) {
897         $transports[] = 'jabber';
898     }
899
900     if ($notice->is_local == Notice::LOCAL_PUBLIC ||
901         $notice->is_local == Notice::LOCAL_NONPUBLIC) {
902         $transports = array_merge($transports, $localTransports);
903         if ($xmpp) {
904             $transports[] = 'public';
905         }
906     }
907
908     $qm = QueueManager::get();
909
910     foreach ($transports as $transport)
911     {
912         $qm->enqueue($notice, $transport);
913     }
914
915     return true;
916 }
917
918 function common_broadcast_profile($profile)
919 {
920     // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
921     require_once(INSTALLDIR.'/lib/omb.php');
922     omb_broadcast_profile($profile);
923     // XXX: Other broadcasts...?
924     return true;
925 }
926
927 function common_profile_url($nickname)
928 {
929     return common_local_url('showstream', array('nickname' => $nickname));
930 }
931
932 // Should make up a reasonable root URL
933
934 function common_root_url($ssl=false)
935 {
936     return common_path('', $ssl);
937 }
938
939 // returns $bytes bytes of random data as a hexadecimal string
940 // "good" here is a goal and not a guarantee
941
942 function common_good_rand($bytes)
943 {
944     // XXX: use random.org...?
945     if (@file_exists('/dev/urandom')) {
946         return common_urandom($bytes);
947     } else { // FIXME: this is probably not good enough
948         return common_mtrand($bytes);
949     }
950 }
951
952 function common_urandom($bytes)
953 {
954     $h = fopen('/dev/urandom', 'rb');
955     // should not block
956     $src = fread($h, $bytes);
957     fclose($h);
958     $enc = '';
959     for ($i = 0; $i < $bytes; $i++) {
960         $enc .= sprintf("%02x", (ord($src[$i])));
961     }
962     return $enc;
963 }
964
965 function common_mtrand($bytes)
966 {
967     $enc = '';
968     for ($i = 0; $i < $bytes; $i++) {
969         $enc .= sprintf("%02x", mt_rand(0, 255));
970     }
971     return $enc;
972 }
973
974 function common_set_returnto($url)
975 {
976     common_ensure_session();
977     $_SESSION['returnto'] = $url;
978 }
979
980 function common_get_returnto()
981 {
982     common_ensure_session();
983     return $_SESSION['returnto'];
984 }
985
986 function common_timestamp()
987 {
988     return date('YmdHis');
989 }
990
991 function common_ensure_syslog()
992 {
993     static $initialized = false;
994     if (!$initialized) {
995         openlog(common_config('syslog', 'appname'), 0,
996             common_config('syslog', 'facility'));
997         $initialized = true;
998     }
999 }
1000
1001 function common_log_line($priority, $msg)
1002 {
1003     static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1004                                       'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1005     return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1006 }
1007
1008 function common_log($priority, $msg, $filename=null)
1009 {
1010     $logfile = common_config('site', 'logfile');
1011     if ($logfile) {
1012         $log = fopen($logfile, "a");
1013         if ($log) {
1014             $output = common_log_line($priority, $msg);
1015             fwrite($log, $output);
1016             fclose($log);
1017         }
1018     } else {
1019         common_ensure_syslog();
1020         syslog($priority, $msg);
1021     }
1022 }
1023
1024 function common_debug($msg, $filename=null)
1025 {
1026     if ($filename) {
1027         common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1028     } else {
1029         common_log(LOG_DEBUG, $msg);
1030     }
1031 }
1032
1033 function common_log_db_error(&$object, $verb, $filename=null)
1034 {
1035     $objstr = common_log_objstring($object);
1036     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1037     common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1038 }
1039
1040 function common_log_objstring(&$object)
1041 {
1042     if (is_null($object)) {
1043         return "null";
1044     }
1045     if (!($object instanceof DB_DataObject)) {
1046         return "(unknown)";
1047     }
1048     $arr = $object->toArray();
1049     $fields = array();
1050     foreach ($arr as $k => $v) {
1051         $fields[] = "$k='$v'";
1052     }
1053     $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1054     return $objstring;
1055 }
1056
1057 function common_valid_http_url($url)
1058 {
1059     return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1060 }
1061
1062 function common_valid_tag($tag)
1063 {
1064     if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1065         return (Validate::email($matches[1]) ||
1066                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1067     }
1068     return false;
1069 }
1070
1071 /* Following functions are copied from MediaWiki GlobalFunctions.php
1072  * and written by Evan Prodromou. */
1073
1074 function common_accept_to_prefs($accept, $def = '*/*')
1075 {
1076     // No arg means accept anything (per HTTP spec)
1077     if(!$accept) {
1078         return array($def => 1);
1079     }
1080
1081     $prefs = array();
1082
1083     $parts = explode(',', $accept);
1084
1085     foreach($parts as $part) {
1086         // FIXME: doesn't deal with params like 'text/html; level=1'
1087         @list($value, $qpart) = explode(';', trim($part));
1088         $match = array();
1089         if(!isset($qpart)) {
1090             $prefs[$value] = 1;
1091         } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1092             $prefs[$value] = $match[1];
1093         }
1094     }
1095
1096     return $prefs;
1097 }
1098
1099 function common_mime_type_match($type, $avail)
1100 {
1101     if(array_key_exists($type, $avail)) {
1102         return $type;
1103     } else {
1104         $parts = explode('/', $type);
1105         if(array_key_exists($parts[0] . '/*', $avail)) {
1106             return $parts[0] . '/*';
1107         } elseif(array_key_exists('*/*', $avail)) {
1108             return '*/*';
1109         } else {
1110             return null;
1111         }
1112     }
1113 }
1114
1115 function common_negotiate_type($cprefs, $sprefs)
1116 {
1117     $combine = array();
1118
1119     foreach(array_keys($sprefs) as $type) {
1120         $parts = explode('/', $type);
1121         if($parts[1] != '*') {
1122             $ckey = common_mime_type_match($type, $cprefs);
1123             if($ckey) {
1124                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1125             }
1126         }
1127     }
1128
1129     foreach(array_keys($cprefs) as $type) {
1130         $parts = explode('/', $type);
1131         if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1132             $skey = common_mime_type_match($type, $sprefs);
1133             if($skey) {
1134                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1135             }
1136         }
1137     }
1138
1139     $bestq = 0;
1140     $besttype = 'text/html';
1141
1142     foreach(array_keys($combine) as $type) {
1143         if($combine[$type] > $bestq) {
1144             $besttype = $type;
1145             $bestq = $combine[$type];
1146         }
1147     }
1148
1149     if ('text/html' === $besttype) {
1150         return "text/html; charset=utf-8";
1151     }
1152     return $besttype;
1153 }
1154
1155 function common_config($main, $sub)
1156 {
1157     global $config;
1158     return isset($config[$main][$sub]) ? $config[$main][$sub] : false;
1159 }
1160
1161 function common_copy_args($from)
1162 {
1163     $to = array();
1164     $strip = get_magic_quotes_gpc();
1165     foreach ($from as $k => $v) {
1166         $to[$k] = ($strip) ? stripslashes($v) : $v;
1167     }
1168     return $to;
1169 }
1170
1171 // Neutralise the evil effects of magic_quotes_gpc in the current request.
1172 // This is used before handing a request off to OAuthRequest::from_request.
1173 function common_remove_magic_from_request()
1174 {
1175     if(get_magic_quotes_gpc()) {
1176         $_POST=array_map('stripslashes',$_POST);
1177         $_GET=array_map('stripslashes',$_GET);
1178     }
1179 }
1180
1181 function common_user_uri(&$user)
1182 {
1183     return common_local_url('userbyid', array('id' => $user->id));
1184 }
1185
1186 function common_notice_uri(&$notice)
1187 {
1188     return common_local_url('shownotice',
1189                             array('notice' => $notice->id));
1190 }
1191
1192 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1193
1194 function common_confirmation_code($bits)
1195 {
1196     // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1197     static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1198     $chars = ceil($bits/5);
1199     $code = '';
1200     for ($i = 0; $i < $chars; $i++) {
1201         // XXX: convert to string and back
1202         $num = hexdec(common_good_rand(1));
1203         // XXX: randomness is too precious to throw away almost
1204         // 40% of the bits we get!
1205         $code .= $codechars[$num%32];
1206     }
1207     return $code;
1208 }
1209
1210 // convert markup to HTML
1211
1212 function common_markup_to_html($c)
1213 {
1214     $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1215     $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1216     $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1217     return Markdown($c);
1218 }
1219
1220 function common_profile_uri($profile)
1221 {
1222     if (!$profile) {
1223         return null;
1224     }
1225     $user = User::staticGet($profile->id);
1226     if ($user) {
1227         return $user->uri;
1228     }
1229
1230     $remote = Remote_profile::staticGet($profile->id);
1231     if ($remote) {
1232         return $remote->uri;
1233     }
1234     // XXX: this is a very bad profile!
1235     return null;
1236 }
1237
1238 function common_canonical_sms($sms)
1239 {
1240     // strip non-digits
1241     preg_replace('/\D/', '', $sms);
1242     return $sms;
1243 }
1244
1245 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1246 {
1247     switch ($errno) {
1248
1249      case E_ERROR:
1250      case E_COMPILE_ERROR:
1251      case E_CORE_ERROR:
1252      case E_USER_ERROR:
1253      case E_PARSE:
1254      case E_RECOVERABLE_ERROR:
1255         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [ABORT]");
1256         die();
1257         break;
1258
1259      case E_WARNING:
1260      case E_COMPILE_WARNING:
1261      case E_CORE_WARNING:
1262      case E_USER_WARNING:
1263         common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1264         break;
1265
1266      case E_NOTICE:
1267      case E_USER_NOTICE:
1268         common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1269         break;
1270
1271      case E_STRICT:
1272      case E_DEPRECATED:
1273      case E_USER_DEPRECATED:
1274         // XXX: config variable to log this stuff, too
1275         break;
1276
1277      default:
1278         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [UNKNOWN LEVEL, die()'ing]");
1279         die();
1280         break;
1281     }
1282
1283     // FIXME: show error page if we're on the Web
1284     /* Don't execute PHP internal error handler */
1285     return true;
1286 }
1287
1288 function common_session_token()
1289 {
1290     common_ensure_session();
1291     if (!array_key_exists('token', $_SESSION)) {
1292         $_SESSION['token'] = common_good_rand(64);
1293     }
1294     return $_SESSION['token'];
1295 }
1296
1297 function common_cache_key($extra)
1298 {
1299     $base_key = common_config('memcached', 'base');
1300
1301     if (empty($base_key)) {
1302         $base_key = common_keyize(common_config('site', 'name'));
1303     }
1304
1305     return 'statusnet:' . $base_key . ':' . $extra;
1306 }
1307
1308 function common_keyize($str)
1309 {
1310     $str = strtolower($str);
1311     $str = preg_replace('/\s/', '_', $str);
1312     return $str;
1313 }
1314
1315 function common_memcache()
1316 {
1317     static $cache = null;
1318     if (!common_config('memcached', 'enabled')) {
1319         return null;
1320     } else {
1321         if (!$cache) {
1322             $cache = new Memcache();
1323             $servers = common_config('memcached', 'server');
1324             if (is_array($servers)) {
1325                 foreach($servers as $server) {
1326                     $cache->addServer($server);
1327                 }
1328             } else {
1329                 $cache->addServer($servers);
1330             }
1331         }
1332         return $cache;
1333     }
1334 }
1335
1336 function common_compatible_license($from, $to)
1337 {
1338     // XXX: better compatibility check needed here!
1339     return ($from == $to);
1340 }
1341
1342 /**
1343  * returns a quoted table name, if required according to config
1344  */
1345 function common_database_tablename($tablename)
1346 {
1347
1348   if(common_config('db','quote_identifiers')) {
1349       $tablename = '"'. $tablename .'"';
1350   }
1351   //table prefixes could be added here later
1352   return $tablename;
1353 }
1354
1355 function common_shorten_url($long_url)
1356 {
1357     $user = common_current_user();
1358     if (empty($user)) {
1359         // common current user does not find a user when called from the XMPP daemon
1360         // therefore we'll set one here fix, so that XMPP given URLs may be shortened
1361         $svc = 'ur1.ca';
1362     } else {
1363         $svc = $user->urlshorteningservice;
1364     }
1365
1366     $curlh = curl_init();
1367     curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait
1368     curl_setopt($curlh, CURLOPT_USERAGENT, 'StatusNet');
1369     curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
1370
1371     switch($svc) {
1372      case 'ur1.ca':
1373         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1374         $short_url_service = new LilUrl;
1375         $short_url = $short_url_service->shorten($long_url);
1376         break;
1377
1378      case '2tu.us':
1379         $short_url_service = new TightUrl;
1380         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1381         $short_url = $short_url_service->shorten($long_url);
1382         break;
1383
1384      case 'ptiturl.com':
1385         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1386         $short_url_service = new PtitUrl;
1387         $short_url = $short_url_service->shorten($long_url);
1388         break;
1389
1390      case 'bit.ly':
1391         curl_setopt($curlh, CURLOPT_URL, 'http://bit.ly/api?method=shorten&long_url='.urlencode($long_url));
1392         $short_url = current(json_decode(curl_exec($curlh))->results)->hashUrl;
1393         break;
1394
1395      case 'is.gd':
1396         curl_setopt($curlh, CURLOPT_URL, 'http://is.gd/api.php?longurl='.urlencode($long_url));
1397         $short_url = curl_exec($curlh);
1398         break;
1399      case 'snipr.com':
1400         curl_setopt($curlh, CURLOPT_URL, 'http://snipr.com/site/snip?r=simple&link='.urlencode($long_url));
1401         $short_url = curl_exec($curlh);
1402         break;
1403      case 'metamark.net':
1404         curl_setopt($curlh, CURLOPT_URL, 'http://metamark.net/api/rest/simple?long_url='.urlencode($long_url));
1405         $short_url = curl_exec($curlh);
1406         break;
1407      case 'tinyurl.com':
1408         curl_setopt($curlh, CURLOPT_URL, 'http://tinyurl.com/api-create.php?url='.urlencode($long_url));
1409         $short_url = curl_exec($curlh);
1410         break;
1411      default:
1412         $short_url = false;
1413     }
1414
1415     curl_close($curlh);
1416
1417     return $short_url;
1418 }
1419
1420 function common_client_ip()
1421 {
1422     if (!isset($_SERVER) || !array_key_exists('REQUEST_METHOD', $_SERVER)) {
1423         return null;
1424     }
1425
1426     if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) {
1427         if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1428             $proxy = $_SERVER['HTTP_CLIENT_IP'];
1429         } else {
1430             $proxy = $_SERVER['REMOTE_ADDR'];
1431         }
1432         $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1433     } else {
1434         $proxy = null;
1435         if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1436             $ip = $_SERVER['HTTP_CLIENT_IP'];
1437         } else {
1438             $ip = $_SERVER['REMOTE_ADDR'];
1439         }
1440     }
1441
1442     return array($proxy, $ip);
1443 }