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) */
23 * Show a server error.
25 function common_server_error($msg, $code=500)
27 $err = new ServerErrorAction($msg, $code);
34 function common_user_error($msg, $code=400)
36 $err = new ClientErrorAction($msg, $code);
41 * This should only be used at setup; processes switching languages
42 * to send text to other users should use common_switch_locale().
44 * @param string $language Locale language code (optional; empty uses
45 * current user's preference or site default)
46 * @return mixed success
48 function common_init_locale($language=null)
51 $language = common_language();
53 putenv('LANGUAGE='.$language);
54 putenv('LANG='.$language);
55 $ok = setlocale(LC_ALL, $language . ".utf8",
65 * Initialize locale and charset settings and gettext with our message catalog,
66 * using the current user's language preference or the site default.
68 * This should generally only be run at framework initialization; code switching
69 * languages at runtime should call common_switch_language().
73 function common_init_language()
75 mb_internal_encoding('UTF-8');
77 // Note that this setlocale() call may "fail" but this is harmless;
78 // gettext will still select the right language.
79 $language = common_language();
80 $locale_set = common_init_locale($language);
83 // The requested locale doesn't exist on the system.
85 // gettext seems very picky... We first need to setlocale()
86 // to a locale which _does_ exist on the system, and _then_
87 // we can set in another locale that may not be set up
88 // (say, ga_ES for Galego/Galician) it seems to take it.
90 // For some reason C and POSIX which are guaranteed to work
91 // don't do the job. en_US.UTF-8 should be there most of the
92 // time, but not guaranteed.
93 $ok = common_init_locale("en_US");
94 if (!$ok && strtolower(substr(PHP_OS, 0, 3)) != 'win') {
95 // Try to find a complete, working locale on Unix/Linux...
96 // @fixme shelling out feels awfully inefficient
97 // but I don't think there's a more standard way.
99 foreach (explode("\n", $all) as $locale) {
100 if (preg_match('/\.utf[-_]?8$/i', $locale)) {
101 $ok = setlocale(LC_ALL, $locale);
109 common_log(LOG_ERR, "Unable to find a UTF-8 locale on this system; UI translations may not work.");
111 $locale_set = common_init_locale($language);
114 common_init_gettext();
120 function common_init_gettext()
122 setlocale(LC_CTYPE, 'C');
123 // So we do not have to make people install the gettext locales
124 $path = common_config('site','locale_path');
125 bindtextdomain("statusnet", $path);
126 bind_textdomain_codeset("statusnet", "UTF-8");
127 textdomain("statusnet");
131 * Switch locale during runtime, and poke gettext until it cries uncle.
132 * Otherwise, sometimes it doesn't actually switch away from the old language.
134 * @param string $language code for locale ('en', 'fr', 'pt_BR' etc)
136 function common_switch_locale($language=null)
138 common_init_locale($language);
140 setlocale(LC_CTYPE, 'C');
141 // So we do not have to make people install the gettext locales
142 $path = common_config('site','locale_path');
143 bindtextdomain("statusnet", $path);
144 bind_textdomain_codeset("statusnet", "UTF-8");
145 textdomain("statusnet");
148 function common_timezone()
150 if (common_logged_in()) {
151 $user = common_current_user();
152 if ($user->timezone) {
153 return $user->timezone;
157 return common_config('site', 'timezone');
160 function common_valid_language($lang)
163 // Validate -- we don't want to end up with a bogus code
164 // left over from some old junk.
165 foreach (common_config('site', 'languages') as $code => $info) {
166 if ($info['lang'] == $lang) {
174 function common_language()
176 // Allow ?uselang=xx override, very useful for debugging
177 // and helping translators check usage and context.
178 if (isset($_GET['uselang'])) {
179 $uselang = strval($_GET['uselang']);
180 if (common_valid_language($uselang)) {
185 // If there is a user logged in and they've set a language preference
186 // then return that one...
187 if (_have_config() && common_logged_in()) {
188 $user = common_current_user();
190 if (common_valid_language($user->language)) {
191 return $user->language;
195 // Otherwise, find the best match for the languages requested by the
197 if (common_config('site', 'langdetect')) {
198 $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : null;
199 if (!empty($httplang)) {
200 $language = client_prefered_language($httplang);
206 // Finally, if none of the above worked, use the site's default...
207 return common_config('site', 'language');
211 * Salted, hashed passwords are stored in the DB.
213 function common_munge_password($password, $id)
215 if (is_object($id) || is_object($password)) {
216 $e = new Exception();
217 common_log(LOG_ERR, __METHOD__ . ' object in param to common_munge_password ' .
218 str_replace("\n", " ", $e->getTraceAsString()));
220 return md5($password . $id);
224 * Check if a username exists and has matching password.
226 function common_check_user($nickname, $password)
228 // empty nickname always unacceptable
229 if (empty($nickname)) {
233 $authenticatedUser = false;
235 if (Event::handle('StartCheckPassword', array($nickname, $password, &$authenticatedUser))) {
236 $user = User::staticGet('nickname', common_canonical_nickname($nickname));
238 if (!empty($password)) { // never allow login with blank password
239 if (0 == strcmp(common_munge_password($password, $user->id),
241 //internal checking passed
242 $authenticatedUser = $user;
246 Event::handle('EndCheckPassword', array($nickname, $password, $authenticatedUser));
249 return $authenticatedUser;
253 * Is the current user logged in?
255 function common_logged_in()
257 return (!is_null(common_current_user()));
260 function common_have_session()
262 return (0 != strcmp(session_id(), ''));
265 function common_ensure_session()
268 if (array_key_exists(session_name(), $_COOKIE)) {
269 $c = $_COOKIE[session_name()];
271 if (!common_have_session()) {
272 if (common_config('sessions', 'handle')) {
273 Session::setSaveHandler();
275 if (array_key_exists(session_name(), $_GET)) {
276 $id = $_GET[session_name()];
277 } else if (array_key_exists(session_name(), $_COOKIE)) {
278 $id = $_COOKIE[session_name()];
284 if (!isset($_SESSION['started'])) {
285 $_SESSION['started'] = time();
287 common_log(LOG_WARNING, 'Session cookie "' . $_COOKIE[session_name()] . '" ' .
288 ' is set but started value is null');
294 // Three kinds of arguments:
299 // Initialize to false; set to null if none found
302 function common_set_user($user)
306 if (is_null($user) && common_have_session()) {
308 unset($_SESSION['userid']);
310 } else if (is_string($user)) {
312 $user = User::staticGet('nickname', $nickname);
313 } else if (!($user instanceof User)) {
318 if (Event::handle('StartSetUser', array(&$user))) {
320 common_ensure_session();
321 $_SESSION['userid'] = $user->id;
323 Event::handle('EndSetUser', array($user));
331 function common_set_cookie($key, $value, $expiration=0)
333 $path = common_config('site', 'path');
334 $server = common_config('site', 'server');
336 if ($path && ($path != '/')) {
337 $cookiepath = '/' . $path . '/';
341 return setcookie($key,
346 common_config('site', 'ssl')=='always');
349 define('REMEMBERME', 'rememberme');
350 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); // 30 days
352 function common_rememberme($user=null)
355 $user = common_current_user();
361 $rm = new Remember_me();
363 $rm->code = common_good_rand(16);
364 $rm->user_id = $user->id;
366 // Wrap the insert in some good ol' fashioned transaction code
370 $result = $rm->insert();
373 common_log_db_error($rm, 'INSERT', __FILE__);
377 $rm->query('COMMIT');
379 $cookieval = $rm->user_id . ':' . $rm->code;
381 common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
383 common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
388 function common_remembered_user()
392 $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null;
398 list($id, $code) = explode(':', $packed);
400 if (!$id || !$code) {
401 common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
406 $rm = Remember_me::staticGet($code);
409 common_log(LOG_WARNING, 'No such remember code: ' . $code);
414 if ($rm->user_id != $id) {
415 common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
420 $user = User::staticGet($rm->user_id);
423 common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
429 $result = $rm->delete();
432 common_log_db_error($rm, 'DELETE', __FILE__);
433 common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
438 common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
440 common_set_user($user);
441 common_real_login(false);
443 // We issue a new cookie, so they can log in
444 // automatically again after this session
446 common_rememberme($user);
452 * must be called with a valid user!
454 function common_forgetme()
456 common_set_cookie(REMEMBERME, '', 0);
460 * Who is the current user?
462 function common_current_user()
466 if (!_have_config()) {
470 if ($_cur === false) {
472 if (isset($_COOKIE[session_name()]) || isset($_GET[session_name()])
473 || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
474 common_ensure_session();
475 $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
477 $user = User::staticGet($id);
485 // that didn't work; try to remember; will init $_cur to null on failure
486 $_cur = common_remembered_user();
489 // XXX: Is this necessary?
490 $_SESSION['userid'] = $_cur->id;
498 * Logins that are 'remembered' aren't 'real' -- they're subject to
499 * cookie-stealing. So, we don't let them do certain things. New reg,
500 * OpenID, and password logins _are_ real.
502 function common_real_login($real=true)
504 common_ensure_session();
505 $_SESSION['real_login'] = $real;
508 function common_is_real_login()
510 return common_logged_in() && $_SESSION['real_login'];
514 * Get a hash portion for HTTP caching Etags and such including
515 * info on the current user's session. If login/logout state changes,
516 * or we've changed accounts, or we've renamed the current user,
517 * we'll get a new hash value.
519 * This should not be considered secure information.
521 * @param User $user (optional; uses common_current_user() if left out)
524 function common_user_cache_hash($user=false)
526 if ($user === false) {
527 $user = common_current_user();
530 return crc32($user->id . ':' . $user->nickname);
536 // get canonical version of nickname for comparison
537 function common_canonical_nickname($nickname)
539 // XXX: UTF-8 canonicalization (like combining chars)
540 return strtolower($nickname);
543 // get canonical version of email for comparison
544 function common_canonical_email($email)
546 // XXX: canonicalize UTF-8
547 // XXX: lcase the domain part
551 function common_render_content($text, $notice)
553 $r = common_render_text($text);
554 $id = $notice->profile_id;
555 $r = common_linkify_mentions($r, $notice);
556 $r = preg_replace('/(^|[\s\.\,\:\;]+)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r);
560 function common_linkify_mentions($text, $notice)
562 $mentions = common_find_mentions($text, $notice);
564 // We need to go through in reverse order by position,
565 // so our positions stay valid despite our fudging with the
570 foreach ($mentions as $mention)
572 $points[$mention['position']] = $mention;
577 foreach ($points as $position => $mention) {
579 $linkText = common_linkify_mention($mention);
581 $text = substr_replace($text, $linkText, $position, mb_strlen($mention['text']));
587 function common_linkify_mention($mention)
591 if (Event::handle('StartLinkifyMention', array($mention, &$output))) {
593 $xs = new XMLStringer(false);
595 $attrs = array('href' => $mention['url'],
598 if (!empty($mention['title'])) {
599 $attrs['title'] = $mention['title'];
602 $xs->elementStart('span', 'vcard');
603 $xs->elementStart('a', $attrs);
604 $xs->element('span', 'fn nickname', $mention['text']);
605 $xs->elementEnd('a');
606 $xs->elementEnd('span');
608 $output = $xs->getString();
610 Event::handle('EndLinkifyMention', array($mention, &$output));
616 function common_find_mentions($text, $notice)
620 $sender = Profile::staticGet('id', $notice->profile_id);
622 if (empty($sender)) {
626 if (Event::handle('StartFindMentions', array($sender, $text, &$mentions))) {
627 // Get the context of the original notice, if any
628 $originalAuthor = null;
629 $originalNotice = null;
630 $originalMentions = array();
634 if (!empty($notice) && !empty($notice->reply_to)) {
635 $originalNotice = Notice::staticGet('id', $notice->reply_to);
636 if (!empty($originalNotice)) {
637 $originalAuthor = Profile::staticGet('id', $originalNotice->profile_id);
639 $ids = $originalNotice->getReplies();
641 foreach ($ids as $id) {
642 $repliedTo = Profile::staticGet('id', $id);
643 if (!empty($repliedTo)) {
644 $originalMentions[$repliedTo->nickname] = $repliedTo;
650 preg_match_all('/^T ([A-Z0-9]{1,64}) /',
653 PREG_OFFSET_CAPTURE);
655 preg_match_all('/(?:^|\s+)@(['.NICKNAME_FMT.']{1,64})/',
658 PREG_OFFSET_CAPTURE);
660 $matches = array_merge($tmatches[1], $atmatches[1]);
662 foreach ($matches as $match) {
663 $nickname = common_canonical_nickname($match[0]);
665 // Try to get a profile for this nickname.
666 // Start with conversation context, then go to
669 if (!empty($originalAuthor) && $originalAuthor->nickname == $nickname) {
670 $mentioned = $originalAuthor;
671 } else if (!empty($originalMentions) &&
672 array_key_exists($nickname, $originalMentions)) {
673 $mentioned = $originalMentions[$nickname];
675 $mentioned = common_relative_profile($sender, $nickname);
678 if (!empty($mentioned)) {
679 $user = User::staticGet('id', $mentioned->id);
682 $url = common_local_url('userbyid', array('id' => $user->id));
684 $url = $mentioned->profileurl;
687 $mention = array('mentioned' => array($mentioned),
689 'position' => $match[1],
692 if (!empty($mentioned->fullname)) {
693 $mention['title'] = $mentioned->fullname;
696 $mentions[] = $mention;
700 // @#tag => mention of all subscriptions tagged 'tag'
702 preg_match_all('/(?:^|[\s\.\,\:\;]+)@#([\pL\pN_\-\.]{1,64})/',
705 PREG_OFFSET_CAPTURE);
707 foreach ($hmatches[1] as $hmatch) {
709 $tag = common_canonical_tag($hmatch[0]);
711 $tagged = Profile_tag::getTagged($sender->id, $tag);
713 $url = common_local_url('subscriptions',
714 array('nickname' => $sender->nickname,
717 $mentions[] = array('mentioned' => $tagged,
718 'text' => $hmatch[0],
719 'position' => $hmatch[1],
723 Event::handle('EndFindMentions', array($sender, $text, &$mentions));
729 function common_render_text($text)
731 $r = htmlspecialchars($text);
733 $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
734 $r = common_replace_urls_callback($r, 'common_linkify');
735 $r = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
740 function common_replace_urls_callback($text, $callback, $notice_id = null) {
741 // Start off with a regex
743 '(?:^|[\s\<\>\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'.
746 '(?:'. //Known protocols
748 '(?:(?:https?|ftps?|mms|rtsp|gopher|news|nntp|telnet|wais|file|prospero|webcal|irc)://)'.
750 '(?:(?:mailto|aim|tel|xmpp):)'.
752 '(?:[\pN\pL\-\_\+\%\~]+(?::[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
755 '\[[\pN\pL\-\_\:\.]+(?<![\.\:])\]'. //[dns]
757 '[\pN\pL\-\_\:\.]+(?<![\.\:])'. //dns
761 '|(?:(?: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
763 '\[?(?:(?:(?:[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})))\]?(?<!:)'.
765 '(?:[\pN\pL\-\_\+\%\~]+(?:\:[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
766 '[\pN\pL\-\_]+(?:\.[\pN\pL\-\_]+)*\.'.
767 //tld list from http://data.iana.org/TLD/tlds-alpha-by-domain.txt, also added local, loc, and onion
768 '(?: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)'.
772 '(?:\:\d+)?'. //:port
773 '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@]*)?'. // /path
774 '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@\/]*)?'. // ?query string
775 '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\@/\?\#]*)?'. // #fragment
776 ')(?<![\?\.\,\#\,])'.
779 //preg_match_all($regex,$text,$matches);
781 return preg_replace_callback($regex, curry('callback_helper',$callback,$notice_id) ,$text);
784 function callback_helper($matches, $callback, $notice_id) {
786 $left = strpos($matches[0],$url);
787 $right = $left+strlen($url);
789 $groupSymbolSets=array(
807 $cannotEndWith=array('.','?',',','#');
811 foreach($groupSymbolSets as $groupSymbolSet){
812 if(substr($url,-1)==$groupSymbolSet['right']){
813 $group_left_count = substr_count($url,$groupSymbolSet['left']);
814 $group_right_count = substr_count($url,$groupSymbolSet['right']);
815 if($group_left_count<$group_right_count){
817 $url=substr($url,0,-1);
821 if(in_array(substr($url,-1),$cannotEndWith)){
823 $url=substr($url,0,-1);
825 }while($original_url!=$url);
827 if(empty($notice_id)){
828 $result = call_user_func_array($callback, array($url));
830 $result = call_user_func_array($callback, array(array($url,$notice_id)) );
832 return substr($matches[0],0,$left) . $result . substr($matches[0],$right);
835 if (version_compare(PHP_VERSION, '5.3.0', 'ge')) {
836 // lambda implementation in a separate file; PHP 5.2 won't parse it.
837 require_once INSTALLDIR . "/lib/curry.php";
839 function curry($fn) {
840 $args = func_get_args();
842 $id = uniqid('_partial');
843 $GLOBALS[$id] = array($fn, $args);
844 return create_function('',
845 '$args = func_get_args(); '.
846 'return call_user_func_array('.
847 '$GLOBALS["'.$id.'"][0],'.
850 '$GLOBALS["'.$id.'"][1]));');
854 function common_linkify($url) {
855 // It comes in special'd, so we unspecial it before passing to the stringifying
857 $url = htmlspecialchars_decode($url);
859 if(strpos($url, '@') !== false && strpos($url, ':') === false) {
860 //url is an email address without the mailto: protocol
861 $canon = "mailto:$url";
862 $longurl = "mailto:$url";
865 $canon = File_redirection::_canonUrl($url);
867 $longurl_data = File_redirection::where($canon);
868 if (is_array($longurl_data)) {
869 $longurl = $longurl_data['url'];
870 } elseif (is_string($longurl_data)) {
871 $longurl = $longurl_data;
873 // Unable to reach the server to verify contents, etc
874 // Just pass the link on through for now.
875 common_log(LOG_ERR, "Can't linkify url '$url'");
880 $attrs = array('href' => $canon, 'title' => $longurl);
882 $is_attachment = false;
883 $attachment_id = null;
886 // Check to see whether this is a known "attachment" URL.
888 $f = File::staticGet('url', $longurl);
891 // XXX: this writes to the database. :<
892 $f = File::processNew($longurl);
896 if ($f->getEnclosure() || File_oembed::staticGet('file_id',$f->id)) {
897 $is_attachment = true;
898 $attachment_id = $f->id;
900 $thumb = File_thumbnail::staticGet('file_id', $f->id);
901 if (!empty($thumb)) {
908 if ($is_attachment) {
909 $attrs['class'] = 'attachment';
911 $attrs['class'] = 'attachment thumbnail';
913 $attrs['id'] = "attachment-{$attachment_id}";
916 // Whether to nofollow
918 $nf = common_config('nofollow', 'external');
920 if ($nf == 'never') {
921 $attrs['rel'] = 'external';
923 $attrs['rel'] = 'nofollow external';
926 return XMLStringer::estring('a', $attrs, $url);
929 function common_shorten_links($text, $always = false)
931 common_debug("common_shorten_links() called");
933 $user = common_current_user();
935 $maxLength = User_urlshortener_prefs::maxNoticeLength($user);
937 common_debug("maxLength = $maxLength");
939 if ($always || mb_strlen($text) > $maxLength) {
940 common_debug("Forcing shortening");
941 return common_replace_urls_callback($text, array('File_redirection', 'forceShort'));
943 common_debug("Not forcing shortening");
944 return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
949 * Very basic stripping of invalid UTF-8 input text.
952 * @return mixed string or null if invalid input
954 * @todo ideally we should drop bad chars, and maybe do some of the checks
955 * from common_xml_safe_str. But we can't strip newlines, etc.
956 * @todo Unicode normalization might also be useful, but not needed now.
958 function common_validate_utf8($str)
960 // preg_replace will return NULL on invalid UTF-8 input.
962 // Note: empty regex //u also caused NULL return on some
963 // production machines, but none of our test machines.
965 // This should be replaced with a more reliable check.
966 return preg_replace('/\x00/u', '', $str);
970 * Make sure an arbitrary string is safe for output in XML as a single line.
975 function common_xml_safe_str($str)
977 // Replace common eol and extra whitespace input chars
982 "\0", // null byte eos
983 "\x0B" // vertical tab
986 $replacement = array(
994 $str = str_replace($unWelcome, $replacement, $str);
996 // Neutralize any additional control codes and UTF-16 surrogates
997 // (Twitter uses '*')
998 return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
1001 function common_tag_link($tag)
1003 $canonical = common_canonical_tag($tag);
1004 if (common_config('singleuser', 'enabled')) {
1005 // regular TagAction isn't set up in 1user mode
1006 $user = User::singleUser();
1007 $url = common_local_url('showstream',
1008 array('nickname' => $user->nickname,
1009 'tag' => $canonical));
1011 $url = common_local_url('tag', array('tag' => $canonical));
1013 $xs = new XMLStringer();
1014 $xs->elementStart('span', 'tag');
1015 $xs->element('a', array('href' => $url,
1018 $xs->elementEnd('span');
1019 return $xs->getString();
1022 function common_canonical_tag($tag)
1024 $tag = mb_convert_case($tag, MB_CASE_LOWER, "UTF-8");
1025 return str_replace(array('-', '_', '.'), '', $tag);
1028 function common_valid_profile_tag($str)
1030 return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
1033 function common_group_link($sender_id, $nickname)
1035 $sender = Profile::staticGet($sender_id);
1036 $group = User_group::getForNickname($nickname, $sender);
1037 if ($sender && $group && $sender->isMember($group)) {
1038 $attrs = array('href' => $group->permalink(),
1040 if (!empty($group->fullname)) {
1041 $attrs['title'] = $group->fullname . ' (' . $group->nickname . ')';
1043 $xs = new XMLStringer();
1044 $xs->elementStart('span', 'vcard');
1045 $xs->elementStart('a', $attrs);
1046 $xs->element('span', 'fn nickname', $nickname);
1047 $xs->elementEnd('a');
1048 $xs->elementEnd('span');
1049 return $xs->getString();
1055 function common_relative_profile($sender, $nickname, $dt=null)
1057 // Try to find profiles this profile is subscribed to that have this nickname
1058 $recipient = new Profile();
1059 // XXX: use a join instead of a subquery
1060 $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
1061 $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
1062 if ($recipient->find(true)) {
1063 // XXX: should probably differentiate between profiles with
1064 // the same name by date of most recent update
1067 // Try to find profiles that listen to this profile and that have this nickname
1068 $recipient = new Profile();
1069 // XXX: use a join instead of a subquery
1070 $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
1071 $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
1072 if ($recipient->find(true)) {
1073 // XXX: should probably differentiate between profiles with
1074 // the same name by date of most recent update
1077 // If this is a local user, try to find a local user with that nickname.
1078 $sender = User::staticGet($sender->id);
1080 $recipient_user = User::staticGet('nickname', $nickname);
1081 if ($recipient_user) {
1082 return $recipient_user->getProfile();
1085 // Otherwise, no links. @messages from local users to remote users,
1086 // or from remote users to other remote users, are just
1087 // outside our ability to make intelligent guesses about
1091 function common_local_url($action, $args=null, $params=null, $fragment=null, $addSession=true)
1094 $path = $r->build($action, $args, $params, $fragment);
1096 $ssl = common_is_sensitive($action);
1098 if (common_config('site','fancy')) {
1099 $url = common_path(mb_substr($path, 1), $ssl, $addSession);
1101 if (mb_strpos($path, '/index.php') === 0) {
1102 $url = common_path(mb_substr($path, 1), $ssl, $addSession);
1104 $url = common_path('index.php'.$path, $ssl, $addSession);
1110 function common_is_sensitive($action)
1112 static $sensitive = array(
1117 'ApiOauthRequestToken',
1118 'ApiOauthAccessToken',
1119 'ApiOauthAuthorize',
1125 if (Event::handle('SensitiveAction', array($action, &$ssl))) {
1126 $ssl = in_array($action, $sensitive);
1132 function common_path($relative, $ssl=false, $addSession=true)
1134 $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
1136 if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
1137 || common_config('site', 'ssl') === 'always') {
1139 if (is_string(common_config('site', 'sslserver')) &&
1140 mb_strlen(common_config('site', 'sslserver')) > 0) {
1141 $serverpart = common_config('site', 'sslserver');
1142 } else if (common_config('site', 'server')) {
1143 $serverpart = common_config('site', 'server');
1145 common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
1149 if (common_config('site', 'server')) {
1150 $serverpart = common_config('site', 'server');
1152 common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
1157 $relative = common_inject_session($relative, $serverpart);
1160 return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
1163 function common_inject_session($url, $serverpart = null)
1165 if (common_have_session()) {
1167 if (empty($serverpart)) {
1168 $serverpart = parse_url($url, PHP_URL_HOST);
1171 $currentServer = $_SERVER['HTTP_HOST'];
1173 // Are we pointing to another server (like an SSL server?)
1175 if (!empty($currentServer) &&
1176 0 != strcasecmp($currentServer, $serverpart)) {
1177 // Pass the session ID as a GET parameter
1178 $sesspart = session_name() . '=' . session_id();
1179 $i = strpos($url, '?');
1180 if ($i === false) { // no GET params, just append
1181 $url .= '?' . $sesspart;
1183 $url = substr($url, 0, $i + 1).$sesspart.'&'.substr($url, $i + 1);
1191 function common_date_string($dt)
1193 // XXX: do some sexy date formatting
1194 // return date(DATE_RFC822, $dt);
1195 $t = strtotime($dt);
1199 if ($now < $t) { // that shouldn't happen!
1200 return common_exact_date($dt);
1201 } else if ($diff < 60) {
1202 // TRANS: Used in notices to indicate when the notice was made compared to now.
1203 return _('a few seconds ago');
1204 } else if ($diff < 92) {
1205 // TRANS: Used in notices to indicate when the notice was made compared to now.
1206 return _('about a minute ago');
1207 } else if ($diff < 3300) {
1208 $minutes = round($diff/60);
1209 // TRANS: Used in notices to indicate when the notice was made compared to now.
1210 return sprintf( ngettext('about one minute ago', 'about %d minutes ago', $minutes), $minutes);
1211 } else if ($diff < 5400) {
1212 // TRANS: Used in notices to indicate when the notice was made compared to now.
1213 return _('about an hour ago');
1214 } else if ($diff < 22 * 3600) {
1215 $hours = round($diff/3600);
1216 // TRANS: Used in notices to indicate when the notice was made compared to now.
1217 return sprintf( ngettext('about one hour ago', 'about %d hours ago', $hours), $hours);
1218 } else if ($diff < 37 * 3600) {
1219 // TRANS: Used in notices to indicate when the notice was made compared to now.
1220 return _('about a day ago');
1221 } else if ($diff < 24 * 24 * 3600) {
1222 $days = round($diff/(24*3600));
1223 // TRANS: Used in notices to indicate when the notice was made compared to now.
1224 return sprintf( ngettext('about one day ago', 'about %d days ago', $days), $days);
1225 } else if ($diff < 46 * 24 * 3600) {
1226 // TRANS: Used in notices to indicate when the notice was made compared to now.
1227 return _('about a month ago');
1228 } else if ($diff < 330 * 24 * 3600) {
1229 $months = round($diff/(30*24*3600));
1230 // TRANS: Used in notices to indicate when the notice was made compared to now.
1231 return sprintf( ngettext('about one month ago', 'about %d months ago',$months), $months);
1232 } else if ($diff < 480 * 24 * 3600) {
1233 // TRANS: Used in notices to indicate when the notice was made compared to now.
1234 return _('about a year ago');
1236 return common_exact_date($dt);
1240 function common_exact_date($dt)
1246 $_utc = new DateTimeZone('UTC');
1247 $_siteTz = new DateTimeZone(common_timezone());
1250 $dateStr = date('d F Y H:i:s', strtotime($dt));
1251 $d = new DateTime($dateStr, $_utc);
1252 $d->setTimezone($_siteTz);
1253 return $d->format(DATE_RFC850);
1256 function common_date_w3dtf($dt)
1258 $dateStr = date('d F Y H:i:s', strtotime($dt));
1259 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1260 $d->setTimezone(new DateTimeZone(common_timezone()));
1261 return $d->format(DATE_W3C);
1264 function common_date_rfc2822($dt)
1266 $dateStr = date('d F Y H:i:s', strtotime($dt));
1267 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1268 $d->setTimezone(new DateTimeZone(common_timezone()));
1269 return $d->format('r');
1272 function common_date_iso8601($dt)
1274 $dateStr = date('d F Y H:i:s', strtotime($dt));
1275 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1276 $d->setTimezone(new DateTimeZone(common_timezone()));
1277 return $d->format('c');
1280 function common_sql_now()
1282 return common_sql_date(time());
1285 function common_sql_date($datetime)
1287 return strftime('%Y-%m-%d %H:%M:%S', $datetime);
1291 * Return an SQL fragment to calculate an age-based weight from a given
1292 * timestamp or datetime column.
1294 * @param string $column name of field we're comparing against current time
1295 * @param integer $dropoff divisor for age in seconds before exponentiation
1296 * @return string SQL fragment
1298 function common_sql_weight($column, $dropoff)
1300 if (common_config('db', 'type') == 'pgsql') {
1301 // PostgreSQL doesn't support timestampdiff function.
1302 // @fixme will this use the right time zone?
1303 // @fixme does this handle cross-year subtraction correctly?
1304 return "sum(exp(-extract(epoch from (now() - $column)) / $dropoff))";
1306 return "sum(exp(timestampdiff(second, utc_timestamp(), $column) / $dropoff))";
1310 function common_redirect($url, $code=307)
1312 static $status = array(301 => "Moved Permanently",
1315 307 => "Temporary Redirect");
1317 header('HTTP/1.1 '.$code.' '.$status[$code]);
1318 header("Location: $url");
1320 $xo = new XMLOutputter();
1322 '-//W3C//DTD XHTML 1.0 Strict//EN',
1323 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
1324 $xo->element('a', array('href' => $url), $url);
1329 // Stick the notice on the queue
1331 function common_enqueue_notice($notice)
1333 static $localTransports = array('omb',
1336 $transports = array();
1337 if (common_config('sms', 'enabled')) {
1338 $transports[] = 'sms';
1340 if (Event::hasHandler('HandleQueuedNotice')) {
1341 $transports[] = 'plugin';
1344 // We can skip these for gatewayed notices.
1345 if ($notice->isLocal()) {
1346 $transports = array_merge($transports, $localTransports);
1349 if (Event::handle('StartEnqueueNotice', array($notice, &$transports))) {
1351 $qm = QueueManager::get();
1353 foreach ($transports as $transport)
1355 $qm->enqueue($notice, $transport);
1358 Event::handle('EndEnqueueNotice', array($notice, $transports));
1365 * Broadcast profile updates to OMB and other remote subscribers.
1367 * Since this may be slow with a lot of subscribers or bad remote sites,
1368 * this is run through the background queues if possible.
1370 function common_broadcast_profile(Profile $profile)
1372 $qm = QueueManager::get();
1373 $qm->enqueue($profile, "profile");
1377 function common_profile_url($nickname)
1379 return common_local_url('showstream', array('nickname' => $nickname),
1384 * Should make up a reasonable root URL
1386 function common_root_url($ssl=false)
1388 $url = common_path('', $ssl, false);
1389 $i = strpos($url, '?');
1391 $url = substr($url, 0, $i);
1397 * returns $bytes bytes of random data as a hexadecimal string
1398 * "good" here is a goal and not a guarantee
1400 function common_good_rand($bytes)
1402 // XXX: use random.org...?
1403 if (@file_exists('/dev/urandom')) {
1404 return common_urandom($bytes);
1405 } else { // FIXME: this is probably not good enough
1406 return common_mtrand($bytes);
1410 function common_urandom($bytes)
1412 $h = fopen('/dev/urandom', 'rb');
1414 $src = fread($h, $bytes);
1417 for ($i = 0; $i < $bytes; $i++) {
1418 $enc .= sprintf("%02x", (ord($src[$i])));
1423 function common_mtrand($bytes)
1426 for ($i = 0; $i < $bytes; $i++) {
1427 $enc .= sprintf("%02x", mt_rand(0, 255));
1433 * Record the given URL as the return destination for a future
1434 * form submission, to be read by common_get_returnto().
1436 * @param string $url
1438 * @fixme as a session-global setting, this can allow multiple forms
1439 * to conflict and overwrite each others' returnto destinations if
1440 * the user has multiple tabs or windows open.
1442 * Should refactor to index with a token or otherwise only pass the
1443 * data along its intended path.
1445 function common_set_returnto($url)
1447 common_ensure_session();
1448 $_SESSION['returnto'] = $url;
1452 * Fetch a return-destination URL previously recorded by
1453 * common_set_returnto().
1455 * @return mixed URL string or null
1457 * @fixme as a session-global setting, this can allow multiple forms
1458 * to conflict and overwrite each others' returnto destinations if
1459 * the user has multiple tabs or windows open.
1461 * Should refactor to index with a token or otherwise only pass the
1462 * data along its intended path.
1464 function common_get_returnto()
1466 common_ensure_session();
1467 return (array_key_exists('returnto', $_SESSION)) ? $_SESSION['returnto'] : null;
1470 function common_timestamp()
1472 return date('YmdHis');
1475 function common_ensure_syslog()
1477 static $initialized = false;
1478 if (!$initialized) {
1479 openlog(common_config('syslog', 'appname'), 0,
1480 common_config('syslog', 'facility'));
1481 $initialized = true;
1485 function common_log_line($priority, $msg)
1487 static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1488 'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1489 return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . PHP_EOL;
1492 function common_request_id()
1495 $server = common_config('site', 'server');
1496 if (php_sapi_name() == 'cli') {
1497 $script = basename($_SERVER['PHP_SELF']);
1498 return "$server:$script:$pid";
1500 static $req_id = null;
1501 if (!isset($req_id)) {
1502 $req_id = substr(md5(mt_rand()), 0, 8);
1504 if (isset($_SERVER['REQUEST_URI'])) {
1505 $url = $_SERVER['REQUEST_URI'];
1507 $method = $_SERVER['REQUEST_METHOD'];
1508 return "$server:$pid.$req_id $method $url";
1512 function common_log($priority, $msg, $filename=null)
1514 if(Event::handle('StartLog', array(&$priority, &$msg, &$filename))){
1515 $msg = '[' . common_request_id() . '] ' . $msg;
1516 $logfile = common_config('site', 'logfile');
1518 $log = fopen($logfile, "a");
1520 $output = common_log_line($priority, $msg);
1521 fwrite($log, $output);
1525 common_ensure_syslog();
1526 syslog($priority, $msg);
1528 Event::handle('EndLog', array($priority, $msg, $filename));
1532 function common_debug($msg, $filename=null)
1535 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1537 common_log(LOG_DEBUG, $msg);
1541 function common_log_db_error(&$object, $verb, $filename=null)
1543 $objstr = common_log_objstring($object);
1544 $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1545 if (is_object($last_error)) {
1546 $msg = $last_error->message;
1548 $msg = 'Unknown error (' . var_export($last_error, true) . ')';
1550 common_log(LOG_ERR, $msg . '(' . $verb . ' on ' . $objstr . ')', $filename);
1553 function common_log_objstring(&$object)
1555 if (is_null($object)) {
1558 if (!($object instanceof DB_DataObject)) {
1561 $arr = $object->toArray();
1563 foreach ($arr as $k => $v) {
1564 if (is_object($v)) {
1565 $fields[] = "$k='".get_class($v)."'";
1567 $fields[] = "$k='$v'";
1570 $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1574 function common_valid_http_url($url)
1576 return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1579 function common_valid_tag($tag)
1581 if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1582 return (Validate::email($matches[1]) ||
1583 preg_match('/^([\w-\.]+)$/', $matches[1]));
1589 * Determine if given domain or address literal is valid
1590 * eg for use in JIDs and URLs. Does not check if the domain
1593 * @param string $domain
1594 * @return boolean valid or not
1596 function common_valid_domain($domain)
1598 $octet = "(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])";
1599 $ipv4 = "(?:$octet(?:\.$octet){3})";
1600 if (preg_match("/^$ipv4$/u", $domain)) return true;
1602 $group = "(?:[0-9a-f]{1,4})";
1603 $ipv6 = "(?:\[($group(?::$group){0,7})?(::)?($group(?::$group){0,7})?\])"; // http://tools.ietf.org/html/rfc3513#section-2.2
1605 if (preg_match("/^$ipv6$/ui", $domain, $matches)) {
1606 $before = explode(":", $matches[1]);
1607 $zeroes = $matches[2];
1608 $after = explode(":", $matches[3]);
1616 $explicit = count($before) + count($after);
1617 if ($explicit < $min || $explicit > $max) {
1624 require_once "Net/IDNA.php";
1625 $idn = Net_IDNA::getInstance();
1626 $domain = $idn->encode($domain);
1627 } catch (Exception $e) {
1631 $subdomain = "(?:[a-z0-9][a-z0-9-]*)"; // @fixme
1632 $fqdn = "(?:$subdomain(?:\.$subdomain)*\.?)";
1634 return preg_match("/^$fqdn$/ui", $domain);
1637 /* Following functions are copied from MediaWiki GlobalFunctions.php
1638 * and written by Evan Prodromou. */
1640 function common_accept_to_prefs($accept, $def = '*/*')
1642 // No arg means accept anything (per HTTP spec)
1644 return array($def => 1);
1649 $parts = explode(',', $accept);
1651 foreach($parts as $part) {
1652 // FIXME: doesn't deal with params like 'text/html; level=1'
1653 @list($value, $qpart) = explode(';', trim($part));
1655 if(!isset($qpart)) {
1657 } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1658 $prefs[$value] = $match[1];
1665 function common_mime_type_match($type, $avail)
1667 if(array_key_exists($type, $avail)) {
1670 $parts = explode('/', $type);
1671 if(array_key_exists($parts[0] . '/*', $avail)) {
1672 return $parts[0] . '/*';
1673 } elseif(array_key_exists('*/*', $avail)) {
1681 function common_negotiate_type($cprefs, $sprefs)
1685 foreach(array_keys($sprefs) as $type) {
1686 $parts = explode('/', $type);
1687 if($parts[1] != '*') {
1688 $ckey = common_mime_type_match($type, $cprefs);
1690 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1695 foreach(array_keys($cprefs) as $type) {
1696 $parts = explode('/', $type);
1697 if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1698 $skey = common_mime_type_match($type, $sprefs);
1700 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1706 $besttype = 'text/html';
1708 foreach(array_keys($combine) as $type) {
1709 if($combine[$type] > $bestq) {
1711 $bestq = $combine[$type];
1715 if ('text/html' === $besttype) {
1716 return "text/html; charset=utf-8";
1721 function common_config($main, $sub)
1724 return (array_key_exists($main, $config) &&
1725 array_key_exists($sub, $config[$main])) ? $config[$main][$sub] : false;
1729 * Pull arguments from a GET/POST/REQUEST array with first-level input checks:
1730 * strips "magic quotes" slashes if necessary, and kills invalid UTF-8 strings.
1732 * @param array $from
1735 function common_copy_args($from)
1738 $strip = get_magic_quotes_gpc();
1739 foreach ($from as $k => $v) {
1741 $to[$k] = common_copy_args($v);
1744 $v = stripslashes($v);
1746 $to[$k] = strval(common_validate_utf8($v));
1753 * Neutralise the evil effects of magic_quotes_gpc in the current request.
1754 * This is used before handing a request off to OAuthRequest::from_request.
1755 * @fixme Doesn't consider vars other than _POST and _GET?
1756 * @fixme Can't be undone and could corrupt data if run twice.
1758 function common_remove_magic_from_request()
1760 if(get_magic_quotes_gpc()) {
1761 $_POST=array_map('stripslashes',$_POST);
1762 $_GET=array_map('stripslashes',$_GET);
1766 function common_user_uri(&$user)
1768 return common_local_url('userbyid', array('id' => $user->id),
1772 function common_notice_uri(&$notice)
1774 return common_local_url('shownotice',
1775 array('notice' => $notice->id),
1779 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1781 function common_confirmation_code($bits)
1783 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1784 static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1785 $chars = ceil($bits/5);
1787 for ($i = 0; $i < $chars; $i++) {
1788 // XXX: convert to string and back
1789 $num = hexdec(common_good_rand(1));
1790 // XXX: randomness is too precious to throw away almost
1791 // 40% of the bits we get!
1792 $code .= $codechars[$num%32];
1797 // convert markup to HTML
1799 function common_markup_to_html($c)
1801 $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1802 $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1803 $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1804 return Markdown($c);
1807 function common_profile_uri($profile)
1812 $user = User::staticGet($profile->id);
1817 $remote = Remote_profile::staticGet($profile->id);
1819 return $remote->uri;
1821 // XXX: this is a very bad profile!
1825 function common_canonical_sms($sms)
1828 preg_replace('/\D/', '', $sms);
1832 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1837 case E_COMPILE_ERROR:
1841 case E_RECOVERABLE_ERROR:
1842 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [ABORT]");
1847 case E_COMPILE_WARNING:
1848 case E_CORE_WARNING:
1849 case E_USER_WARNING:
1850 common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1855 common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1860 case E_USER_DEPRECATED:
1861 // XXX: config variable to log this stuff, too
1865 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [UNKNOWN LEVEL, die()'ing]");
1870 // FIXME: show error page if we're on the Web
1871 /* Don't execute PHP internal error handler */
1875 function common_session_token()
1877 common_ensure_session();
1878 if (!array_key_exists('token', $_SESSION)) {
1879 $_SESSION['token'] = common_good_rand(64);
1881 return $_SESSION['token'];
1884 function common_license_terms($uri)
1886 if(preg_match('/creativecommons.org\/licenses\/([^\/]+)/', $uri, $matches)) {
1887 return explode('-',$matches[1]);
1892 function common_compatible_license($from, $to)
1894 $from_terms = common_license_terms($from);
1895 // public domain and cc-by are compatible with everything
1896 if(count($from_terms) == 1 && ($from_terms[0] == 'publicdomain' || $from_terms[0] == 'by')) {
1899 $to_terms = common_license_terms($to);
1900 // sa is compatible across versions. IANAL
1901 if(in_array('sa',$from_terms) || in_array('sa',$to_terms)) {
1902 return count(array_diff($from_terms, $to_terms)) == 0;
1904 // XXX: better compatibility check needed here!
1905 // Should at least normalise URIs
1906 return ($from == $to);
1910 * returns a quoted table name, if required according to config
1912 function common_database_tablename($tablename)
1914 if(common_config('db','quote_identifiers')) {
1915 $tablename = '"'. $tablename .'"';
1917 //table prefixes could be added here later
1922 * Shorten a URL with the current user's configured shortening service,
1923 * or ur1.ca if configured, or not at all if no shortening is set up.
1925 * @param string $long_url original URL
1926 * @param boolean $force Force shortening (used when notice is too long)
1928 * @return string may return the original URL if shortening failed
1930 * @fixme provide a way to specify a particular shortener
1931 * @fixme provide a way to specify to use a given user's shortening preferences
1934 function common_shorten_url($long_url, $force = false)
1936 common_debug("Shortening URL '$long_url' (force = $force)");
1938 $long_url = trim($long_url);
1940 $user = common_current_user();
1942 $maxUrlLength = User_urlshortener_prefs::maxUrlLength($user);
1943 common_debug("maxUrlLength = $maxUrlLength");
1945 // $force forces shortening even if it's not strictly needed
1947 if (mb_strlen($long_url) < $maxUrlLength && !$force) {
1948 common_debug("Skipped shortening URL.");
1952 $shortenerName = User_urlshortener_prefs::urlShorteningService($user);
1954 common_debug("Shortener name = '$shortenerName'");
1956 if (Event::handle('StartShortenUrl', array($long_url, $shortenerName, &$shortenedUrl))) {
1957 //URL wasn't shortened, so return the long url
1960 //URL was shortened, so return the result
1961 return trim($shortenedUrl);
1966 * @return mixed array($proxy, $ip) for web requests; proxy may be null
1967 * null if not a web request
1969 * @fixme X-Forwarded-For can be chained by multiple proxies;
1970 we should parse the list and provide a cleaner array
1971 * @fixme X-Forwarded-For can be forged by clients; only use them if trusted
1972 * @fixme X_Forwarded_For headers will override X-Forwarded-For read through $_SERVER;
1973 * use function to get exact request headers from Apache if possible.
1975 function common_client_ip()
1977 if (!isset($_SERVER) || !array_key_exists('REQUEST_METHOD', $_SERVER)) {
1981 if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) {
1982 if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1983 $proxy = $_SERVER['HTTP_CLIENT_IP'];
1985 $proxy = $_SERVER['REMOTE_ADDR'];
1987 $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1990 if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1991 $ip = $_SERVER['HTTP_CLIENT_IP'];
1993 $ip = $_SERVER['REMOTE_ADDR'];
1997 return array($proxy, $ip);
2000 function common_url_to_nickname($url)
2002 static $bad = array('query', 'user', 'password', 'port', 'fragment');
2004 $parts = parse_url($url);
2006 # If any of these parts exist, this won't work
2008 foreach ($bad as $badpart) {
2009 if (array_key_exists($badpart, $parts)) {
2014 # We just have host and/or path
2016 # If it's just a host...
2017 if (array_key_exists('host', $parts) &&
2018 (!array_key_exists('path', $parts) || strcmp($parts['path'], '/') == 0))
2020 $hostparts = explode('.', $parts['host']);
2022 # Try to catch common idiom of nickname.service.tld
2024 if ((count($hostparts) > 2) &&
2025 (strlen($hostparts[count($hostparts) - 2]) > 3) && # try to skip .co.uk, .com.au
2026 (strcmp($hostparts[0], 'www') != 0))
2028 return common_nicknamize($hostparts[0]);
2030 # Do the whole hostname
2031 return common_nicknamize($parts['host']);
2034 if (array_key_exists('path', $parts)) {
2035 # Strip starting, ending slashes
2036 $path = preg_replace('@/$@', '', $parts['path']);
2037 $path = preg_replace('@^/@', '', $path);
2038 $path = basename($path);
2040 // Hack for MediaWiki user pages, in the form:
2041 // http://example.com/wiki/User:Myname
2042 // ('User' may be localized.)
2043 if (strpos($path, ':')) {
2044 $parts = array_filter(explode(':', $path));
2045 $path = $parts[count($parts) - 1];
2049 return common_nicknamize($path);
2057 function common_nicknamize($str)
2059 $str = preg_replace('/\W/', '', $str);
2060 return strtolower($str);