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