3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
20 /* XXX: break up into separate modules (HTTP, user, files) */
22 // Show a server error
24 function common_server_error($msg, $code=500)
26 $err = new ServerErrorAction($msg, $code);
31 function common_user_error($msg, $code=400)
33 $err = new ClientErrorAction($msg, $code);
37 function common_init_locale($language=null)
40 $language = common_language();
42 putenv('LANGUAGE='.$language);
43 putenv('LANG='.$language);
44 return setlocale(LC_ALL, $language . ".utf8",
51 function common_init_language()
53 mb_internal_encoding('UTF-8');
54 $language = common_language();
55 // So we don't have to make people install the gettext locales
56 $locale_set = common_init_locale($language);
57 bindtextdomain("statusnet", common_config('site','locale_path'));
58 bind_textdomain_codeset("statusnet", "UTF-8");
59 textdomain("statusnet");
60 setlocale(LC_CTYPE, 'C');
62 common_log(LOG_INFO, 'Language requested:' . $language . ' - locale could not be set. Perhaps that system locale is not installed.', __FILE__);
66 function common_timezone()
68 if (common_logged_in()) {
69 $user = common_current_user();
70 if ($user->timezone) {
71 return $user->timezone;
75 return common_config('site', 'timezone');
78 function common_language()
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;
87 return $user_language;
90 // Otherwise, find the best match for the languages requested by the
92 $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : null;
93 if (!empty($httplang)) {
94 $language = client_prefered_language($httplang);
99 // Finally, if none of the above worked, use the site's default...
100 return common_config('site', 'language');
102 // salted, hashed passwords are stored in the DB
104 function common_munge_password($password, $id)
106 return md5($password . $id);
109 // check if a username exists and has matching password
110 function common_check_user($nickname, $password)
112 // NEVER allow blank passwords, even if they match the DB
113 if (mb_strlen($password) == 0) {
116 $user = User::staticGet('nickname', $nickname);
117 if (is_null($user) || $user === false) {
120 if (0 == strcmp(common_munge_password($password, $user->id),
129 // is the current user logged in?
130 function common_logged_in()
132 return (!is_null(common_current_user()));
135 function common_have_session()
137 return (0 != strcmp(session_id(), ''));
140 function common_ensure_session()
143 if (array_key_exists(session_name(), $_COOKIE)) {
144 $c = $_COOKIE[session_name()];
146 if (!common_have_session()) {
147 if (common_config('sessions', 'handle')) {
148 Session::setSaveHandler();
151 if (!isset($_SESSION['started'])) {
152 $_SESSION['started'] = time();
154 common_log(LOG_WARNING, 'Session cookie "' . $_COOKIE[session_name()] . '" ' .
155 ' is set but started value is null');
161 // Three kinds of arguments:
166 // Initialize to false; set to null if none found
170 function common_set_user($user)
175 if (is_null($user) && common_have_session()) {
177 unset($_SESSION['userid']);
179 } else if (is_string($user)) {
181 $user = User::staticGet('nickname', $nickname);
182 } else if (!($user instanceof User)) {
187 common_ensure_session();
188 $_SESSION['userid'] = $user->id;
195 function common_set_cookie($key, $value, $expiration=0)
197 $path = common_config('site', 'path');
198 $server = common_config('site', 'server');
200 if ($path && ($path != '/')) {
201 $cookiepath = '/' . $path . '/';
205 return setcookie($key,
212 define('REMEMBERME', 'rememberme');
213 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); // 30 days
215 function common_rememberme($user=null)
218 $user = common_current_user();
220 common_debug('No current user to remember', __FILE__);
225 $rm = new Remember_me();
227 $rm->code = common_good_rand(16);
228 $rm->user_id = $user->id;
230 // Wrap the insert in some good ol' fashioned transaction code
234 $result = $rm->insert();
237 common_log_db_error($rm, 'INSERT', __FILE__);
238 common_debug('Error adding rememberme record for ' . $user->nickname, __FILE__);
242 $rm->query('COMMIT');
244 common_debug('Inserted rememberme record (' . $rm->code . ', ' . $rm->user_id . '); result = ' . $result . '.', __FILE__);
246 $cookieval = $rm->user_id . ':' . $rm->code;
248 common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
250 common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
255 function common_remembered_user()
260 $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null;
266 list($id, $code) = explode(':', $packed);
268 if (!$id || !$code) {
269 common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
274 $rm = Remember_me::staticGet($code);
277 common_log(LOG_WARNING, 'No such remember code: ' . $code);
282 if ($rm->user_id != $id) {
283 common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
288 $user = User::staticGet($rm->user_id);
291 common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
297 $result = $rm->delete();
300 common_log_db_error($rm, 'DELETE', __FILE__);
301 common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
306 common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
308 common_set_user($user);
309 common_real_login(false);
311 // We issue a new cookie, so they can log in
312 // automatically again after this session
314 common_rememberme($user);
319 // must be called with a valid user!
321 function common_forgetme()
323 common_set_cookie(REMEMBERME, '', 0);
326 // who is the current user?
327 function common_current_user()
331 if (!_have_config()) {
335 if ($_cur === false) {
337 if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
338 common_ensure_session();
339 $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
341 $_cur = User::staticGet($id);
346 // that didn't work; try to remember; will init $_cur to null on failure
347 $_cur = common_remembered_user();
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;
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.
364 function common_real_login($real=true)
366 common_ensure_session();
367 $_SESSION['real_login'] = $real;
370 function common_is_real_login()
372 return common_logged_in() && $_SESSION['real_login'];
375 // get canonical version of nickname for comparison
376 function common_canonical_nickname($nickname)
378 // XXX: UTF-8 canonicalization (like combining chars)
379 return strtolower($nickname);
382 // get canonical version of email for comparison
383 function common_canonical_email($email)
385 // XXX: canonicalize UTF-8
386 // XXX: lcase the domain part
390 function common_render_content($text, $notice)
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);
401 function common_render_text($text)
403 $r = htmlspecialchars($text);
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('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
412 function common_replace_urls_callback($text, $callback, $notice_id = null) {
413 // Start off with a regex
415 '(?:^|[\s\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'.
418 '(?:'. //Known protocols
420 '(?:(?:https?|ftps?|mms|rtsp|gopher|news|nntp|telnet|wais|file|prospero|webcal|irc)://)'.
422 '(?:(?:mailto|aim|tel|xmpp):)'.
424 '(?:[\pN\pL\-\_\+\%\~]+(?::[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
427 '\[[\pN\pL\-\_\:\.]+(?<![\.\:])\]'. //[dns]
429 '[\pN\pL\-\_\:\.]+(?<![\.\:])'. //dns
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
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})))\]?(?<!:)'.
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)'.
444 '(?:\:\d+)?'. //:port
445 '(?:/[\pN\pL$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@]*)?'. // /path
446 '(?:\?[\pN\pL\$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@\/]*)?'. // ?query string
447 '(?:\#[\pN\pL$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"\@/\?\#]*)?'. // #fragment
448 ')(?<![\?\.\,\#\,])'.
451 //preg_match_all($regex,$text,$matches);
453 return preg_replace_callback($regex, curry('callback_helper',$callback,$notice_id) ,$text);
456 function callback_helper($matches, $callback, $notice_id) {
458 $left = strpos($matches[0],$url);
459 $right = $left+strlen($url);
461 $groupSymbolSets=array(
475 $cannotEndWith=array('.','?',',','#');
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){
485 $url=substr($url,0,-1);
489 if(in_array(substr($url,-1),$cannotEndWith)){
491 $url=substr($url,0,-1);
493 }while($original_url!=$url);
495 if(empty($notice_id)){
496 $result = call_user_func_array($callback, array($url));
498 $result = call_user_func_array($callback, array(array($url,$notice_id)) );
500 return substr($matches[0],0,$left) . $result . substr($matches[0],$right);
503 function curry($fn) {
504 //TODO switch to a PHP 5.3 function closure based approach if PHP 5.3 is used
505 $args = func_get_args();
507 $id = uniqid('_partial');
508 $GLOBALS[$id] = array($fn, $args);
509 return create_function('',
510 '$args = func_get_args(); '.
511 'return call_user_func_array('.
512 '$GLOBALS["'.$id.'"][0],'.
515 '$GLOBALS["'.$id.'"][1]));');
518 function common_linkify($url) {
519 // It comes in special'd, so we unspecial it before passing to the stringifying
521 $url = htmlspecialchars_decode($url);
523 if(strpos($url, '@') !== false && strpos($url, ':') === false) {
524 //url is an email address without the mailto: protocol
525 return XMLStringer::estring('a', array('href' => "mailto:$url", 'rel' => 'external'), $url);
528 $canon = File_redirection::_canonUrl($url);
530 $longurl_data = File_redirection::where($url);
531 if (is_array($longurl_data)) {
532 $longurl = $longurl_data['url'];
533 } elseif (is_string($longurl_data)) {
534 $longurl = $longurl_data;
536 throw new ServerException("Can't linkify url '$url'");
539 $attrs = array('href' => $canon, 'title' => $longurl, 'rel' => 'external');
541 $is_attachment = false;
542 $attachment_id = null;
545 // Check to see whether this is a known "attachment" URL.
547 $f = File::staticGet('url', $longurl);
550 // XXX: this writes to the database. :<
551 $f = File::processNew($longurl);
555 if ($f->isEnclosure()) {
556 $is_attachment = true;
557 $attachment_id = $f->id;
559 $foe = File_oembed::staticGet('file_id', $f->id);
561 // if it has OEmbed info, it's an attachment, too
562 $is_attachment = true;
563 $attachment_id = $f->id;
565 $thumb = File_thumbnail::staticGet('file_id', $f->id);
566 if (!empty($thumb)) {
574 if ($is_attachment) {
575 $attrs['class'] = 'attachment';
577 $attrs['class'] = 'attachment thumbnail';
579 $attrs['id'] = "attachment-{$attachment_id}";
582 return XMLStringer::estring('a', $attrs, $url);
585 function common_shorten_links($text)
587 $maxLength = Notice::maxContent();
588 if ($maxLength == 0 || mb_strlen($text) <= $maxLength) return $text;
589 return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
592 function common_xml_safe_str($str)
594 // Neutralize control codes and surrogates
595 return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
598 function common_tag_link($tag)
600 $canonical = common_canonical_tag($tag);
601 $url = common_local_url('tag', array('tag' => $canonical));
602 $xs = new XMLStringer();
603 $xs->elementStart('span', 'tag');
604 $xs->element('a', array('href' => $url,
607 $xs->elementEnd('span');
608 return $xs->getString();
611 function common_canonical_tag($tag)
613 $tag = mb_convert_case($tag, MB_CASE_LOWER, "UTF-8");
614 return str_replace(array('-', '_', '.'), '', $tag);
617 function common_valid_profile_tag($str)
619 return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
622 function common_at_link($sender_id, $nickname)
624 $sender = Profile::staticGet($sender_id);
625 $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
627 $user = User::staticGet('id', $recipient->id);
629 $url = common_local_url('userbyid', array('id' => $user->id));
631 $url = $recipient->profileurl;
633 $xs = new XMLStringer(false);
634 $attrs = array('href' => $url,
636 if (!empty($recipient->fullname)) {
637 $attrs['title'] = $recipient->fullname . ' (' . $recipient->nickname . ')';
639 $xs->elementStart('span', 'vcard');
640 $xs->elementStart('a', $attrs);
641 $xs->element('span', 'fn nickname', $nickname);
642 $xs->elementEnd('a');
643 $xs->elementEnd('span');
644 return $xs->getString();
650 function common_group_link($sender_id, $nickname)
652 $sender = Profile::staticGet($sender_id);
653 $group = User_group::getForNickname($nickname);
654 if ($group && $sender->isMember($group)) {
655 $attrs = array('href' => $group->permalink(),
657 if (!empty($group->fullname)) {
658 $attrs['title'] = $group->fullname . ' (' . $group->nickname . ')';
660 $xs = new XMLStringer();
661 $xs->elementStart('span', 'vcard');
662 $xs->elementStart('a', $attrs);
663 $xs->element('span', 'fn nickname', $nickname);
664 $xs->elementEnd('a');
665 $xs->elementEnd('span');
666 return $xs->getString();
672 function common_at_hash_link($sender_id, $tag)
674 $user = User::staticGet($sender_id);
678 $tagged = Profile_tag::getTagged($user->id, common_canonical_tag($tag));
680 $url = common_local_url('subscriptions',
681 array('nickname' => $user->nickname,
683 $xs = new XMLStringer();
684 $xs->elementStart('span', 'tag');
685 $xs->element('a', array('href' => $url,
688 $xs->elementEnd('span');
689 return $xs->getString();
695 function common_relative_profile($sender, $nickname, $dt=null)
697 // Try to find profiles this profile is subscribed to that have this nickname
698 $recipient = new Profile();
699 // XXX: use a join instead of a subquery
700 $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = 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
707 // Try to find profiles that listen to this profile and that have this nickname
708 $recipient = new Profile();
709 // XXX: use a join instead of a subquery
710 $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
711 $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
712 if ($recipient->find(true)) {
713 // XXX: should probably differentiate between profiles with
714 // the same name by date of most recent update
717 // If this is a local user, try to find a local user with that nickname.
718 $sender = User::staticGet($sender->id);
720 $recipient_user = User::staticGet('nickname', $nickname);
721 if ($recipient_user) {
722 return $recipient_user->getProfile();
725 // Otherwise, no links. @messages from local users to remote users,
726 // or from remote users to other remote users, are just
727 // outside our ability to make intelligent guesses about
731 function common_local_url($action, $args=null, $params=null, $fragment=null)
734 $path = $r->build($action, $args, $params, $fragment);
736 $ssl = common_is_sensitive($action);
738 if (common_config('site','fancy')) {
739 $url = common_path(mb_substr($path, 1), $ssl);
741 if (mb_strpos($path, '/index.php') === 0) {
742 $url = common_path(mb_substr($path, 1), $ssl);
744 $url = common_path('index.php'.$path, $ssl);
750 function common_is_sensitive($action)
752 static $sensitive = array('login', 'register', 'passwordsettings',
753 'twittersettings', 'api');
756 if (Event::handle('SensitiveAction', array($action, &$ssl))) {
757 $ssl = in_array($action, $sensitive);
763 function common_path($relative, $ssl=false)
765 $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
767 if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
768 || common_config('site', 'ssl') === 'always') {
770 if (is_string(common_config('site', 'sslserver')) &&
771 mb_strlen(common_config('site', 'sslserver')) > 0) {
772 $serverpart = common_config('site', 'sslserver');
774 $serverpart = common_config('site', 'server');
778 $serverpart = common_config('site', 'server');
781 return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
784 function common_date_string($dt)
786 // XXX: do some sexy date formatting
787 // return date(DATE_RFC822, $dt);
792 if ($now < $t) { // that shouldn't happen!
793 return common_exact_date($dt);
794 } else if ($diff < 60) {
795 return _('a few seconds ago');
796 } else if ($diff < 92) {
797 return _('about a minute ago');
798 } else if ($diff < 3300) {
799 return sprintf(_('about %d minutes ago'), round($diff/60));
800 } else if ($diff < 5400) {
801 return _('about an hour ago');
802 } else if ($diff < 22 * 3600) {
803 return sprintf(_('about %d hours ago'), round($diff/3600));
804 } else if ($diff < 37 * 3600) {
805 return _('about a day ago');
806 } else if ($diff < 24 * 24 * 3600) {
807 return sprintf(_('about %d days ago'), round($diff/(24*3600)));
808 } else if ($diff < 46 * 24 * 3600) {
809 return _('about a month ago');
810 } else if ($diff < 330 * 24 * 3600) {
811 return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
812 } else if ($diff < 480 * 24 * 3600) {
813 return _('about a year ago');
815 return common_exact_date($dt);
819 function common_exact_date($dt)
825 $_utc = new DateTimeZone('UTC');
826 $_siteTz = new DateTimeZone(common_timezone());
829 $dateStr = date('d F Y H:i:s', strtotime($dt));
830 $d = new DateTime($dateStr, $_utc);
831 $d->setTimezone($_siteTz);
832 return $d->format(DATE_RFC850);
835 function common_date_w3dtf($dt)
837 $dateStr = date('d F Y H:i:s', strtotime($dt));
838 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
839 $d->setTimezone(new DateTimeZone(common_timezone()));
840 return $d->format(DATE_W3C);
843 function common_date_rfc2822($dt)
845 $dateStr = date('d F Y H:i:s', strtotime($dt));
846 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
847 $d->setTimezone(new DateTimeZone(common_timezone()));
848 return $d->format('r');
851 function common_date_iso8601($dt)
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('c');
859 function common_sql_now()
861 return common_sql_date(time());
864 function common_sql_date($datetime)
866 return strftime('%Y-%m-%d %H:%M:%S', $datetime);
869 function common_redirect($url, $code=307)
871 static $status = array(301 => "Moved Permanently",
874 307 => "Temporary Redirect");
876 header('HTTP/1.1 '.$code.' '.$status[$code]);
877 header("Location: $url");
879 $xo = new XMLOutputter();
881 '-//W3C//DTD XHTML 1.0 Strict//EN',
882 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
883 $xo->element('a', array('href' => $url), $url);
888 function common_broadcast_notice($notice, $remote=false)
890 return common_enqueue_notice($notice);
893 // Stick the notice on the queue
895 function common_enqueue_notice($notice)
897 static $localTransports = array('omb',
902 static $allTransports = array('sms', 'plugin');
904 $transports = $allTransports;
906 $xmpp = common_config('xmpp', 'enabled');
909 $transports[] = 'jabber';
912 if ($notice->is_local == Notice::LOCAL_PUBLIC ||
913 $notice->is_local == Notice::LOCAL_NONPUBLIC) {
914 $transports = array_merge($transports, $localTransports);
916 $transports[] = 'public';
920 if (Event::handle('StartEnqueueNotice', array($notice, &$transports))) {
922 $qm = QueueManager::get();
924 foreach ($transports as $transport)
926 $qm->enqueue($notice, $transport);
929 Event::handle('EndEnqueueNotice', array($notice, $transports));
935 function common_broadcast_profile($profile)
937 // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
938 require_once(INSTALLDIR.'/lib/omb.php');
939 omb_broadcast_profile($profile);
940 // XXX: Other broadcasts...?
944 function common_profile_url($nickname)
946 return common_local_url('showstream', array('nickname' => $nickname));
949 // Should make up a reasonable root URL
951 function common_root_url($ssl=false)
953 return common_path('', $ssl);
956 // returns $bytes bytes of random data as a hexadecimal string
957 // "good" here is a goal and not a guarantee
959 function common_good_rand($bytes)
961 // XXX: use random.org...?
962 if (@file_exists('/dev/urandom')) {
963 return common_urandom($bytes);
964 } else { // FIXME: this is probably not good enough
965 return common_mtrand($bytes);
969 function common_urandom($bytes)
971 $h = fopen('/dev/urandom', 'rb');
973 $src = fread($h, $bytes);
976 for ($i = 0; $i < $bytes; $i++) {
977 $enc .= sprintf("%02x", (ord($src[$i])));
982 function common_mtrand($bytes)
985 for ($i = 0; $i < $bytes; $i++) {
986 $enc .= sprintf("%02x", mt_rand(0, 255));
991 function common_set_returnto($url)
993 common_ensure_session();
994 $_SESSION['returnto'] = $url;
997 function common_get_returnto()
999 common_ensure_session();
1000 return $_SESSION['returnto'];
1003 function common_timestamp()
1005 return date('YmdHis');
1008 function common_ensure_syslog()
1010 static $initialized = false;
1011 if (!$initialized) {
1012 openlog(common_config('syslog', 'appname'), 0,
1013 common_config('syslog', 'facility'));
1014 $initialized = true;
1018 function common_log_line($priority, $msg)
1020 static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1021 'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1022 return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1025 function common_log($priority, $msg, $filename=null)
1027 $logfile = common_config('site', 'logfile');
1029 $log = fopen($logfile, "a");
1031 $output = common_log_line($priority, $msg);
1032 fwrite($log, $output);
1036 common_ensure_syslog();
1037 syslog($priority, $msg);
1041 function common_debug($msg, $filename=null)
1044 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1046 common_log(LOG_DEBUG, $msg);
1050 function common_log_db_error(&$object, $verb, $filename=null)
1052 $objstr = common_log_objstring($object);
1053 $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1054 common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1057 function common_log_objstring(&$object)
1059 if (is_null($object)) {
1062 if (!($object instanceof DB_DataObject)) {
1065 $arr = $object->toArray();
1067 foreach ($arr as $k => $v) {
1068 $fields[] = "$k='$v'";
1070 $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1074 function common_valid_http_url($url)
1076 return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1079 function common_valid_tag($tag)
1081 if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1082 return (Validate::email($matches[1]) ||
1083 preg_match('/^([\w-\.]+)$/', $matches[1]));
1088 /* Following functions are copied from MediaWiki GlobalFunctions.php
1089 * and written by Evan Prodromou. */
1091 function common_accept_to_prefs($accept, $def = '*/*')
1093 // No arg means accept anything (per HTTP spec)
1095 return array($def => 1);
1100 $parts = explode(',', $accept);
1102 foreach($parts as $part) {
1103 // FIXME: doesn't deal with params like 'text/html; level=1'
1104 @list($value, $qpart) = explode(';', trim($part));
1106 if(!isset($qpart)) {
1108 } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1109 $prefs[$value] = $match[1];
1116 function common_mime_type_match($type, $avail)
1118 if(array_key_exists($type, $avail)) {
1121 $parts = explode('/', $type);
1122 if(array_key_exists($parts[0] . '/*', $avail)) {
1123 return $parts[0] . '/*';
1124 } elseif(array_key_exists('*/*', $avail)) {
1132 function common_negotiate_type($cprefs, $sprefs)
1136 foreach(array_keys($sprefs) as $type) {
1137 $parts = explode('/', $type);
1138 if($parts[1] != '*') {
1139 $ckey = common_mime_type_match($type, $cprefs);
1141 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1146 foreach(array_keys($cprefs) as $type) {
1147 $parts = explode('/', $type);
1148 if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1149 $skey = common_mime_type_match($type, $sprefs);
1151 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1157 $besttype = 'text/html';
1159 foreach(array_keys($combine) as $type) {
1160 if($combine[$type] > $bestq) {
1162 $bestq = $combine[$type];
1166 if ('text/html' === $besttype) {
1167 return "text/html; charset=utf-8";
1172 function common_config($main, $sub)
1175 return (array_key_exists($main, $config) &&
1176 array_key_exists($sub, $config[$main])) ? $config[$main][$sub] : false;
1179 function common_copy_args($from)
1182 $strip = get_magic_quotes_gpc();
1183 foreach ($from as $k => $v) {
1184 $to[$k] = ($strip) ? stripslashes($v) : $v;
1189 // Neutralise the evil effects of magic_quotes_gpc in the current request.
1190 // This is used before handing a request off to OAuthRequest::from_request.
1191 function common_remove_magic_from_request()
1193 if(get_magic_quotes_gpc()) {
1194 $_POST=array_map('stripslashes',$_POST);
1195 $_GET=array_map('stripslashes',$_GET);
1199 function common_user_uri(&$user)
1201 return common_local_url('userbyid', array('id' => $user->id));
1204 function common_notice_uri(&$notice)
1206 return common_local_url('shownotice',
1207 array('notice' => $notice->id));
1210 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1212 function common_confirmation_code($bits)
1214 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1215 static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1216 $chars = ceil($bits/5);
1218 for ($i = 0; $i < $chars; $i++) {
1219 // XXX: convert to string and back
1220 $num = hexdec(common_good_rand(1));
1221 // XXX: randomness is too precious to throw away almost
1222 // 40% of the bits we get!
1223 $code .= $codechars[$num%32];
1228 // convert markup to HTML
1230 function common_markup_to_html($c)
1232 $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1233 $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1234 $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1235 return Markdown($c);
1238 function common_profile_uri($profile)
1243 $user = User::staticGet($profile->id);
1248 $remote = Remote_profile::staticGet($profile->id);
1250 return $remote->uri;
1252 // XXX: this is a very bad profile!
1256 function common_canonical_sms($sms)
1259 preg_replace('/\D/', '', $sms);
1263 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1268 case E_COMPILE_ERROR:
1272 case E_RECOVERABLE_ERROR:
1273 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [ABORT]");
1278 case E_COMPILE_WARNING:
1279 case E_CORE_WARNING:
1280 case E_USER_WARNING:
1281 common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1286 common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1291 case E_USER_DEPRECATED:
1292 // XXX: config variable to log this stuff, too
1296 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [UNKNOWN LEVEL, die()'ing]");
1301 // FIXME: show error page if we're on the Web
1302 /* Don't execute PHP internal error handler */
1306 function common_session_token()
1308 common_ensure_session();
1309 if (!array_key_exists('token', $_SESSION)) {
1310 $_SESSION['token'] = common_good_rand(64);
1312 return $_SESSION['token'];
1315 function common_cache_key($extra)
1317 $base_key = common_config('memcached', 'base');
1319 if (empty($base_key)) {
1320 $base_key = common_keyize(common_config('site', 'name'));
1323 return 'statusnet:' . $base_key . ':' . $extra;
1326 function common_keyize($str)
1328 $str = strtolower($str);
1329 $str = preg_replace('/\s/', '_', $str);
1333 function common_memcache()
1335 static $cache = null;
1336 if (!common_config('memcached', 'enabled')) {
1340 $cache = new Memcache();
1341 $servers = common_config('memcached', 'server');
1342 if (is_array($servers)) {
1343 foreach($servers as $server) {
1344 $cache->addServer($server);
1347 $cache->addServer($servers);
1354 function common_compatible_license($from, $to)
1356 // XXX: better compatibility check needed here!
1357 return ($from == $to);
1361 * returns a quoted table name, if required according to config
1363 function common_database_tablename($tablename)
1366 if(common_config('db','quote_identifiers')) {
1367 $tablename = '"'. $tablename .'"';
1369 //table prefixes could be added here later
1373 function common_shorten_url($long_url)
1375 $user = common_current_user();
1377 // common current user does not find a user when called from the XMPP daemon
1378 // therefore we'll set one here fix, so that XMPP given URLs may be shortened
1381 $svc = $user->urlshorteningservice;
1383 global $_shorteners;
1384 if (!isset($_shorteners[$svc])) {
1385 //the user selected service doesn't exist, so default to ur1.ca
1388 if (!isset($_shorteners[$svc])) {
1389 // no shortener plugins installed.
1393 $reflectionObj = new ReflectionClass($_shorteners[$svc]['callInfo'][0]);
1394 $short_url_service = $reflectionObj->newInstanceArgs($_shorteners[$svc]['callInfo'][1]);
1395 $short_url = $short_url_service->shorten($long_url);
1400 function common_client_ip()
1402 if (!isset($_SERVER) || !array_key_exists('REQUEST_METHOD', $_SERVER)) {
1406 if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) {
1407 if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1408 $proxy = $_SERVER['HTTP_CLIENT_IP'];
1410 $proxy = $_SERVER['REMOTE_ADDR'];
1412 $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1415 if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1416 $ip = $_SERVER['HTTP_CLIENT_IP'];
1418 $ip = $_SERVER['REMOTE_ADDR'];
1422 return array($proxy, $ip);