]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
Merge branch '0.8.x' of git://gitorious.org/laconica/dev into 0.8.x
[quix0rs-gnu-social.git] / lib / util.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, 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     global $config;
76     return $config['site']['timezone'];
77 }
78
79 function common_language()
80 {
81
82     // If there is a user logged in and they've set a language preference
83     // then return that one...
84     if (_have_config() && common_logged_in()) {
85         $user = common_current_user();
86         $user_language = $user->language;
87         if ($user_language)
88           return $user_language;
89     }
90
91     // Otherwise, find the best match for the languages requested by the
92     // user's browser...
93     $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : null;
94     if (!empty($httplang)) {
95         $language = client_prefered_language($httplang);
96         if ($language)
97           return $language;
98     }
99
100     // Finally, if none of the above worked, use the site's default...
101     return common_config('site', 'language');
102 }
103 // salted, hashed passwords are stored in the DB
104
105 function common_munge_password($password, $id)
106 {
107     return md5($password . $id);
108 }
109
110 // check if a username exists and has matching password
111 function common_check_user($nickname, $password)
112 {
113     // NEVER allow blank passwords, even if they match the DB
114     if (mb_strlen($password) == 0) {
115         return false;
116     }
117     $user = User::staticGet('nickname', $nickname);
118     if (is_null($user)) {
119         return false;
120     } else {
121         if (0 == strcmp(common_munge_password($password, $user->id),
122                         $user->password)) {
123             return $user;
124         } else {
125             return false;
126         }
127     }
128 }
129
130 // is the current user logged in?
131 function common_logged_in()
132 {
133     return (!is_null(common_current_user()));
134 }
135
136 function common_have_session()
137 {
138     return (0 != strcmp(session_id(), ''));
139 }
140
141 function common_ensure_session()
142 {
143     if (!common_have_session()) {
144         @session_start();
145     }
146 }
147
148 // Three kinds of arguments:
149 // 1) a user object
150 // 2) a nickname
151 // 3) null to clear
152
153 // Initialize to false; set to null if none found
154
155 $_cur = false;
156
157 function common_set_user($user)
158 {
159
160     global $_cur;
161
162     if (is_null($user) && common_have_session()) {
163         $_cur = null;
164         unset($_SESSION['userid']);
165         return true;
166     } else if (is_string($user)) {
167         $nickname = $user;
168         $user = User::staticGet('nickname', $nickname);
169     } else if (!($user instanceof User)) {
170         return false;
171     }
172
173     if ($user) {
174         common_ensure_session();
175         $_SESSION['userid'] = $user->id;
176         $_cur = $user;
177         return $_cur;
178     }
179     return false;
180 }
181
182 function common_set_cookie($key, $value, $expiration=0)
183 {
184     $path = common_config('site', 'path');
185     $server = common_config('site', 'server');
186
187     if ($path && ($path != '/')) {
188         $cookiepath = '/' . $path . '/';
189     } else {
190         $cookiepath = '/';
191     }
192     return setcookie($key,
193                      $value,
194                      $expiration,
195                      $cookiepath,
196                      $server);
197 }
198
199 define('REMEMBERME', 'rememberme');
200 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); // 30 days
201
202 function common_rememberme($user=null)
203 {
204     if (!$user) {
205         $user = common_current_user();
206         if (!$user) {
207             common_debug('No current user to remember', __FILE__);
208             return false;
209         }
210     }
211
212     $rm = new Remember_me();
213
214     $rm->code = common_good_rand(16);
215     $rm->user_id = $user->id;
216
217     // Wrap the insert in some good ol' fashioned transaction code
218
219     $rm->query('BEGIN');
220
221     $result = $rm->insert();
222
223     if (!$result) {
224         common_log_db_error($rm, 'INSERT', __FILE__);
225         common_debug('Error adding rememberme record for ' . $user->nickname, __FILE__);
226         return false;
227     }
228
229     $rm->query('COMMIT');
230
231     common_debug('Inserted rememberme record (' . $rm->code . ', ' . $rm->user_id . '); result = ' . $result . '.', __FILE__);
232
233     $cookieval = $rm->user_id . ':' . $rm->code;
234
235     common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
236
237     common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
238
239     return true;
240 }
241
242 function common_remembered_user()
243 {
244
245     $user = null;
246
247     $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null;
248
249     if (!$packed) {
250         return null;
251     }
252
253     list($id, $code) = explode(':', $packed);
254
255     if (!$id || !$code) {
256         common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
257         common_forgetme();
258         return null;
259     }
260
261     $rm = Remember_me::staticGet($code);
262
263     if (!$rm) {
264         common_log(LOG_WARNING, 'No such remember code: ' . $code);
265         common_forgetme();
266         return null;
267     }
268
269     if ($rm->user_id != $id) {
270         common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
271         common_forgetme();
272         return null;
273     }
274
275     $user = User::staticGet($rm->user_id);
276
277     if (!$user) {
278         common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
279         common_forgetme();
280         return null;
281     }
282
283     // successful!
284     $result = $rm->delete();
285
286     if (!$result) {
287         common_log_db_error($rm, 'DELETE', __FILE__);
288         common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
289         common_forgetme();
290         return null;
291     }
292
293     common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
294
295     common_set_user($user);
296     common_real_login(false);
297
298     // We issue a new cookie, so they can log in
299     // automatically again after this session
300
301     common_rememberme($user);
302
303     return $user;
304 }
305
306 // must be called with a valid user!
307
308 function common_forgetme()
309 {
310     common_set_cookie(REMEMBERME, '', 0);
311 }
312
313 // who is the current user?
314 function common_current_user()
315 {
316     global $_cur;
317
318     if (!_have_config()) {
319         return null;
320     }
321
322     if ($_cur === false) {
323
324         if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
325             common_ensure_session();
326             $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
327             if ($id) {
328                 $_cur = User::staticGet($id);
329                 return $_cur;
330             }
331         }
332
333         // that didn't work; try to remember; will init $_cur to null on failure
334         $_cur = common_remembered_user();
335
336         if ($_cur) {
337             common_debug("Got User " . $_cur->nickname);
338             common_debug("Faking session on remembered user");
339             // XXX: Is this necessary?
340             $_SESSION['userid'] = $_cur->id;
341         }
342     }
343
344     return $_cur;
345 }
346
347 // Logins that are 'remembered' aren't 'real' -- they're subject to
348 // cookie-stealing. So, we don't let them do certain things. New reg,
349 // OpenID, and password logins _are_ real.
350
351 function common_real_login($real=true)
352 {
353     common_ensure_session();
354     $_SESSION['real_login'] = $real;
355 }
356
357 function common_is_real_login()
358 {
359     return common_logged_in() && $_SESSION['real_login'];
360 }
361
362 // get canonical version of nickname for comparison
363 function common_canonical_nickname($nickname)
364 {
365     // XXX: UTF-8 canonicalization (like combining chars)
366     return strtolower($nickname);
367 }
368
369 // get canonical version of email for comparison
370 function common_canonical_email($email)
371 {
372     // XXX: canonicalize UTF-8
373     // XXX: lcase the domain part
374     return $email;
375 }
376
377 function common_render_content($text, $notice)
378 {
379     $r = common_render_text($text);
380     $id = $notice->profile_id;
381     $r = preg_replace('/(^|\s+)@([A-Za-z0-9]{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
382     $r = preg_replace('/^T ([A-Z0-9]{1,64}) /e', "'T '.common_at_link($id, '\\1').' '", $r);
383     $r = preg_replace('/(^|\s+)@#([A-Za-z0-9]{1,64})/e', "'\\1@#'.common_at_hash_link($id, '\\2')", $r);
384     $r = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r);
385     return $r;
386 }
387
388 function common_render_text($text)
389 {
390     $r = htmlspecialchars($text);
391
392     $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
393     $r = common_replace_urls_callback($r, 'common_linkify');
394     $r = preg_replace('/(^|\(|\[|\s+)#([A-Za-z0-9_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
395     // XXX: machine tags
396     return $r;
397 }
398
399 function common_replace_urls_callback($text, $callback) {
400     // Start off with a regex
401     $regex = '#'.
402     '(?:'.
403         '(?:'.
404             '(?:https?|ftps?|mms|rtsp|gopher|news|nntp|telnet|wais|file|prospero|webcal|xmpp|irc)://'.
405             '|'.
406             '(?:mailto|aim|tel):'.
407         ')'.
408         '[^.\s]+\.[^\s]+'.
409         '|'.
410         '(?:[^.\s/:]+\.)+'.
411         '(?:museum|travel|[a-z]{2,4})'.
412         '(?:[:/][^\s]*)?'.
413     ')'.
414     '#ix';
415     preg_match_all($regex, $text, $matches);
416
417     // Then clean up what the regex left behind
418     $offset = 0;
419     foreach($matches[0] as $orig_url) {
420         $url = htmlspecialchars_decode($orig_url);
421
422         // Make sure we didn't pick up an email address
423         if (preg_match('#^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$#i', $url)) continue;
424
425         // Remove surrounding punctuation
426         $url = trim($url, '.?!,;:\'"`([<');
427
428         // Remove surrounding parens and the like
429         preg_match('/[)\]>]+$/', $url, $trailing);
430         if (isset($trailing[0])) {
431             preg_match_all('/[(\[<]/', $url, $opened);
432             preg_match_all('/[)\]>]/', $url, $closed);
433             $unopened = count($closed[0]) - count($opened[0]);
434
435             // Make sure not to take off more closing parens than there are at the end
436             $unopened = ($unopened > mb_strlen($trailing[0])) ? mb_strlen($trailing[0]):$unopened;
437
438             $url = ($unopened > 0) ? mb_substr($url, 0, $unopened * -1):$url;
439         }
440
441         // Remove trailing punctuation again (in case there were some inside parens)
442         $url = rtrim($url, '.?!,;:\'"`');
443
444         // Make sure we didn't capture part of the next sentence
445         preg_match('#((?:[^.\s/]+\.)+)(museum|travel|[a-z]{2,4})#i', $url, $url_parts);
446
447         // Were the parts capitalized any?
448         $last_part = (mb_strtolower($url_parts[2]) !== $url_parts[2]) ? true:false;
449         $prev_part = (mb_strtolower($url_parts[1]) !== $url_parts[1]) ? true:false;
450
451         // If the first part wasn't cap'd but the last part was, we captured too much
452         if ((!$prev_part && $last_part)) {
453             $url = mb_substr($url, 0 , mb_strpos($url, '.'.$url_parts['2'], 0));
454         }
455
456         // Capture the new TLD
457         preg_match('#((?:[^.\s/]+\.)+)(museum|travel|[a-z]{2,4})#i', $url, $url_parts);
458
459         $tlds = array('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', 'ye', 'yt', 'yu', 'za', 'zm', 'zw');
460
461         if (!in_array($url_parts[2], $tlds)) continue;
462
463         // Make sure we didn't capture a hash tag
464         if (strpos($url, '#') === 0) continue;
465
466         // Put the url back the way we found it.
467         $url = (mb_strpos($orig_url, htmlspecialchars($url)) === FALSE) ? $url:htmlspecialchars($url);
468
469         // Call user specified func
470         $modified_url = $callback($url);
471
472         // Replace it!
473         $start = mb_strpos($text, $url, $offset);
474         $text = mb_substr($text, 0, $start).$modified_url.mb_substr($text, $start + mb_strlen($url), mb_strlen($text));
475         $offset = $start + mb_strlen($modified_url);
476     }
477
478     return $text;
479 }
480
481 function common_linkify($url) {
482     // It comes in special'd, so we unspecial it before passing to the stringifying
483     // functions
484     $ext = pathinfo($url, PATHINFO_EXTENSION);
485     $url = htmlspecialchars_decode($url);
486     $video_ext = array('mp4', 'flv', 'avi', 'mpg', 'mp3', 'ogg');
487     $display = $url;
488     $url = (!preg_match('#^([a-z]+://|(mailto|aim|tel):)#i', $url)) ? 'http://'.$url : $url;
489
490     $attrs = array('href' => $url, 'rel' => 'external');
491
492     if (in_array($ext, $video_ext)) {
493         $attrs['class'] = 'media';
494     }
495
496     if ($longurl = common_longurl($url)) {
497         $attrs['title'] = $longurl;
498     }
499
500     return XMLStringer::estring('a', $attrs, $display);
501 }
502
503 function common_longurl($short_url)
504 {
505     $long_url = common_shorten_link($short_url, true);
506     if ($long_url === $short_url) return false;
507     return $long_url;
508 }
509
510 function common_longurl2($uri)
511 {
512     $uri_e = urlencode($uri);
513     $longurl = unserialize(file_get_contents("http://api.longurl.org/v1/expand?format=php&url=$uri_e"));
514     if (empty($longurl['long_url']) || $uri === $longurl['long_url']) return false;
515     return stripslashes($longurl['long_url']);
516 }
517
518 function common_shorten_links($text)
519 {
520     if (mb_strlen($text) <= 140) return $text;
521     static $cache = array();
522     if (isset($cache[$text])) return $cache[$text];
523     // \s = not a horizontal whitespace character (since PHP 5.2.4)
524     return $cache[$text] = common_replace_urls_callback($text, 'common_shorten_link');;
525 }
526
527 function common_shorten_link($url, $reverse = false)
528 {
529     static $url_cache = array();
530     if ($reverse) return isset($url_cache[$url]) ? $url_cache[$url] : $url;
531
532     $user = common_current_user();
533
534     $curlh = curl_init();
535     curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait
536     curl_setopt($curlh, CURLOPT_USERAGENT, 'Laconica');
537     curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
538
539     switch($user->urlshorteningservice) {
540      case 'ur1.ca':
541         $short_url_service = new LilUrl;
542         $short_url = $short_url_service->shorten($url);
543         break;
544
545      case '2tu.us':
546         $short_url_service = new TightUrl;
547         $short_url = $short_url_service->shorten($url);
548         break;
549
550      case 'ptiturl.com':
551         $short_url_service = new PtitUrl;
552         $short_url = $short_url_service->shorten($url);
553         break;
554
555      case 'bit.ly':
556         curl_setopt($curlh, CURLOPT_URL, 'http://bit.ly/api?method=shorten&long_url='.urlencode($url));
557         $short_url = current(json_decode(curl_exec($curlh))->results)->hashUrl;
558         break;
559
560      case 'is.gd':
561         curl_setopt($curlh, CURLOPT_URL, 'http://is.gd/api.php?longurl='.urlencode($url));
562         $short_url = curl_exec($curlh);
563         break;
564      case 'snipr.com':
565         curl_setopt($curlh, CURLOPT_URL, 'http://snipr.com/site/snip?r=simple&link='.urlencode($url));
566         $short_url = curl_exec($curlh);
567         break;
568      case 'metamark.net':
569         curl_setopt($curlh, CURLOPT_URL, 'http://metamark.net/api/rest/simple?long_url='.urlencode($url));
570         $short_url = curl_exec($curlh);
571         break;
572      case 'tinyurl.com':
573         curl_setopt($curlh, CURLOPT_URL, 'http://tinyurl.com/api-create.php?url='.urlencode($url));
574         $short_url = curl_exec($curlh);
575         break;
576      default:
577         $short_url = false;
578     }
579
580     curl_close($curlh);
581
582     if ($short_url) {
583         $url_cache[(string)$short_url] = $url;
584         return (string)$short_url;
585     }
586     return $url;
587 }
588
589 function common_xml_safe_str($str)
590 {
591     $xmlStr = htmlentities(iconv('UTF-8', 'UTF-8//IGNORE', $str), ENT_NOQUOTES, 'UTF-8');
592
593     // Replace control, formatting, and surrogate characters with '*', ala Twitter
594     return preg_replace('/[\p{Cc}\p{Cf}\p{Cs}]/u', '*', $str);
595 }
596
597 function common_tag_link($tag)
598 {
599     $canonical = common_canonical_tag($tag);
600     $url = common_local_url('tag', array('tag' => $canonical));
601     $xs = new XMLStringer();
602     $xs->elementStart('span', 'tag');
603     $xs->element('a', array('href' => $url,
604                             'rel' => 'tag'),
605                  $tag);
606     $xs->elementEnd('span');
607     return $xs->getString();
608 }
609
610 function common_canonical_tag($tag)
611 {
612     return strtolower(str_replace(array('-', '_', '.'), '', $tag));
613 }
614
615 function common_valid_profile_tag($str)
616 {
617     return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
618 }
619
620 function common_at_link($sender_id, $nickname)
621 {
622     $sender = Profile::staticGet($sender_id);
623     $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
624     if ($recipient) {
625         $user = User::staticGet('id', $recipient->id);
626         if ($user) {
627             $url = common_local_url('userbyid', array('id' => $user->id));
628         } else {
629             $url = $recipient->profileurl;
630         }
631         $xs = new XMLStringer(false);
632         $xs->elementStart('span', 'vcard');
633         $xs->elementStart('a', array('href' => $url,
634                                      'class' => 'url'));
635         $xs->element('span', 'fn nickname', $nickname);
636         $xs->elementEnd('a');
637         $xs->elementEnd('span');
638         return $xs->getString();
639     } else {
640         return $nickname;
641     }
642 }
643
644 function common_group_link($sender_id, $nickname)
645 {
646     $sender = Profile::staticGet($sender_id);
647     $group = User_group::staticGet('nickname', common_canonical_nickname($nickname));
648     if ($group && $sender->isMember($group)) {
649         $xs = new XMLStringer();
650         $xs->elementStart('span', 'vcard');
651         $xs->elementStart('a', array('href' => $group->permalink(),
652                                      'class' => 'url'));
653         $xs->element('span', 'fn nickname', $nickname);
654         $xs->elementEnd('a');
655         $xs->elementEnd('span');
656         return $xs->getString();
657     } else {
658         return $nickname;
659     }
660 }
661
662 function common_at_hash_link($sender_id, $tag)
663 {
664     $user = User::staticGet($sender_id);
665     if (!$user) {
666         return $tag;
667     }
668     $tagged = Profile_tag::getTagged($user->id, common_canonical_tag($tag));
669     if ($tagged) {
670         $url = common_local_url('subscriptions',
671                                 array('nickname' => $user->nickname,
672                                       'tag' => $tag));
673         $xs = new XMLStringer();
674         $xs->elementStart('span', 'tag');
675         $xs->element('a', array('href' => $url,
676                                 'rel' => $tag),
677                      $tag);
678         $xs->elementEnd('span');
679         return $xs->getString();
680     } else {
681         return $tag;
682     }
683 }
684
685 function common_relative_profile($sender, $nickname, $dt=null)
686 {
687     // Try to find profiles this profile is subscribed to that have this nickname
688     $recipient = new Profile();
689     // XXX: use a join instead of a subquery
690     $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
691     $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
692     if ($recipient->find(true)) {
693         // XXX: should probably differentiate between profiles with
694         // the same name by date of most recent update
695         return $recipient;
696     }
697     // Try to find profiles that listen to this profile and that have this nickname
698     $recipient = new Profile();
699     // XXX: use a join instead of a subquery
700     $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
701     $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
702     if ($recipient->find(true)) {
703         // XXX: should probably differentiate between profiles with
704         // the same name by date of most recent update
705         return $recipient;
706     }
707     // If this is a local user, try to find a local user with that nickname.
708     $sender = User::staticGet($sender->id);
709     if ($sender) {
710         $recipient_user = User::staticGet('nickname', $nickname);
711         if ($recipient_user) {
712             return $recipient_user->getProfile();
713         }
714     }
715     // Otherwise, no links. @messages from local users to remote users,
716     // or from remote users to other remote users, are just
717     // outside our ability to make intelligent guesses about
718     return null;
719 }
720
721 function common_local_url($action, $args=null, $params=null, $fragment=null)
722 {
723     $r = Router::get();
724     $path = $r->build($action, $args, $params, $fragment);
725     if ($path) {
726     }
727     if (common_config('site','fancy')) {
728         $url = common_path(mb_substr($path, 1));
729     } else {
730         $url = common_path('index.php'.$path);
731     }
732     return $url;
733 }
734
735 function common_path($relative)
736 {
737     global $config;
738     $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
739     return "http://".$config['site']['server'].'/'.$pathpart.$relative;
740 }
741
742 function common_date_string($dt)
743 {
744     // XXX: do some sexy date formatting
745     // return date(DATE_RFC822, $dt);
746     $t = strtotime($dt);
747     $now = time();
748     $diff = $now - $t;
749
750     if ($now < $t) { // that shouldn't happen!
751         return common_exact_date($dt);
752     } else if ($diff < 60) {
753         return _('a few seconds ago');
754     } else if ($diff < 92) {
755         return _('about a minute ago');
756     } else if ($diff < 3300) {
757         return sprintf(_('about %d minutes ago'), round($diff/60));
758     } else if ($diff < 5400) {
759         return _('about an hour ago');
760     } else if ($diff < 22 * 3600) {
761         return sprintf(_('about %d hours ago'), round($diff/3600));
762     } else if ($diff < 37 * 3600) {
763         return _('about a day ago');
764     } else if ($diff < 24 * 24 * 3600) {
765         return sprintf(_('about %d days ago'), round($diff/(24*3600)));
766     } else if ($diff < 46 * 24 * 3600) {
767         return _('about a month ago');
768     } else if ($diff < 330 * 24 * 3600) {
769         return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
770     } else if ($diff < 480 * 24 * 3600) {
771         return _('about a year ago');
772     } else {
773         return common_exact_date($dt);
774     }
775 }
776
777 function common_exact_date($dt)
778 {
779     static $_utc;
780     static $_siteTz;
781
782     if (!$_utc) {
783         $_utc = new DateTimeZone('UTC');
784         $_siteTz = new DateTimeZone(common_timezone());
785     }
786
787     $dateStr = date('d F Y H:i:s', strtotime($dt));
788     $d = new DateTime($dateStr, $_utc);
789     $d->setTimezone($_siteTz);
790     return $d->format(DATE_RFC850);
791 }
792
793 function common_date_w3dtf($dt)
794 {
795     $dateStr = date('d F Y H:i:s', strtotime($dt));
796     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
797     $d->setTimezone(new DateTimeZone(common_timezone()));
798     return $d->format(DATE_W3C);
799 }
800
801 function common_date_rfc2822($dt)
802 {
803     $dateStr = date('d F Y H:i:s', strtotime($dt));
804     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
805     $d->setTimezone(new DateTimeZone(common_timezone()));
806     return $d->format('r');
807 }
808
809 function common_date_iso8601($dt)
810 {
811     $dateStr = date('d F Y H:i:s', strtotime($dt));
812     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
813     $d->setTimezone(new DateTimeZone(common_timezone()));
814     return $d->format('c');
815 }
816
817 function common_sql_now()
818 {
819     return strftime('%Y-%m-%d %H:%M:%S', time());
820 }
821
822 function common_redirect($url, $code=307)
823 {
824     static $status = array(301 => "Moved Permanently",
825                            302 => "Found",
826                            303 => "See Other",
827                            307 => "Temporary Redirect");
828
829     header("Status: ${code} $status[$code]");
830     header("Location: $url");
831
832     $xo = new XMLOutputter();
833     $xo->startXML('a',
834                   '-//W3C//DTD XHTML 1.0 Strict//EN',
835                   'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
836     $xo->element('a', array('href' => $url), $url);
837     $xo->endXML();
838     exit;
839 }
840
841 function common_broadcast_notice($notice, $remote=false)
842 {
843     if (common_config('queue', 'enabled')) {
844         // Do it later!
845         return common_enqueue_notice($notice);
846     } else {
847         return common_real_broadcast($notice, $remote);
848     }
849 }
850
851 // Stick the notice on the queue
852
853 function common_enqueue_notice($notice)
854 {
855     if (common_config('queue','subsystem') == 'stomp') {
856         // use an external message queue system via STOMP
857         require_once("Stomp.php");
858         $con = new Stomp(common_config('queue','stomp_server'));
859         if (!$con->connect()) {
860                 common_log(LOG_ERR, 'Failed to connect to queue server');
861                 return false;
862         }
863         $queue_basename = common_config('queue','queue_basename');
864         foreach (array('jabber', 'omb', 'sms', 'public', 'twitter', 'facebook', 'ping') as $transport) {
865                 if (!$con->send(
866                         '/queue/'.$queue_basename.'-'.$transport, // QUEUE
867                         $notice->id,            // BODY of the message
868                         array (                 // HEADERS of the msg
869                         'created' => $notice->created
870                         ))) {
871                         common_log(LOG_ERR, 'Error sending to '.$transport.' queue');
872                         return false;
873                 }
874         common_log(LOG_DEBUG, 'complete remote queueing notice ID = ' . $notice->id . ' for ' . $transport);
875         }
876         $con->send('/topic/laconica.'.$notice->profile_id,
877                         $notice->content,
878                         array(
879                                 'profile_id' => $notice->profile_id,
880                                 'created' => $notice->created
881                                 )
882                         );
883         $con->send('/topic/laconica.allusers',
884                         $notice->content,
885                         array(
886                                 'profile_id' => $notice->profile_id,
887                                 'created' => $notice->created
888                                 )
889                         );
890         $result = true;
891     }
892     else {
893         // in any other case, 'internal'
894         foreach (array('jabber', 'omb', 'sms', 'public', 'twitter', 'facebook', 'ping') as $transport) {
895                 $qi = new Queue_item();
896                 $qi->notice_id = $notice->id;
897                 $qi->transport = $transport;
898                 $qi->created = $notice->created;
899                 $result = $qi->insert();
900                 if (!$result) {
901                     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
902                     common_log(LOG_ERR, 'DB error inserting queue item: ' . $last_error->message);
903                     return false;
904                 }
905                 common_log(LOG_DEBUG, 'complete queueing notice ID = ' . $notice->id . ' for ' . $transport);
906         }
907     }
908     return $result;
909 }
910
911 function common_real_broadcast($notice, $remote=false)
912 {
913     $success = true;
914     if (!$remote) {
915         // Make sure we have the OMB stuff
916         require_once(INSTALLDIR.'/lib/omb.php');
917         $success = omb_broadcast_remote_subscribers($notice);
918         if (!$success) {
919             common_log(LOG_ERR, 'Error in OMB broadcast for notice ' . $notice->id);
920         }
921     }
922     if ($success) {
923         require_once(INSTALLDIR.'/lib/jabber.php');
924         $success = jabber_broadcast_notice($notice);
925         if (!$success) {
926             common_log(LOG_ERR, 'Error in jabber broadcast for notice ' . $notice->id);
927         }
928     }
929     if ($success) {
930         require_once(INSTALLDIR.'/lib/mail.php');
931         $success = mail_broadcast_notice_sms($notice);
932         if (!$success) {
933             common_log(LOG_ERR, 'Error in sms broadcast for notice ' . $notice->id);
934         }
935     }
936     if ($success) {
937         $success = jabber_public_notice($notice);
938         if (!$success) {
939             common_log(LOG_ERR, 'Error in public broadcast for notice ' . $notice->id);
940         }
941     }
942     if ($success) {
943         $success = broadcast_twitter($notice);
944         if (!$success) {
945             common_log(LOG_ERR, 'Error in Twitter broadcast for notice ' . $notice->id);
946         }
947     }
948
949     // XXX: Do a real-time FB broadcast here?
950
951     // XXX: broadcast notices to other IM
952     return $success;
953 }
954
955 function common_broadcast_profile($profile)
956 {
957     // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
958     require_once(INSTALLDIR.'/lib/omb.php');
959     omb_broadcast_profile($profile);
960     // XXX: Other broadcasts...?
961     return true;
962 }
963
964 function common_profile_url($nickname)
965 {
966     return common_local_url('showstream', array('nickname' => $nickname));
967 }
968
969 // Should make up a reasonable root URL
970
971 function common_root_url()
972 {
973     return common_path('');
974 }
975
976 // returns $bytes bytes of random data as a hexadecimal string
977 // "good" here is a goal and not a guarantee
978
979 function common_good_rand($bytes)
980 {
981     // XXX: use random.org...?
982     if (file_exists('/dev/urandom')) {
983         return common_urandom($bytes);
984     } else { // FIXME: this is probably not good enough
985         return common_mtrand($bytes);
986     }
987 }
988
989 function common_urandom($bytes)
990 {
991     $h = fopen('/dev/urandom', 'rb');
992     // should not block
993     $src = fread($h, $bytes);
994     fclose($h);
995     $enc = '';
996     for ($i = 0; $i < $bytes; $i++) {
997         $enc .= sprintf("%02x", (ord($src[$i])));
998     }
999     return $enc;
1000 }
1001
1002 function common_mtrand($bytes)
1003 {
1004     $enc = '';
1005     for ($i = 0; $i < $bytes; $i++) {
1006         $enc .= sprintf("%02x", mt_rand(0, 255));
1007     }
1008     return $enc;
1009 }
1010
1011 function common_set_returnto($url)
1012 {
1013     common_ensure_session();
1014     $_SESSION['returnto'] = $url;
1015 }
1016
1017 function common_get_returnto()
1018 {
1019     common_ensure_session();
1020     return $_SESSION['returnto'];
1021 }
1022
1023 function common_timestamp()
1024 {
1025     return date('YmdHis');
1026 }
1027
1028 function common_ensure_syslog()
1029 {
1030     static $initialized = false;
1031     if (!$initialized) {
1032         global $config;
1033         openlog($config['syslog']['appname'], 0, LOG_USER);
1034         $initialized = true;
1035     }
1036 }
1037
1038 function common_log($priority, $msg, $filename=null)
1039 {
1040     $logfile = common_config('site', 'logfile');
1041     if ($logfile) {
1042         $log = fopen($logfile, "a");
1043         if ($log) {
1044             static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1045                                               'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1046             $output = date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1047             fwrite($log, $output);
1048             fclose($log);
1049         }
1050     } else {
1051         common_ensure_syslog();
1052         syslog($priority, $msg);
1053     }
1054 }
1055
1056 function common_debug($msg, $filename=null)
1057 {
1058     if ($filename) {
1059         common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1060     } else {
1061         common_log(LOG_DEBUG, $msg);
1062     }
1063 }
1064
1065 function common_log_db_error(&$object, $verb, $filename=null)
1066 {
1067     $objstr = common_log_objstring($object);
1068     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1069     common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1070 }
1071
1072 function common_log_objstring(&$object)
1073 {
1074     if (is_null($object)) {
1075         return "null";
1076     }
1077     $arr = $object->toArray();
1078     $fields = array();
1079     foreach ($arr as $k => $v) {
1080         $fields[] = "$k='$v'";
1081     }
1082     $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1083     return $objstring;
1084 }
1085
1086 function common_valid_http_url($url)
1087 {
1088     return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1089 }
1090
1091 function common_valid_tag($tag)
1092 {
1093     if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1094         return (Validate::email($matches[1]) ||
1095                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1096     }
1097     return false;
1098 }
1099
1100 /* Following functions are copied from MediaWiki GlobalFunctions.php
1101  * and written by Evan Prodromou. */
1102
1103 function common_accept_to_prefs($accept, $def = '*/*')
1104 {
1105     // No arg means accept anything (per HTTP spec)
1106     if(!$accept) {
1107         return array($def => 1);
1108     }
1109
1110     $prefs = array();
1111
1112     $parts = explode(',', $accept);
1113
1114     foreach($parts as $part) {
1115         // FIXME: doesn't deal with params like 'text/html; level=1'
1116         @list($value, $qpart) = explode(';', $part);
1117         $match = array();
1118         if(!isset($qpart)) {
1119             $prefs[$value] = 1;
1120         } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1121             $prefs[$value] = $match[1];
1122         }
1123     }
1124
1125     return $prefs;
1126 }
1127
1128 function common_mime_type_match($type, $avail)
1129 {
1130     if(array_key_exists($type, $avail)) {
1131         return $type;
1132     } else {
1133         $parts = explode('/', $type);
1134         if(array_key_exists($parts[0] . '/*', $avail)) {
1135             return $parts[0] . '/*';
1136         } elseif(array_key_exists('*/*', $avail)) {
1137             return '*/*';
1138         } else {
1139             return null;
1140         }
1141     }
1142 }
1143
1144 function common_negotiate_type($cprefs, $sprefs)
1145 {
1146     $combine = array();
1147
1148     foreach(array_keys($sprefs) as $type) {
1149         $parts = explode('/', $type);
1150         if($parts[1] != '*') {
1151             $ckey = common_mime_type_match($type, $cprefs);
1152             if($ckey) {
1153                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1154             }
1155         }
1156     }
1157
1158     foreach(array_keys($cprefs) as $type) {
1159         $parts = explode('/', $type);
1160         if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1161             $skey = common_mime_type_match($type, $sprefs);
1162             if($skey) {
1163                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1164             }
1165         }
1166     }
1167
1168     $bestq = 0;
1169     $besttype = 'text/html';
1170
1171     foreach(array_keys($combine) as $type) {
1172         if($combine[$type] > $bestq) {
1173             $besttype = $type;
1174             $bestq = $combine[$type];
1175         }
1176     }
1177
1178     if ('text/html' === $besttype) {
1179         return "text/html; charset=utf-8";
1180     }
1181     return $besttype;
1182 }
1183
1184 function common_config($main, $sub)
1185 {
1186     global $config;
1187     return isset($config[$main][$sub]) ? $config[$main][$sub] : false;
1188 }
1189
1190 function common_copy_args($from)
1191 {
1192     $to = array();
1193     $strip = get_magic_quotes_gpc();
1194     foreach ($from as $k => $v) {
1195         $to[$k] = ($strip) ? stripslashes($v) : $v;
1196     }
1197     return $to;
1198 }
1199
1200 // Neutralise the evil effects of magic_quotes_gpc in the current request.
1201 // This is used before handing a request off to OAuthRequest::from_request.
1202 function common_remove_magic_from_request()
1203 {
1204     if(get_magic_quotes_gpc()) {
1205         $_POST=array_map('stripslashes',$_POST);
1206         $_GET=array_map('stripslashes',$_GET);
1207     }
1208 }
1209
1210 function common_user_uri(&$user)
1211 {
1212     return common_local_url('userbyid', array('id' => $user->id));
1213 }
1214
1215 function common_notice_uri(&$notice)
1216 {
1217     return common_local_url('shownotice',
1218                             array('notice' => $notice->id));
1219 }
1220
1221 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1222
1223 function common_confirmation_code($bits)
1224 {
1225     // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1226     static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1227     $chars = ceil($bits/5);
1228     $code = '';
1229     for ($i = 0; $i < $chars; $i++) {
1230         // XXX: convert to string and back
1231         $num = hexdec(common_good_rand(1));
1232         // XXX: randomness is too precious to throw away almost
1233         // 40% of the bits we get!
1234         $code .= $codechars[$num%32];
1235     }
1236     return $code;
1237 }
1238
1239 // convert markup to HTML
1240
1241 function common_markup_to_html($c)
1242 {
1243     $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1244     $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1245     $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1246     return Markdown($c);
1247 }
1248
1249 function common_profile_uri($profile)
1250 {
1251     if (!$profile) {
1252         return null;
1253     }
1254     $user = User::staticGet($profile->id);
1255     if ($user) {
1256         return $user->uri;
1257     }
1258
1259     $remote = Remote_profile::staticGet($profile->id);
1260     if ($remote) {
1261         return $remote->uri;
1262     }
1263     // XXX: this is a very bad profile!
1264     return null;
1265 }
1266
1267 function common_canonical_sms($sms)
1268 {
1269     // strip non-digits
1270     preg_replace('/\D/', '', $sms);
1271     return $sms;
1272 }
1273
1274 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1275 {
1276     switch ($errno) {
1277      case E_USER_ERROR:
1278         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline)");
1279         exit(1);
1280         break;
1281
1282      case E_USER_WARNING:
1283         common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1284         break;
1285
1286      case E_USER_NOTICE:
1287         common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1288         break;
1289     }
1290
1291     // FIXME: show error page if we're on the Web
1292     /* Don't execute PHP internal error handler */
1293     return true;
1294 }
1295
1296 function common_session_token()
1297 {
1298     common_ensure_session();
1299     if (!array_key_exists('token', $_SESSION)) {
1300         $_SESSION['token'] = common_good_rand(64);
1301     }
1302     return $_SESSION['token'];
1303 }
1304
1305 function common_cache_key($extra)
1306 {
1307     return 'laconica:' . common_keyize(common_config('site', 'name')) . ':' . $extra;
1308 }
1309
1310 function common_keyize($str)
1311 {
1312     $str = strtolower($str);
1313     $str = preg_replace('/\s/', '_', $str);
1314     return $str;
1315 }
1316
1317 function common_memcache()
1318 {
1319     static $cache = null;
1320     if (!common_config('memcached', 'enabled')) {
1321         return null;
1322     } else {
1323         if (!$cache) {
1324             $cache = new Memcache();
1325             $servers = common_config('memcached', 'server');
1326             if (is_array($servers)) {
1327                 foreach($servers as $server) {
1328                     $cache->addServer($server);
1329                 }
1330             } else {
1331                 $cache->addServer($servers);
1332             }
1333         }
1334         return $cache;
1335     }
1336 }
1337
1338 function common_compatible_license($from, $to)
1339 {
1340     // XXX: better compatibility check needed here!
1341     return ($from == $to);
1342 }