]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
3a35e15d2cf5a8b53d6dad5ba4bbb1eeea953260
[quix0rs-gnu-social.git] / lib / util.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, Control Yourself, 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("laconica", common_config('site','locale_path'));
58     bind_textdomain_codeset("laconica", "UTF-8");
59     textdomain("laconica");
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     '(?P<url>'.
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['url'];
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     
496     
497     if(empty($notice_id)){
498         $result = call_user_func_array($callback,$url);
499     }else{
500         $result = call_user_func_array($callback, array($url,$notice_id) );
501     }
502     return substr($matches[0],0,$left) . $result . substr($matches[0],$right);
503 }
504
505 function curry($fn) {
506     //TODO switch to a PHP 5.3 function closure based approach if PHP 5.3 is used
507     $args = func_get_args();
508     array_shift($args);
509     $id = uniqid('_partial');
510     $GLOBALS[$id] = array($fn, $args);
511     return create_function(
512         '',
513         '
514         $args = func_get_args();
515         return call_user_func_array(
516         $GLOBALS["'.$id.'"][0],
517         array_merge(
518             $args,
519             $GLOBALS["'.$id.'"][1]));
520     ');
521 }
522
523 function common_linkify($url) {
524     // It comes in special'd, so we unspecial it before passing to the stringifying
525     // functions
526     $url = htmlspecialchars_decode($url);
527
528    if(strpos($url, '@')!==false && strpos($url, ':')===false){
529        //url is an email address without the mailto: protocol
530        return XMLStringer::estring('a', array('href' => "mailto:$url", 'rel' => 'external'), $url);
531    }
532
533     $canon = File_redirection::_canonUrl($url);
534
535     $longurl_data = File_redirection::where($url);
536     if (is_array($longurl_data)) {
537         $longurl = $longurl_data['url'];
538     } elseif (is_string($longurl_data)) {
539         $longurl = $longurl_data;
540     } else {
541         throw new ServerException("Can't linkify url '$url'");
542     }
543
544     $attrs = array('href' => $canon, 'rel' => 'external');
545
546     $is_attachment = false;
547     $attachment_id = null;
548     $has_thumb = false;
549
550     // Check to see whether there's a filename associated with this URL.
551     // If there is, it's an upload and qualifies as an attachment
552
553     $localfile = File::staticGet('url', $longurl);
554
555     if (!empty($localfile)) {
556         if (isset($localfile->filename)) {
557             $is_attachment = true;
558             $attachment_id = $localfile->id;
559         }
560     }
561
562     // if this URL is an attachment, then we set class='attachment' and id='attahcment-ID'
563     // where ID is the id of the attachment for the given URL.
564     //
565     // we need a better test telling what can be shown as an attachment
566     // we're currently picking up oembeds only.
567     // I think the best option is another file_view table in the db
568     // and associated dbobject.
569
570     $query = "select file_oembed.file_id as file_id from file join file_oembed on file.id = file_oembed.file_id where file.url='$longurl'";
571     $file = new File;
572     $file->query($query);
573     $file->fetch();
574
575     if (!empty($file->file_id)) {
576         $is_attachment = true;
577         $attachment_id = $file->file_id;
578
579         $query = "select file_thumbnail.file_id as file_id from file join file_thumbnail on file.id = file_thumbnail.file_id where file.url='$longurl'";
580         $file2 = new File;
581         $file2->query($query);
582         $file2->fetch();
583
584         if (!empty($file2)) {
585             $has_thumb = true;
586         }
587     }
588
589     // Add clippy
590     if ($is_attachment) {
591         $attrs['class'] = 'attachment';
592         if ($has_thumb) {
593             $attrs['class'] = 'attachment thumbnail';
594         }
595         $attrs['id'] = "attachment-{$attachment_id}";
596     }
597
598     return XMLStringer::estring('a', $attrs, $url);
599 }
600
601 function common_shorten_links($text)
602 {
603     $maxLength = Notice::maxContent();
604     if ($maxLength == 0 || mb_strlen($text) <= $maxLength) return $text;
605     return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
606 }
607
608 function common_xml_safe_str($str)
609 {
610     // Neutralize control codes and surrogates
611         return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
612 }
613
614 function common_tag_link($tag)
615 {
616     $canonical = common_canonical_tag($tag);
617     $url = common_local_url('tag', array('tag' => $canonical));
618     $xs = new XMLStringer();
619     $xs->elementStart('span', 'tag');
620     $xs->element('a', array('href' => $url,
621                             'rel' => 'tag'),
622                  $tag);
623     $xs->elementEnd('span');
624     return $xs->getString();
625 }
626
627 function common_canonical_tag($tag)
628 {
629   $tag = mb_convert_case($tag, MB_CASE_LOWER, "UTF-8");
630   return str_replace(array('-', '_', '.'), '', $tag);
631 }
632
633 function common_valid_profile_tag($str)
634 {
635     return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
636 }
637
638 function common_at_link($sender_id, $nickname)
639 {
640     $sender = Profile::staticGet($sender_id);
641     $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
642     if ($recipient) {
643         $user = User::staticGet('id', $recipient->id);
644         if ($user) {
645             $url = common_local_url('userbyid', array('id' => $user->id));
646         } else {
647             $url = $recipient->profileurl;
648         }
649         $xs = new XMLStringer(false);
650         $attrs = array('href' => $url,
651                        'class' => 'url');
652         if (!empty($recipient->fullname)) {
653             $attrs['title'] = $recipient->fullname . ' (' . $recipient->nickname . ')';
654         }
655         $xs->elementStart('span', 'vcard');
656         $xs->elementStart('a', $attrs);
657         $xs->element('span', 'fn nickname', $nickname);
658         $xs->elementEnd('a');
659         $xs->elementEnd('span');
660         return $xs->getString();
661     } else {
662         return $nickname;
663     }
664 }
665
666 function common_group_link($sender_id, $nickname)
667 {
668     $sender = Profile::staticGet($sender_id);
669     $group = User_group::getForNickname($nickname);
670     if ($group && $sender->isMember($group)) {
671         $attrs = array('href' => $group->permalink(),
672                        'class' => 'url');
673         if (!empty($group->fullname)) {
674             $attrs['title'] = $group->fullname . ' (' . $group->nickname . ')';
675         }
676         $xs = new XMLStringer();
677         $xs->elementStart('span', 'vcard');
678         $xs->elementStart('a', $attrs);
679         $xs->element('span', 'fn nickname', $nickname);
680         $xs->elementEnd('a');
681         $xs->elementEnd('span');
682         return $xs->getString();
683     } else {
684         return $nickname;
685     }
686 }
687
688 function common_at_hash_link($sender_id, $tag)
689 {
690     $user = User::staticGet($sender_id);
691     if (!$user) {
692         return $tag;
693     }
694     $tagged = Profile_tag::getTagged($user->id, common_canonical_tag($tag));
695     if ($tagged) {
696         $url = common_local_url('subscriptions',
697                                 array('nickname' => $user->nickname,
698                                       'tag' => $tag));
699         $xs = new XMLStringer();
700         $xs->elementStart('span', 'tag');
701         $xs->element('a', array('href' => $url,
702                                 'rel' => $tag),
703                      $tag);
704         $xs->elementEnd('span');
705         return $xs->getString();
706     } else {
707         return $tag;
708     }
709 }
710
711 function common_relative_profile($sender, $nickname, $dt=null)
712 {
713     // Try to find profiles this profile is subscribed to that have this nickname
714     $recipient = new Profile();
715     // XXX: use a join instead of a subquery
716     $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
717     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
718     if ($recipient->find(true)) {
719         // XXX: should probably differentiate between profiles with
720         // the same name by date of most recent update
721         return $recipient;
722     }
723     // Try to find profiles that listen to this profile and that have this nickname
724     $recipient = new Profile();
725     // XXX: use a join instead of a subquery
726     $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
727     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
728     if ($recipient->find(true)) {
729         // XXX: should probably differentiate between profiles with
730         // the same name by date of most recent update
731         return $recipient;
732     }
733     // If this is a local user, try to find a local user with that nickname.
734     $sender = User::staticGet($sender->id);
735     if ($sender) {
736         $recipient_user = User::staticGet('nickname', $nickname);
737         if ($recipient_user) {
738             return $recipient_user->getProfile();
739         }
740     }
741     // Otherwise, no links. @messages from local users to remote users,
742     // or from remote users to other remote users, are just
743     // outside our ability to make intelligent guesses about
744     return null;
745 }
746
747 function common_local_url($action, $args=null, $params=null, $fragment=null)
748 {
749     $r = Router::get();
750     $path = $r->build($action, $args, $params, $fragment);
751
752     $ssl = common_is_sensitive($action);
753
754     if (common_config('site','fancy')) {
755         $url = common_path(mb_substr($path, 1), $ssl);
756     } else {
757         if (mb_strpos($path, '/index.php') === 0) {
758             $url = common_path(mb_substr($path, 1), $ssl);
759         } else {
760             $url = common_path('index.php'.$path, $ssl);
761         }
762     }
763     return $url;
764 }
765
766 function common_is_sensitive($action)
767 {
768     static $sensitive = array('login', 'register', 'passwordsettings',
769                               'twittersettings', 'api');
770     $ssl = null;
771
772     if (Event::handle('SensitiveAction', array($action, &$ssl))) {
773         $ssl = in_array($action, $sensitive);
774     }
775
776     return $ssl;
777 }
778
779 function common_path($relative, $ssl=false)
780 {
781     $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
782
783     if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
784         || common_config('site', 'ssl') === 'always') {
785         $proto = 'https';
786         if (is_string(common_config('site', 'sslserver')) &&
787             mb_strlen(common_config('site', 'sslserver')) > 0) {
788             $serverpart = common_config('site', 'sslserver');
789         } else {
790             $serverpart = common_config('site', 'server');
791         }
792     } else {
793         $proto = 'http';
794         $serverpart = common_config('site', 'server');
795     }
796
797     return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
798 }
799
800 function common_date_string($dt)
801 {
802     // XXX: do some sexy date formatting
803     // return date(DATE_RFC822, $dt);
804     $t = strtotime($dt);
805     $now = time();
806     $diff = $now - $t;
807
808     if ($now < $t) { // that shouldn't happen!
809         return common_exact_date($dt);
810     } else if ($diff < 60) {
811         return _('a few seconds ago');
812     } else if ($diff < 92) {
813         return _('about a minute ago');
814     } else if ($diff < 3300) {
815         return sprintf(_('about %d minutes ago'), round($diff/60));
816     } else if ($diff < 5400) {
817         return _('about an hour ago');
818     } else if ($diff < 22 * 3600) {
819         return sprintf(_('about %d hours ago'), round($diff/3600));
820     } else if ($diff < 37 * 3600) {
821         return _('about a day ago');
822     } else if ($diff < 24 * 24 * 3600) {
823         return sprintf(_('about %d days ago'), round($diff/(24*3600)));
824     } else if ($diff < 46 * 24 * 3600) {
825         return _('about a month ago');
826     } else if ($diff < 330 * 24 * 3600) {
827         return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
828     } else if ($diff < 480 * 24 * 3600) {
829         return _('about a year ago');
830     } else {
831         return common_exact_date($dt);
832     }
833 }
834
835 function common_exact_date($dt)
836 {
837     static $_utc;
838     static $_siteTz;
839
840     if (!$_utc) {
841         $_utc = new DateTimeZone('UTC');
842         $_siteTz = new DateTimeZone(common_timezone());
843     }
844
845     $dateStr = date('d F Y H:i:s', strtotime($dt));
846     $d = new DateTime($dateStr, $_utc);
847     $d->setTimezone($_siteTz);
848     return $d->format(DATE_RFC850);
849 }
850
851 function common_date_w3dtf($dt)
852 {
853     $dateStr = date('d F Y H:i:s', strtotime($dt));
854     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
855     $d->setTimezone(new DateTimeZone(common_timezone()));
856     return $d->format(DATE_W3C);
857 }
858
859 function common_date_rfc2822($dt)
860 {
861     $dateStr = date('d F Y H:i:s', strtotime($dt));
862     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
863     $d->setTimezone(new DateTimeZone(common_timezone()));
864     return $d->format('r');
865 }
866
867 function common_date_iso8601($dt)
868 {
869     $dateStr = date('d F Y H:i:s', strtotime($dt));
870     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
871     $d->setTimezone(new DateTimeZone(common_timezone()));
872     return $d->format('c');
873 }
874
875 function common_sql_now()
876 {
877     return common_sql_date(time());
878 }
879
880 function common_sql_date($datetime)
881 {
882     return strftime('%Y-%m-%d %H:%M:%S', $datetime);
883 }
884
885 function common_redirect($url, $code=307)
886 {
887     static $status = array(301 => "Moved Permanently",
888                            302 => "Found",
889                            303 => "See Other",
890                            307 => "Temporary Redirect");
891
892     header('HTTP/1.1 '.$code.' '.$status[$code]);
893     header("Location: $url");
894
895     $xo = new XMLOutputter();
896     $xo->startXML('a',
897                   '-//W3C//DTD XHTML 1.0 Strict//EN',
898                   'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
899     $xo->element('a', array('href' => $url), $url);
900     $xo->endXML();
901     exit;
902 }
903
904 function common_broadcast_notice($notice, $remote=false)
905 {
906     return common_enqueue_notice($notice);
907 }
908
909 // Stick the notice on the queue
910
911 function common_enqueue_notice($notice)
912 {
913     static $localTransports = array('omb',
914                                     'twitter',
915                                     'facebook',
916                                     'ping');
917     static $allTransports = array('sms');
918
919     $transports = $allTransports;
920
921     $xmpp = common_config('xmpp', 'enabled');
922
923     if ($xmpp) {
924         $transports[] = 'jabber';
925     }
926
927     if ($notice->is_local == Notice::LOCAL_PUBLIC ||
928         $notice->is_local == Notice::LOCAL_NONPUBLIC) {
929         $transports = array_merge($transports, $localTransports);
930         if ($xmpp) {
931             $transports[] = 'public';
932         }
933     }
934
935     $qm = QueueManager::get();
936
937     foreach ($transports as $transport)
938     {
939         $qm->enqueue($notice, $transport);
940     }
941
942     return true;
943 }
944
945 function common_broadcast_profile($profile)
946 {
947     // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
948     require_once(INSTALLDIR.'/lib/omb.php');
949     omb_broadcast_profile($profile);
950     // XXX: Other broadcasts...?
951     return true;
952 }
953
954 function common_profile_url($nickname)
955 {
956     return common_local_url('showstream', array('nickname' => $nickname));
957 }
958
959 // Should make up a reasonable root URL
960
961 function common_root_url($ssl=false)
962 {
963     return common_path('', $ssl);
964 }
965
966 // returns $bytes bytes of random data as a hexadecimal string
967 // "good" here is a goal and not a guarantee
968
969 function common_good_rand($bytes)
970 {
971     // XXX: use random.org...?
972     if (@file_exists('/dev/urandom')) {
973         return common_urandom($bytes);
974     } else { // FIXME: this is probably not good enough
975         return common_mtrand($bytes);
976     }
977 }
978
979 function common_urandom($bytes)
980 {
981     $h = fopen('/dev/urandom', 'rb');
982     // should not block
983     $src = fread($h, $bytes);
984     fclose($h);
985     $enc = '';
986     for ($i = 0; $i < $bytes; $i++) {
987         $enc .= sprintf("%02x", (ord($src[$i])));
988     }
989     return $enc;
990 }
991
992 function common_mtrand($bytes)
993 {
994     $enc = '';
995     for ($i = 0; $i < $bytes; $i++) {
996         $enc .= sprintf("%02x", mt_rand(0, 255));
997     }
998     return $enc;
999 }
1000
1001 function common_set_returnto($url)
1002 {
1003     common_ensure_session();
1004     $_SESSION['returnto'] = $url;
1005 }
1006
1007 function common_get_returnto()
1008 {
1009     common_ensure_session();
1010     return $_SESSION['returnto'];
1011 }
1012
1013 function common_timestamp()
1014 {
1015     return date('YmdHis');
1016 }
1017
1018 function common_ensure_syslog()
1019 {
1020     static $initialized = false;
1021     if (!$initialized) {
1022         openlog(common_config('syslog', 'appname'), 0,
1023             common_config('syslog', 'facility'));
1024         $initialized = true;
1025     }
1026 }
1027
1028 function common_log_line($priority, $msg)
1029 {
1030     static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1031                                       'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1032     return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1033 }
1034
1035 function common_log($priority, $msg, $filename=null)
1036 {
1037     $logfile = common_config('site', 'logfile');
1038     if ($logfile) {
1039         $log = fopen($logfile, "a");
1040         if ($log) {
1041             $output = common_log_line($priority, $msg);
1042             fwrite($log, $output);
1043             fclose($log);
1044         }
1045     } else {
1046         common_ensure_syslog();
1047         syslog($priority, $msg);
1048     }
1049 }
1050
1051 function common_debug($msg, $filename=null)
1052 {
1053     if ($filename) {
1054         common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1055     } else {
1056         common_log(LOG_DEBUG, $msg);
1057     }
1058 }
1059
1060 function common_log_db_error(&$object, $verb, $filename=null)
1061 {
1062     $objstr = common_log_objstring($object);
1063     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1064     common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1065 }
1066
1067 function common_log_objstring(&$object)
1068 {
1069     if (is_null($object)) {
1070         return "null";
1071     }
1072     if (!($object instanceof DB_DataObject)) {
1073         return "(unknown)";
1074     }
1075     $arr = $object->toArray();
1076     $fields = array();
1077     foreach ($arr as $k => $v) {
1078         $fields[] = "$k='$v'";
1079     }
1080     $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1081     return $objstring;
1082 }
1083
1084 function common_valid_http_url($url)
1085 {
1086     return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1087 }
1088
1089 function common_valid_tag($tag)
1090 {
1091     if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1092         return (Validate::email($matches[1]) ||
1093                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1094     }
1095     return false;
1096 }
1097
1098 /* Following functions are copied from MediaWiki GlobalFunctions.php
1099  * and written by Evan Prodromou. */
1100
1101 function common_accept_to_prefs($accept, $def = '*/*')
1102 {
1103     // No arg means accept anything (per HTTP spec)
1104     if(!$accept) {
1105         return array($def => 1);
1106     }
1107
1108     $prefs = array();
1109
1110     $parts = explode(',', $accept);
1111
1112     foreach($parts as $part) {
1113         // FIXME: doesn't deal with params like 'text/html; level=1'
1114         @list($value, $qpart) = explode(';', trim($part));
1115         $match = array();
1116         if(!isset($qpart)) {
1117             $prefs[$value] = 1;
1118         } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1119             $prefs[$value] = $match[1];
1120         }
1121     }
1122
1123     return $prefs;
1124 }
1125
1126 function common_mime_type_match($type, $avail)
1127 {
1128     if(array_key_exists($type, $avail)) {
1129         return $type;
1130     } else {
1131         $parts = explode('/', $type);
1132         if(array_key_exists($parts[0] . '/*', $avail)) {
1133             return $parts[0] . '/*';
1134         } elseif(array_key_exists('*/*', $avail)) {
1135             return '*/*';
1136         } else {
1137             return null;
1138         }
1139     }
1140 }
1141
1142 function common_negotiate_type($cprefs, $sprefs)
1143 {
1144     $combine = array();
1145
1146     foreach(array_keys($sprefs) as $type) {
1147         $parts = explode('/', $type);
1148         if($parts[1] != '*') {
1149             $ckey = common_mime_type_match($type, $cprefs);
1150             if($ckey) {
1151                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1152             }
1153         }
1154     }
1155
1156     foreach(array_keys($cprefs) as $type) {
1157         $parts = explode('/', $type);
1158         if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1159             $skey = common_mime_type_match($type, $sprefs);
1160             if($skey) {
1161                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1162             }
1163         }
1164     }
1165
1166     $bestq = 0;
1167     $besttype = 'text/html';
1168
1169     foreach(array_keys($combine) as $type) {
1170         if($combine[$type] > $bestq) {
1171             $besttype = $type;
1172             $bestq = $combine[$type];
1173         }
1174     }
1175
1176     if ('text/html' === $besttype) {
1177         return "text/html; charset=utf-8";
1178     }
1179     return $besttype;
1180 }
1181
1182 function common_config($main, $sub)
1183 {
1184     global $config;
1185     return (array_key_exists($main, $config) &&
1186             array_key_exists($sub, $config[$main])) ? $config[$main][$sub] : false;
1187 }
1188
1189 function common_copy_args($from)
1190 {
1191     $to = array();
1192     $strip = get_magic_quotes_gpc();
1193     foreach ($from as $k => $v) {
1194         $to[$k] = ($strip) ? stripslashes($v) : $v;
1195     }
1196     return $to;
1197 }
1198
1199 // Neutralise the evil effects of magic_quotes_gpc in the current request.
1200 // This is used before handing a request off to OAuthRequest::from_request.
1201 function common_remove_magic_from_request()
1202 {
1203     if(get_magic_quotes_gpc()) {
1204         $_POST=array_map('stripslashes',$_POST);
1205         $_GET=array_map('stripslashes',$_GET);
1206     }
1207 }
1208
1209 function common_user_uri(&$user)
1210 {
1211     return common_local_url('userbyid', array('id' => $user->id));
1212 }
1213
1214 function common_notice_uri(&$notice)
1215 {
1216     return common_local_url('shownotice',
1217                             array('notice' => $notice->id));
1218 }
1219
1220 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1221
1222 function common_confirmation_code($bits)
1223 {
1224     // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1225     static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1226     $chars = ceil($bits/5);
1227     $code = '';
1228     for ($i = 0; $i < $chars; $i++) {
1229         // XXX: convert to string and back
1230         $num = hexdec(common_good_rand(1));
1231         // XXX: randomness is too precious to throw away almost
1232         // 40% of the bits we get!
1233         $code .= $codechars[$num%32];
1234     }
1235     return $code;
1236 }
1237
1238 // convert markup to HTML
1239
1240 function common_markup_to_html($c)
1241 {
1242     $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1243     $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1244     $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1245     return Markdown($c);
1246 }
1247
1248 function common_profile_uri($profile)
1249 {
1250     if (!$profile) {
1251         return null;
1252     }
1253     $user = User::staticGet($profile->id);
1254     if ($user) {
1255         return $user->uri;
1256     }
1257
1258     $remote = Remote_profile::staticGet($profile->id);
1259     if ($remote) {
1260         return $remote->uri;
1261     }
1262     // XXX: this is a very bad profile!
1263     return null;
1264 }
1265
1266 function common_canonical_sms($sms)
1267 {
1268     // strip non-digits
1269     preg_replace('/\D/', '', $sms);
1270     return $sms;
1271 }
1272
1273 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1274 {
1275     switch ($errno) {
1276
1277      case E_ERROR:
1278      case E_COMPILE_ERROR:
1279      case E_CORE_ERROR:
1280      case E_USER_ERROR:
1281      case E_PARSE:
1282      case E_RECOVERABLE_ERROR:
1283         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [ABORT]");
1284         die();
1285         break;
1286
1287      case E_WARNING:
1288      case E_COMPILE_WARNING:
1289      case E_CORE_WARNING:
1290      case E_USER_WARNING:
1291         common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1292         break;
1293
1294      case E_NOTICE:
1295      case E_USER_NOTICE:
1296         common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1297         break;
1298
1299      case E_STRICT:
1300      case E_DEPRECATED:
1301      case E_USER_DEPRECATED:
1302         // XXX: config variable to log this stuff, too
1303         break;
1304
1305      default:
1306         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [UNKNOWN LEVEL, die()'ing]");
1307         die();
1308         break;
1309     }
1310
1311     // FIXME: show error page if we're on the Web
1312     /* Don't execute PHP internal error handler */
1313     return true;
1314 }
1315
1316 function common_session_token()
1317 {
1318     common_ensure_session();
1319     if (!array_key_exists('token', $_SESSION)) {
1320         $_SESSION['token'] = common_good_rand(64);
1321     }
1322     return $_SESSION['token'];
1323 }
1324
1325 function common_cache_key($extra)
1326 {
1327     $base_key = common_config('memcached', 'base');
1328
1329     if (empty($base_key)) {
1330         $base_key = common_keyize(common_config('site', 'name'));
1331     }
1332
1333     return 'laconica:' . $base_key . ':' . $extra;
1334 }
1335
1336 function common_keyize($str)
1337 {
1338     $str = strtolower($str);
1339     $str = preg_replace('/\s/', '_', $str);
1340     return $str;
1341 }
1342
1343 function common_memcache()
1344 {
1345     static $cache = null;
1346     if (!common_config('memcached', 'enabled')) {
1347         return null;
1348     } else {
1349         if (!$cache) {
1350             $cache = new Memcache();
1351             $servers = common_config('memcached', 'server');
1352             if (is_array($servers)) {
1353                 foreach($servers as $server) {
1354                     $cache->addServer($server);
1355                 }
1356             } else {
1357                 $cache->addServer($servers);
1358             }
1359         }
1360         return $cache;
1361     }
1362 }
1363
1364 function common_compatible_license($from, $to)
1365 {
1366     // XXX: better compatibility check needed here!
1367     return ($from == $to);
1368 }
1369
1370 /**
1371  * returns a quoted table name, if required according to config
1372  */
1373 function common_database_tablename($tablename)
1374 {
1375
1376   if(common_config('db','quote_identifiers')) {
1377       $tablename = '"'. $tablename .'"';
1378   }
1379   //table prefixes could be added here later
1380   return $tablename;
1381 }
1382
1383 function common_shorten_url($long_url)
1384 {
1385     $user = common_current_user();
1386     if (empty($user)) {
1387         // common current user does not find a user when called from the XMPP daemon
1388         // therefore we'll set one here fix, so that XMPP given URLs may be shortened
1389         $svc = 'ur1.ca';
1390     } else {
1391         $svc = $user->urlshorteningservice;
1392     }
1393
1394     $curlh = curl_init();
1395     curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait
1396     curl_setopt($curlh, CURLOPT_USERAGENT, 'Laconica');
1397     curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
1398
1399     switch($svc) {
1400      case 'ur1.ca':
1401         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1402         $short_url_service = new LilUrl;
1403         $short_url = $short_url_service->shorten($long_url);
1404         break;
1405
1406      case '2tu.us':
1407         $short_url_service = new TightUrl;
1408         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1409         $short_url = $short_url_service->shorten($long_url);
1410         break;
1411
1412      case 'ptiturl.com':
1413         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1414         $short_url_service = new PtitUrl;
1415         $short_url = $short_url_service->shorten($long_url);
1416         break;
1417
1418      case 'bit.ly':
1419         curl_setopt($curlh, CURLOPT_URL, 'http://bit.ly/api?method=shorten&long_url='.urlencode($long_url));
1420         $short_url = current(json_decode(curl_exec($curlh))->results)->hashUrl;
1421         break;
1422
1423      case 'is.gd':
1424         curl_setopt($curlh, CURLOPT_URL, 'http://is.gd/api.php?longurl='.urlencode($long_url));
1425         $short_url = curl_exec($curlh);
1426         break;
1427      case 'snipr.com':
1428         curl_setopt($curlh, CURLOPT_URL, 'http://snipr.com/site/snip?r=simple&link='.urlencode($long_url));
1429         $short_url = curl_exec($curlh);
1430         break;
1431      case 'metamark.net':
1432         curl_setopt($curlh, CURLOPT_URL, 'http://metamark.net/api/rest/simple?long_url='.urlencode($long_url));
1433         $short_url = curl_exec($curlh);
1434         break;
1435      case 'tinyurl.com':
1436         curl_setopt($curlh, CURLOPT_URL, 'http://tinyurl.com/api-create.php?url='.urlencode($long_url));
1437         $short_url = curl_exec($curlh);
1438         break;
1439      default:
1440         $short_url = false;
1441     }
1442
1443     curl_close($curlh);
1444
1445     return $short_url;
1446 }
1447
1448 function common_client_ip()
1449 {
1450     if (!isset($_SERVER) || !array_key_exists('REQUEST_METHOD', $_SERVER)) {
1451         return null;
1452     }
1453
1454     if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) {
1455         if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1456             $proxy = $_SERVER['HTTP_CLIENT_IP'];
1457         } else {
1458             $proxy = $_SERVER['REMOTE_ADDR'];
1459         }
1460         $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1461     } else {
1462         $proxy = null;
1463         if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1464             $ip = $_SERVER['HTTP_CLIENT_IP'];
1465         } else {
1466             $ip = $_SERVER['REMOTE_ADDR'];
1467         }
1468     }
1469
1470     return array($proxy, $ip);
1471 }