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_language()
162 // If there is a user logged in and they've set a language preference
163 // then return that one...
164 if (_have_config() && common_logged_in()) {
165 $user = common_current_user();
166 $user_language = $user->language;
168 if ($user->language) {
169 // Validate -- we don't want to end up with a bogus code
170 // left over from some old junk.
171 foreach (common_config('site', 'languages') as $code => $info) {
172 if ($info['lang'] == $user_language) {
173 return $user_language;
179 // Otherwise, find the best match for the languages requested by the
181 if (common_config('site', 'langdetect')) {
182 $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : null;
183 if (!empty($httplang)) {
184 $language = client_prefered_language($httplang);
190 // Finally, if none of the above worked, use the site's default...
191 return common_config('site', 'language');
195 * Salted, hashed passwords are stored in the DB.
197 function common_munge_password($password, $id)
199 if (is_object($id) || is_object($password)) {
200 $e = new Exception();
201 common_log(LOG_ERR, __METHOD__ . ' object in param to common_munge_password ' .
202 str_replace("\n", " ", $e->getTraceAsString()));
204 return md5($password . $id);
208 * Check if a username exists and has matching password.
210 function common_check_user($nickname, $password)
212 // empty nickname always unacceptable
213 if (empty($nickname)) {
217 $authenticatedUser = false;
219 if (Event::handle('StartCheckPassword', array($nickname, $password, &$authenticatedUser))) {
220 $user = User::staticGet('nickname', common_canonical_nickname($nickname));
222 if (!empty($password)) { // never allow login with blank password
223 if (0 == strcmp(common_munge_password($password, $user->id),
225 //internal checking passed
226 $authenticatedUser = $user;
230 Event::handle('EndCheckPassword', array($nickname, $password, $authenticatedUser));
233 return $authenticatedUser;
237 * Is the current user logged in?
239 function common_logged_in()
241 return (!is_null(common_current_user()));
244 function common_have_session()
246 return (0 != strcmp(session_id(), ''));
249 function common_ensure_session()
252 if (array_key_exists(session_name(), $_COOKIE)) {
253 $c = $_COOKIE[session_name()];
255 if (!common_have_session()) {
256 if (common_config('sessions', 'handle')) {
257 Session::setSaveHandler();
259 if (array_key_exists(session_name(), $_GET)) {
260 $id = $_GET[session_name()];
261 } else if (array_key_exists(session_name(), $_COOKIE)) {
262 $id = $_COOKIE[session_name()];
268 if (!isset($_SESSION['started'])) {
269 $_SESSION['started'] = time();
271 common_log(LOG_WARNING, 'Session cookie "' . $_COOKIE[session_name()] . '" ' .
272 ' is set but started value is null');
278 // Three kinds of arguments:
283 // Initialize to false; set to null if none found
286 function common_set_user($user)
290 if (is_null($user) && common_have_session()) {
292 unset($_SESSION['userid']);
294 } else if (is_string($user)) {
296 $user = User::staticGet('nickname', $nickname);
297 } else if (!($user instanceof User)) {
302 if (Event::handle('StartSetUser', array(&$user))) {
304 common_ensure_session();
305 $_SESSION['userid'] = $user->id;
307 Event::handle('EndSetUser', array($user));
315 function common_set_cookie($key, $value, $expiration=0)
317 $path = common_config('site', 'path');
318 $server = common_config('site', 'server');
320 if ($path && ($path != '/')) {
321 $cookiepath = '/' . $path . '/';
325 return setcookie($key,
330 common_config('site', 'ssl')=='always');
333 define('REMEMBERME', 'rememberme');
334 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); // 30 days
336 function common_rememberme($user=null)
339 $user = common_current_user();
345 $rm = new Remember_me();
347 $rm->code = common_good_rand(16);
348 $rm->user_id = $user->id;
350 // Wrap the insert in some good ol' fashioned transaction code
354 $result = $rm->insert();
357 common_log_db_error($rm, 'INSERT', __FILE__);
361 $rm->query('COMMIT');
363 $cookieval = $rm->user_id . ':' . $rm->code;
365 common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
367 common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
372 function common_remembered_user()
376 $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null;
382 list($id, $code) = explode(':', $packed);
384 if (!$id || !$code) {
385 common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
390 $rm = Remember_me::staticGet($code);
393 common_log(LOG_WARNING, 'No such remember code: ' . $code);
398 if ($rm->user_id != $id) {
399 common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
404 $user = User::staticGet($rm->user_id);
407 common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
413 $result = $rm->delete();
416 common_log_db_error($rm, 'DELETE', __FILE__);
417 common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
422 common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
424 common_set_user($user);
425 common_real_login(false);
427 // We issue a new cookie, so they can log in
428 // automatically again after this session
430 common_rememberme($user);
436 * must be called with a valid user!
438 function common_forgetme()
440 common_set_cookie(REMEMBERME, '', 0);
444 * Who is the current user?
446 function common_current_user()
450 if (!_have_config()) {
454 if ($_cur === false) {
456 if (isset($_COOKIE[session_name()]) || isset($_GET[session_name()])
457 || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
458 common_ensure_session();
459 $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
461 $user = User::staticGet($id);
469 // that didn't work; try to remember; will init $_cur to null on failure
470 $_cur = common_remembered_user();
473 // XXX: Is this necessary?
474 $_SESSION['userid'] = $_cur->id;
482 * Logins that are 'remembered' aren't 'real' -- they're subject to
483 * cookie-stealing. So, we don't let them do certain things. New reg,
484 * OpenID, and password logins _are_ real.
486 function common_real_login($real=true)
488 common_ensure_session();
489 $_SESSION['real_login'] = $real;
492 function common_is_real_login()
494 return common_logged_in() && $_SESSION['real_login'];
498 * Get a hash portion for HTTP caching Etags and such including
499 * info on the current user's session. If login/logout state changes,
500 * or we've changed accounts, or we've renamed the current user,
501 * we'll get a new hash value.
503 * This should not be considered secure information.
505 * @param User $user (optional; uses common_current_user() if left out)
508 function common_user_cache_hash($user=false)
510 if ($user === false) {
511 $user = common_current_user();
514 return crc32($user->id . ':' . $user->nickname);
520 // get canonical version of nickname for comparison
521 function common_canonical_nickname($nickname)
523 // XXX: UTF-8 canonicalization (like combining chars)
524 return strtolower($nickname);
527 // get canonical version of email for comparison
528 function common_canonical_email($email)
530 // XXX: canonicalize UTF-8
531 // XXX: lcase the domain part
535 function common_render_content($text, $notice)
537 $r = common_render_text($text);
538 $id = $notice->profile_id;
539 $r = common_linkify_mentions($r, $notice);
540 $r = preg_replace('/(^|[\s\.\,\:\;]+)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r);
544 function common_linkify_mentions($text, $notice)
546 $mentions = common_find_mentions($text, $notice);
548 // We need to go through in reverse order by position,
549 // so our positions stay valid despite our fudging with the
554 foreach ($mentions as $mention)
556 $points[$mention['position']] = $mention;
561 foreach ($points as $position => $mention) {
563 $linkText = common_linkify_mention($mention);
565 $text = substr_replace($text, $linkText, $position, mb_strlen($mention['text']));
571 function common_linkify_mention($mention)
575 if (Event::handle('StartLinkifyMention', array($mention, &$output))) {
577 $xs = new XMLStringer(false);
579 $attrs = array('href' => $mention['url'],
582 if (!empty($mention['title'])) {
583 $attrs['title'] = $mention['title'];
586 $xs->elementStart('span', 'vcard');
587 $xs->elementStart('a', $attrs);
588 $xs->element('span', 'fn nickname', $mention['text']);
589 $xs->elementEnd('a');
590 $xs->elementEnd('span');
592 $output = $xs->getString();
594 Event::handle('EndLinkifyMention', array($mention, &$output));
600 function common_find_mentions($text, $notice)
604 $sender = Profile::staticGet('id', $notice->profile_id);
606 if (empty($sender)) {
610 if (Event::handle('StartFindMentions', array($sender, $text, &$mentions))) {
611 // Get the context of the original notice, if any
612 $originalAuthor = null;
613 $originalNotice = null;
614 $originalMentions = array();
618 if (!empty($notice) && !empty($notice->reply_to)) {
619 $originalNotice = Notice::staticGet('id', $notice->reply_to);
620 if (!empty($originalNotice)) {
621 $originalAuthor = Profile::staticGet('id', $originalNotice->profile_id);
623 $ids = $originalNotice->getReplies();
625 foreach ($ids as $id) {
626 $repliedTo = Profile::staticGet('id', $id);
627 if (!empty($repliedTo)) {
628 $originalMentions[$repliedTo->nickname] = $repliedTo;
634 preg_match_all('/^T ([A-Z0-9]{1,64}) /',
637 PREG_OFFSET_CAPTURE);
639 preg_match_all('/(?:^|\s+)@(['.NICKNAME_FMT.']{1,64})/',
642 PREG_OFFSET_CAPTURE);
644 $matches = array_merge($tmatches[1], $atmatches[1]);
646 foreach ($matches as $match) {
647 $nickname = common_canonical_nickname($match[0]);
649 // Try to get a profile for this nickname.
650 // Start with conversation context, then go to
653 if (!empty($originalAuthor) && $originalAuthor->nickname == $nickname) {
654 $mentioned = $originalAuthor;
655 } else if (!empty($originalMentions) &&
656 array_key_exists($nickname, $originalMentions)) {
657 $mentioned = $originalMentions[$nickname];
659 $mentioned = common_relative_profile($sender, $nickname);
662 if (!empty($mentioned)) {
663 $user = User::staticGet('id', $mentioned->id);
666 $url = common_local_url('userbyid', array('id' => $user->id));
668 $url = $mentioned->profileurl;
671 $mention = array('mentioned' => array($mentioned),
673 'position' => $match[1],
676 if (!empty($mentioned->fullname)) {
677 $mention['title'] = $mentioned->fullname;
680 $mentions[] = $mention;
684 // @#tag => mention of all subscriptions tagged 'tag'
686 preg_match_all('/(?:^|[\s\.\,\:\;]+)@#([\pL\pN_\-\.]{1,64})/',
689 PREG_OFFSET_CAPTURE);
691 foreach ($hmatches[1] as $hmatch) {
693 $tag = common_canonical_tag($hmatch[0]);
695 $tagged = Profile_tag::getTagged($sender->id, $tag);
697 $url = common_local_url('subscriptions',
698 array('nickname' => $sender->nickname,
701 $mentions[] = array('mentioned' => $tagged,
702 'text' => $hmatch[0],
703 'position' => $hmatch[1],
707 Event::handle('EndFindMentions', array($sender, $text, &$mentions));
713 function common_render_text($text)
715 $r = htmlspecialchars($text);
717 $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
718 $r = common_replace_urls_callback($r, 'common_linkify');
719 $r = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
724 function common_replace_urls_callback($text, $callback, $notice_id = null) {
725 // Start off with a regex
727 '(?:^|[\s\<\>\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'.
730 '(?:'. //Known protocols
732 '(?:(?:https?|ftps?|mms|rtsp|gopher|news|nntp|telnet|wais|file|prospero|webcal|irc)://)'.
734 '(?:(?:mailto|aim|tel|xmpp):)'.
736 '(?:[\pN\pL\-\_\+\%\~]+(?::[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
739 '\[[\pN\pL\-\_\:\.]+(?<![\.\:])\]'. //[dns]
741 '[\pN\pL\-\_\:\.]+(?<![\.\:])'. //dns
745 '|(?:(?: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
747 '\[?(?:(?:(?:[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})))\]?(?<!:)'.
749 '(?:[\pN\pL\-\_\+\%\~]+(?:\:[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
750 '[\pN\pL\-\_]+(?:\.[\pN\pL\-\_]+)*\.'.
751 //tld list from http://data.iana.org/TLD/tlds-alpha-by-domain.txt, also added local, loc, and onion
752 '(?: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)'.
756 '(?:\:\d+)?'. //:port
757 '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@]*)?'. // /path
758 '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@\/]*)?'. // ?query string
759 '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\@/\?\#]*)?'. // #fragment
760 ')(?<![\?\.\,\#\,])'.
763 //preg_match_all($regex,$text,$matches);
765 return preg_replace_callback($regex, curry('callback_helper',$callback,$notice_id) ,$text);
768 function callback_helper($matches, $callback, $notice_id) {
770 $left = strpos($matches[0],$url);
771 $right = $left+strlen($url);
773 $groupSymbolSets=array(
791 $cannotEndWith=array('.','?',',','#');
795 foreach($groupSymbolSets as $groupSymbolSet){
796 if(substr($url,-1)==$groupSymbolSet['right']){
797 $group_left_count = substr_count($url,$groupSymbolSet['left']);
798 $group_right_count = substr_count($url,$groupSymbolSet['right']);
799 if($group_left_count<$group_right_count){
801 $url=substr($url,0,-1);
805 if(in_array(substr($url,-1),$cannotEndWith)){
807 $url=substr($url,0,-1);
809 }while($original_url!=$url);
811 if(empty($notice_id)){
812 $result = call_user_func_array($callback, array($url));
814 $result = call_user_func_array($callback, array(array($url,$notice_id)) );
816 return substr($matches[0],0,$left) . $result . substr($matches[0],$right);
819 if (version_compare(PHP_VERSION, '5.3.0', 'ge')) {
820 // lambda implementation in a separate file; PHP 5.2 won't parse it.
821 require_once INSTALLDIR . "/lib/curry.php";
823 function curry($fn) {
824 $args = func_get_args();
826 $id = uniqid('_partial');
827 $GLOBALS[$id] = array($fn, $args);
828 return create_function('',
829 '$args = func_get_args(); '.
830 'return call_user_func_array('.
831 '$GLOBALS["'.$id.'"][0],'.
834 '$GLOBALS["'.$id.'"][1]));');
838 function common_linkify($url) {
839 // It comes in special'd, so we unspecial it before passing to the stringifying
841 $url = htmlspecialchars_decode($url);
843 if(strpos($url, '@') !== false && strpos($url, ':') === false) {
844 //url is an email address without the mailto: protocol
845 $canon = "mailto:$url";
846 $longurl = "mailto:$url";
849 $canon = File_redirection::_canonUrl($url);
851 $longurl_data = File_redirection::where($canon);
852 if (is_array($longurl_data)) {
853 $longurl = $longurl_data['url'];
854 } elseif (is_string($longurl_data)) {
855 $longurl = $longurl_data;
857 // Unable to reach the server to verify contents, etc
858 // Just pass the link on through for now.
859 common_log(LOG_ERR, "Can't linkify url '$url'");
864 $attrs = array('href' => $canon, 'title' => $longurl);
866 $is_attachment = false;
867 $attachment_id = null;
870 // Check to see whether this is a known "attachment" URL.
872 $f = File::staticGet('url', $longurl);
875 // XXX: this writes to the database. :<
876 $f = File::processNew($longurl);
880 if ($f->getEnclosure()) {
881 $is_attachment = true;
882 $attachment_id = $f->id;
884 $thumb = File_thumbnail::staticGet('file_id', $f->id);
885 if (!empty($thumb)) {
892 if ($is_attachment) {
893 $attrs['class'] = 'attachment';
895 $attrs['class'] = 'attachment thumbnail';
897 $attrs['id'] = "attachment-{$attachment_id}";
900 // Whether to nofollow
902 $nf = common_config('nofollow', 'external');
904 if ($nf == 'never') {
905 $attrs['rel'] = 'external';
907 $attrs['rel'] = 'nofollow external';
910 return XMLStringer::estring('a', $attrs, $url);
913 function common_shorten_links($text, $always = false)
915 $maxLength = Notice::maxContent();
916 if (!$always && ($maxLength == 0 || mb_strlen($text) <= $maxLength)) return $text;
917 return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
921 * Very basic stripping of invalid UTF-8 input text.
924 * @return mixed string or null if invalid input
926 * @todo ideally we should drop bad chars, and maybe do some of the checks
927 * from common_xml_safe_str. But we can't strip newlines, etc.
928 * @todo Unicode normalization might also be useful, but not needed now.
930 function common_validate_utf8($str)
932 // preg_replace will return NULL on invalid UTF-8 input.
934 // Note: empty regex //u also caused NULL return on some
935 // production machines, but none of our test machines.
937 // This should be replaced with a more reliable check.
938 return preg_replace('/\x00/u', '', $str);
942 * Make sure an arbitrary string is safe for output in XML as a single line.
947 function common_xml_safe_str($str)
949 // Replace common eol and extra whitespace input chars
954 "\0", // null byte eos
955 "\x0B" // vertical tab
958 $replacement = array(
966 $str = str_replace($unWelcome, $replacement, $str);
968 // Neutralize any additional control codes and UTF-16 surrogates
969 // (Twitter uses '*')
970 return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
973 function common_tag_link($tag)
975 $canonical = common_canonical_tag($tag);
976 if (common_config('singleuser', 'enabled')) {
977 // regular TagAction isn't set up in 1user mode
978 $user = User::singleUser();
979 $url = common_local_url('showstream',
980 array('nickname' => $user->nickname,
981 'tag' => $canonical));
983 $url = common_local_url('tag', array('tag' => $canonical));
985 $xs = new XMLStringer();
986 $xs->elementStart('span', 'tag');
987 $xs->element('a', array('href' => $url,
990 $xs->elementEnd('span');
991 return $xs->getString();
994 function common_canonical_tag($tag)
996 $tag = mb_convert_case($tag, MB_CASE_LOWER, "UTF-8");
997 return str_replace(array('-', '_', '.'), '', $tag);
1000 function common_valid_profile_tag($str)
1002 return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
1005 function common_group_link($sender_id, $nickname)
1007 $sender = Profile::staticGet($sender_id);
1008 $group = User_group::getForNickname($nickname, $sender);
1009 if ($sender && $group && $sender->isMember($group)) {
1010 $attrs = array('href' => $group->permalink(),
1012 if (!empty($group->fullname)) {
1013 $attrs['title'] = $group->getFancyName();
1015 $xs = new XMLStringer();
1016 $xs->elementStart('span', 'vcard');
1017 $xs->elementStart('a', $attrs);
1018 $xs->element('span', 'fn nickname', $nickname);
1019 $xs->elementEnd('a');
1020 $xs->elementEnd('span');
1021 return $xs->getString();
1027 function common_relative_profile($sender, $nickname, $dt=null)
1029 // Try to find profiles this profile is subscribed to that have this nickname
1030 $recipient = new Profile();
1031 // XXX: use a join instead of a subquery
1032 $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
1033 $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
1034 if ($recipient->find(true)) {
1035 // XXX: should probably differentiate between profiles with
1036 // the same name by date of most recent update
1039 // Try to find profiles that listen to this profile and that have this nickname
1040 $recipient = new Profile();
1041 // XXX: use a join instead of a subquery
1042 $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
1043 $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
1044 if ($recipient->find(true)) {
1045 // XXX: should probably differentiate between profiles with
1046 // the same name by date of most recent update
1049 // If this is a local user, try to find a local user with that nickname.
1050 $sender = User::staticGet($sender->id);
1052 $recipient_user = User::staticGet('nickname', $nickname);
1053 if ($recipient_user) {
1054 return $recipient_user->getProfile();
1057 // Otherwise, no links. @messages from local users to remote users,
1058 // or from remote users to other remote users, are just
1059 // outside our ability to make intelligent guesses about
1063 function common_local_url($action, $args=null, $params=null, $fragment=null, $addSession=true)
1066 $path = $r->build($action, $args, $params, $fragment);
1068 $ssl = common_is_sensitive($action);
1070 if (common_config('site','fancy')) {
1071 $url = common_path(mb_substr($path, 1), $ssl, $addSession);
1073 if (mb_strpos($path, '/index.php') === 0) {
1074 $url = common_path(mb_substr($path, 1), $ssl, $addSession);
1076 $url = common_path('index.php'.$path, $ssl, $addSession);
1082 function common_is_sensitive($action)
1084 static $sensitive = array(
1089 'ApiOauthRequestToken',
1090 'ApiOauthAccessToken',
1091 'ApiOauthAuthorize',
1097 if (Event::handle('SensitiveAction', array($action, &$ssl))) {
1098 $ssl = in_array($action, $sensitive);
1104 function common_path($relative, $ssl=false, $addSession=true)
1106 $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
1108 if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
1109 || common_config('site', 'ssl') === 'always') {
1111 if (is_string(common_config('site', 'sslserver')) &&
1112 mb_strlen(common_config('site', 'sslserver')) > 0) {
1113 $serverpart = common_config('site', 'sslserver');
1114 } else if (common_config('site', 'server')) {
1115 $serverpart = common_config('site', 'server');
1117 common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
1121 if (common_config('site', 'server')) {
1122 $serverpart = common_config('site', 'server');
1124 common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
1129 $relative = common_inject_session($relative, $serverpart);
1132 return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
1135 function common_inject_session($url, $serverpart = null)
1137 if (common_have_session()) {
1139 if (empty($serverpart)) {
1140 $serverpart = parse_url($url, PHP_URL_HOST);
1143 $currentServer = $_SERVER['HTTP_HOST'];
1145 // Are we pointing to another server (like an SSL server?)
1147 if (!empty($currentServer) &&
1148 0 != strcasecmp($currentServer, $serverpart)) {
1149 // Pass the session ID as a GET parameter
1150 $sesspart = session_name() . '=' . session_id();
1151 $i = strpos($url, '?');
1152 if ($i === false) { // no GET params, just append
1153 $url .= '?' . $sesspart;
1155 $url = substr($url, 0, $i + 1).$sesspart.'&'.substr($url, $i + 1);
1163 function common_date_string($dt)
1165 // XXX: do some sexy date formatting
1166 // return date(DATE_RFC822, $dt);
1167 $t = strtotime($dt);
1171 if ($now < $t) { // that shouldn't happen!
1172 return common_exact_date($dt);
1173 } else if ($diff < 60) {
1174 // TRANS: Used in notices to indicate when the notice was made compared to now.
1175 return _('a few seconds ago');
1176 } else if ($diff < 92) {
1177 // TRANS: Used in notices to indicate when the notice was made compared to now.
1178 return _('about a minute ago');
1179 } else if ($diff < 3300) {
1180 $minutes = round($diff/60);
1181 // TRANS: Used in notices to indicate when the notice was made compared to now.
1182 return sprintf( ngettext('about one minute ago', 'about %d minutes ago', $minutes), $minutes);
1183 } else if ($diff < 5400) {
1184 // TRANS: Used in notices to indicate when the notice was made compared to now.
1185 return _('about an hour ago');
1186 } else if ($diff < 22 * 3600) {
1187 $hours = round($diff/3600);
1188 // TRANS: Used in notices to indicate when the notice was made compared to now.
1189 return sprintf( ngettext('about one hour ago', 'about %d hours ago', $hours), $hours);
1190 } else if ($diff < 37 * 3600) {
1191 // TRANS: Used in notices to indicate when the notice was made compared to now.
1192 return _('about a day ago');
1193 } else if ($diff < 24 * 24 * 3600) {
1194 $days = round($diff/(24*3600));
1195 // TRANS: Used in notices to indicate when the notice was made compared to now.
1196 return sprintf( ngettext('about one day ago', 'about %d days ago', $days), $days);
1197 } else if ($diff < 46 * 24 * 3600) {
1198 // TRANS: Used in notices to indicate when the notice was made compared to now.
1199 return _('about a month ago');
1200 } else if ($diff < 330 * 24 * 3600) {
1201 $months = round($diff/(30*24*3600));
1202 // TRANS: Used in notices to indicate when the notice was made compared to now.
1203 return sprintf( ngettext('about one month ago', 'about %d months ago',$months), $months);
1204 } else if ($diff < 480 * 24 * 3600) {
1205 // TRANS: Used in notices to indicate when the notice was made compared to now.
1206 return _('about a year ago');
1208 return common_exact_date($dt);
1212 function common_exact_date($dt)
1218 $_utc = new DateTimeZone('UTC');
1219 $_siteTz = new DateTimeZone(common_timezone());
1222 $dateStr = date('d F Y H:i:s', strtotime($dt));
1223 $d = new DateTime($dateStr, $_utc);
1224 $d->setTimezone($_siteTz);
1225 return $d->format(DATE_RFC850);
1228 function common_date_w3dtf($dt)
1230 $dateStr = date('d F Y H:i:s', strtotime($dt));
1231 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1232 $d->setTimezone(new DateTimeZone(common_timezone()));
1233 return $d->format(DATE_W3C);
1236 function common_date_rfc2822($dt)
1238 $dateStr = date('d F Y H:i:s', strtotime($dt));
1239 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1240 $d->setTimezone(new DateTimeZone(common_timezone()));
1241 return $d->format('r');
1244 function common_date_iso8601($dt)
1246 $dateStr = date('d F Y H:i:s', strtotime($dt));
1247 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1248 $d->setTimezone(new DateTimeZone(common_timezone()));
1249 return $d->format('c');
1252 function common_sql_now()
1254 return common_sql_date(time());
1257 function common_sql_date($datetime)
1259 return strftime('%Y-%m-%d %H:%M:%S', $datetime);
1263 * Return an SQL fragment to calculate an age-based weight from a given
1264 * timestamp or datetime column.
1266 * @param string $column name of field we're comparing against current time
1267 * @param integer $dropoff divisor for age in seconds before exponentiation
1268 * @return string SQL fragment
1270 function common_sql_weight($column, $dropoff)
1272 if (common_config('db', 'type') == 'pgsql') {
1273 // PostgreSQL doesn't support timestampdiff function.
1274 // @fixme will this use the right time zone?
1275 // @fixme does this handle cross-year subtraction correctly?
1276 return "sum(exp(-extract(epoch from (now() - $column)) / $dropoff))";
1278 return "sum(exp(timestampdiff(second, utc_timestamp(), $column) / $dropoff))";
1282 function common_redirect($url, $code=307)
1284 static $status = array(301 => "Moved Permanently",
1287 307 => "Temporary Redirect");
1289 header('HTTP/1.1 '.$code.' '.$status[$code]);
1290 header("Location: $url");
1292 $xo = new XMLOutputter();
1294 '-//W3C//DTD XHTML 1.0 Strict//EN',
1295 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
1296 $xo->element('a', array('href' => $url), $url);
1301 function common_broadcast_notice($notice, $remote=false)
1307 * Stick the notice on the queue.
1309 function common_enqueue_notice($notice)
1311 static $localTransports = array('omb',
1314 $transports = array();
1315 if (common_config('sms', 'enabled')) {
1316 $transports[] = 'sms';
1318 if (Event::hasHandler('HandleQueuedNotice')) {
1319 $transports[] = 'plugin';
1322 $xmpp = common_config('xmpp', 'enabled');
1325 $transports[] = 'jabber';
1328 // We can skip these for gatewayed notices.
1329 if ($notice->isLocal()) {
1330 $transports = array_merge($transports, $localTransports);
1332 $transports[] = 'public';
1336 if (Event::handle('StartEnqueueNotice', array($notice, &$transports))) {
1338 $qm = QueueManager::get();
1340 foreach ($transports as $transport)
1342 $qm->enqueue($notice, $transport);
1345 Event::handle('EndEnqueueNotice', array($notice, $transports));
1352 * Broadcast profile updates to OMB and other remote subscribers.
1354 * Since this may be slow with a lot of subscribers or bad remote sites,
1355 * this is run through the background queues if possible.
1357 function common_broadcast_profile(Profile $profile)
1359 $qm = QueueManager::get();
1360 $qm->enqueue($profile, "profile");
1364 function common_profile_url($nickname)
1366 return common_local_url('showstream', array('nickname' => $nickname),
1371 * Should make up a reasonable root URL
1373 function common_root_url($ssl=false)
1375 $url = common_path('', $ssl, false);
1376 $i = strpos($url, '?');
1378 $url = substr($url, 0, $i);
1384 * returns $bytes bytes of random data as a hexadecimal string
1385 * "good" here is a goal and not a guarantee
1387 function common_good_rand($bytes)
1389 // XXX: use random.org...?
1390 if (@file_exists('/dev/urandom')) {
1391 return common_urandom($bytes);
1392 } else { // FIXME: this is probably not good enough
1393 return common_mtrand($bytes);
1397 function common_urandom($bytes)
1399 $h = fopen('/dev/urandom', 'rb');
1401 $src = fread($h, $bytes);
1404 for ($i = 0; $i < $bytes; $i++) {
1405 $enc .= sprintf("%02x", (ord($src[$i])));
1410 function common_mtrand($bytes)
1413 for ($i = 0; $i < $bytes; $i++) {
1414 $enc .= sprintf("%02x", mt_rand(0, 255));
1420 * Record the given URL as the return destination for a future
1421 * form submission, to be read by common_get_returnto().
1423 * @param string $url
1425 * @fixme as a session-global setting, this can allow multiple forms
1426 * to conflict and overwrite each others' returnto destinations if
1427 * the user has multiple tabs or windows open.
1429 * Should refactor to index with a token or otherwise only pass the
1430 * data along its intended path.
1432 function common_set_returnto($url)
1434 common_ensure_session();
1435 $_SESSION['returnto'] = $url;
1439 * Fetch a return-destination URL previously recorded by
1440 * common_set_returnto().
1442 * @return mixed URL string or null
1444 * @fixme as a session-global setting, this can allow multiple forms
1445 * to conflict and overwrite each others' returnto destinations if
1446 * the user has multiple tabs or windows open.
1448 * Should refactor to index with a token or otherwise only pass the
1449 * data along its intended path.
1451 function common_get_returnto()
1453 common_ensure_session();
1454 return (array_key_exists('returnto', $_SESSION)) ? $_SESSION['returnto'] : null;
1457 function common_timestamp()
1459 return date('YmdHis');
1462 function common_ensure_syslog()
1464 static $initialized = false;
1465 if (!$initialized) {
1466 openlog(common_config('syslog', 'appname'), 0,
1467 common_config('syslog', 'facility'));
1468 $initialized = true;
1472 function common_log_line($priority, $msg)
1474 static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1475 'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1476 return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . PHP_EOL;
1479 function common_request_id()
1482 $server = common_config('site', 'server');
1483 if (php_sapi_name() == 'cli') {
1484 $script = basename($_SERVER['PHP_SELF']);
1485 return "$server:$script:$pid";
1487 static $req_id = null;
1488 if (!isset($req_id)) {
1489 $req_id = substr(md5(mt_rand()), 0, 8);
1491 if (isset($_SERVER['REQUEST_URI'])) {
1492 $url = $_SERVER['REQUEST_URI'];
1494 $method = $_SERVER['REQUEST_METHOD'];
1495 return "$server:$pid.$req_id $method $url";
1499 function common_log($priority, $msg, $filename=null)
1501 if(Event::handle('StartLog', array(&$priority, &$msg, &$filename))){
1502 $msg = '[' . common_request_id() . '] ' . $msg;
1503 $logfile = common_config('site', 'logfile');
1505 $log = fopen($logfile, "a");
1507 $output = common_log_line($priority, $msg);
1508 fwrite($log, $output);
1512 common_ensure_syslog();
1513 syslog($priority, $msg);
1515 Event::handle('EndLog', array($priority, $msg, $filename));
1519 function common_debug($msg, $filename=null)
1522 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1524 common_log(LOG_DEBUG, $msg);
1528 function common_log_db_error(&$object, $verb, $filename=null)
1530 $objstr = common_log_objstring($object);
1531 $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1532 if (is_object($last_error)) {
1533 $msg = $last_error->message;
1535 $msg = 'Unknown error (' . var_export($last_error, true) . ')';
1537 common_log(LOG_ERR, $msg . '(' . $verb . ' on ' . $objstr . ')', $filename);
1540 function common_log_objstring(&$object)
1542 if (is_null($object)) {
1545 if (!($object instanceof DB_DataObject)) {
1548 $arr = $object->toArray();
1550 foreach ($arr as $k => $v) {
1551 if (is_object($v)) {
1552 $fields[] = "$k='".get_class($v)."'";
1554 $fields[] = "$k='$v'";
1557 $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1561 function common_valid_http_url($url)
1563 return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1566 function common_valid_tag($tag)
1568 if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1569 return (Validate::email($matches[1]) ||
1570 preg_match('/^([\w-\.]+)$/', $matches[1]));
1576 * Determine if given domain or address literal is valid
1577 * eg for use in JIDs and URLs. Does not check if the domain
1580 * @param string $domain
1581 * @return boolean valid or not
1583 function common_valid_domain($domain)
1585 $octet = "(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])";
1586 $ipv4 = "(?:$octet(?:\.$octet){3})";
1587 if (preg_match("/^$ipv4$/u", $domain)) return true;
1589 $group = "(?:[0-9a-f]{1,4})";
1590 $ipv6 = "(?:\[($group(?::$group){0,7})?(::)?($group(?::$group){0,7})?\])"; // http://tools.ietf.org/html/rfc3513#section-2.2
1592 if (preg_match("/^$ipv6$/ui", $domain, $matches)) {
1593 $before = explode(":", $matches[1]);
1594 $zeroes = $matches[2];
1595 $after = explode(":", $matches[3]);
1603 $explicit = count($before) + count($after);
1604 if ($explicit < $min || $explicit > $max) {
1611 require_once "Net/IDNA.php";
1612 $idn = Net_IDNA::getInstance();
1613 $domain = $idn->encode($domain);
1614 } catch (Exception $e) {
1618 $subdomain = "(?:[a-z0-9][a-z0-9-]*)"; // @fixme
1619 $fqdn = "(?:$subdomain(?:\.$subdomain)*\.?)";
1621 return preg_match("/^$fqdn$/ui", $domain);
1624 /* Following functions are copied from MediaWiki GlobalFunctions.php
1625 * and written by Evan Prodromou. */
1627 function common_accept_to_prefs($accept, $def = '*/*')
1629 // No arg means accept anything (per HTTP spec)
1631 return array($def => 1);
1636 $parts = explode(',', $accept);
1638 foreach($parts as $part) {
1639 // FIXME: doesn't deal with params like 'text/html; level=1'
1640 @list($value, $qpart) = explode(';', trim($part));
1642 if(!isset($qpart)) {
1644 } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1645 $prefs[$value] = $match[1];
1652 function common_mime_type_match($type, $avail)
1654 if(array_key_exists($type, $avail)) {
1657 $parts = explode('/', $type);
1658 if(array_key_exists($parts[0] . '/*', $avail)) {
1659 return $parts[0] . '/*';
1660 } elseif(array_key_exists('*/*', $avail)) {
1668 function common_negotiate_type($cprefs, $sprefs)
1672 foreach(array_keys($sprefs) as $type) {
1673 $parts = explode('/', $type);
1674 if($parts[1] != '*') {
1675 $ckey = common_mime_type_match($type, $cprefs);
1677 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1682 foreach(array_keys($cprefs) as $type) {
1683 $parts = explode('/', $type);
1684 if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1685 $skey = common_mime_type_match($type, $sprefs);
1687 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1693 $besttype = 'text/html';
1695 foreach(array_keys($combine) as $type) {
1696 if($combine[$type] > $bestq) {
1698 $bestq = $combine[$type];
1702 if ('text/html' === $besttype) {
1703 return "text/html; charset=utf-8";
1708 function common_config($main, $sub)
1711 return (array_key_exists($main, $config) &&
1712 array_key_exists($sub, $config[$main])) ? $config[$main][$sub] : false;
1716 * Pull arguments from a GET/POST/REQUEST array with first-level input checks:
1717 * strips "magic quotes" slashes if necessary, and kills invalid UTF-8 strings.
1719 * @param array $from
1722 function common_copy_args($from)
1725 $strip = get_magic_quotes_gpc();
1726 foreach ($from as $k => $v) {
1728 $to[$k] = common_copy_args($v);
1731 $v = stripslashes($v);
1733 $to[$k] = strval(common_validate_utf8($v));
1740 * Neutralise the evil effects of magic_quotes_gpc in the current request.
1741 * This is used before handing a request off to OAuthRequest::from_request.
1742 * @fixme Doesn't consider vars other than _POST and _GET?
1743 * @fixme Can't be undone and could corrupt data if run twice.
1745 function common_remove_magic_from_request()
1747 if(get_magic_quotes_gpc()) {
1748 $_POST=array_map('stripslashes',$_POST);
1749 $_GET=array_map('stripslashes',$_GET);
1753 function common_user_uri(&$user)
1755 return common_local_url('userbyid', array('id' => $user->id),
1759 function common_notice_uri(&$notice)
1761 return common_local_url('shownotice',
1762 array('notice' => $notice->id),
1766 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1768 function common_confirmation_code($bits)
1770 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1771 static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1772 $chars = ceil($bits/5);
1774 for ($i = 0; $i < $chars; $i++) {
1775 // XXX: convert to string and back
1776 $num = hexdec(common_good_rand(1));
1777 // XXX: randomness is too precious to throw away almost
1778 // 40% of the bits we get!
1779 $code .= $codechars[$num%32];
1784 // convert markup to HTML
1786 function common_markup_to_html($c)
1788 $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1789 $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1790 $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1791 return Markdown($c);
1794 function common_profile_uri($profile)
1799 $user = User::staticGet($profile->id);
1804 $remote = Remote_profile::staticGet($profile->id);
1806 return $remote->uri;
1808 // XXX: this is a very bad profile!
1812 function common_canonical_sms($sms)
1815 preg_replace('/\D/', '', $sms);
1819 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1824 case E_COMPILE_ERROR:
1828 case E_RECOVERABLE_ERROR:
1829 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [ABORT]");
1834 case E_COMPILE_WARNING:
1835 case E_CORE_WARNING:
1836 case E_USER_WARNING:
1837 common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1842 common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1847 case E_USER_DEPRECATED:
1848 // XXX: config variable to log this stuff, too
1852 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [UNKNOWN LEVEL, die()'ing]");
1857 // FIXME: show error page if we're on the Web
1858 /* Don't execute PHP internal error handler */
1862 function common_session_token()
1864 common_ensure_session();
1865 if (!array_key_exists('token', $_SESSION)) {
1866 $_SESSION['token'] = common_good_rand(64);
1868 return $_SESSION['token'];
1871 function common_cache_key($extra)
1873 return Cache::key($extra);
1876 function common_keyize($str)
1878 return Cache::keyize($str);
1881 function common_memcache()
1883 return Cache::instance();
1886 function common_license_terms($uri)
1888 if(preg_match('/creativecommons.org\/licenses\/([^\/]+)/', $uri, $matches)) {
1889 return explode('-',$matches[1]);
1894 function common_compatible_license($from, $to)
1896 $from_terms = common_license_terms($from);
1897 // public domain and cc-by are compatible with everything
1898 if(count($from_terms) == 1 && ($from_terms[0] == 'publicdomain' || $from_terms[0] == 'by')) {
1901 $to_terms = common_license_terms($to);
1902 // sa is compatible across versions. IANAL
1903 if(in_array('sa',$from_terms) || in_array('sa',$to_terms)) {
1904 return count(array_diff($from_terms, $to_terms)) == 0;
1906 // XXX: better compatibility check needed here!
1907 // Should at least normalise URIs
1908 return ($from == $to);
1912 * returns a quoted table name, if required according to config
1914 function common_database_tablename($tablename)
1916 if(common_config('db','quote_identifiers')) {
1917 $tablename = '"'. $tablename .'"';
1919 //table prefixes could be added here later
1924 * Shorten a URL with the current user's configured shortening service,
1925 * or ur1.ca if configured, or not at all if no shortening is set up.
1926 * Length is not considered.
1928 * @param string $long_url
1929 * @return string may return the original URL if shortening failed
1931 * @fixme provide a way to specify a particular shortener
1932 * @fixme provide a way to specify to use a given user's shortening preferences
1934 function common_shorten_url($long_url)
1936 $long_url = trim($long_url);
1937 $user = common_current_user();
1939 // common current user does not find a user when called from the XMPP daemon
1940 // therefore we'll set one here fix, so that XMPP given URLs may be shortened
1941 $shortenerName = 'ur1.ca';
1943 $shortenerName = $user->urlshorteningservice;
1946 if(Event::handle('StartShortenUrl', array($long_url,$shortenerName,&$shortenedUrl))){
1947 //URL wasn't shortened, so return the long url
1950 //URL was shortened, so return the result
1951 return trim($shortenedUrl);
1956 * @return mixed array($proxy, $ip) for web requests; proxy may be null
1957 * null if not a web request
1959 * @fixme X-Forwarded-For can be chained by multiple proxies;
1960 we should parse the list and provide a cleaner array
1961 * @fixme X-Forwarded-For can be forged by clients; only use them if trusted
1962 * @fixme X_Forwarded_For headers will override X-Forwarded-For read through $_SERVER;
1963 * use function to get exact request headers from Apache if possible.
1965 function common_client_ip()
1967 if (!isset($_SERVER) || !array_key_exists('REQUEST_METHOD', $_SERVER)) {
1971 if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) {
1972 if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1973 $proxy = $_SERVER['HTTP_CLIENT_IP'];
1975 $proxy = $_SERVER['REMOTE_ADDR'];
1977 $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1980 if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1981 $ip = $_SERVER['HTTP_CLIENT_IP'];
1983 $ip = $_SERVER['REMOTE_ADDR'];
1987 return array($proxy, $ip);
1990 function common_url_to_nickname($url)
1992 static $bad = array('query', 'user', 'password', 'port', 'fragment');
1994 $parts = parse_url($url);
1996 # If any of these parts exist, this won't work
1998 foreach ($bad as $badpart) {
1999 if (array_key_exists($badpart, $parts)) {
2004 # We just have host and/or path
2006 # If it's just a host...
2007 if (array_key_exists('host', $parts) &&
2008 (!array_key_exists('path', $parts) || strcmp($parts['path'], '/') == 0))
2010 $hostparts = explode('.', $parts['host']);
2012 # Try to catch common idiom of nickname.service.tld
2014 if ((count($hostparts) > 2) &&
2015 (strlen($hostparts[count($hostparts) - 2]) > 3) && # try to skip .co.uk, .com.au
2016 (strcmp($hostparts[0], 'www') != 0))
2018 return common_nicknamize($hostparts[0]);
2020 # Do the whole hostname
2021 return common_nicknamize($parts['host']);
2024 if (array_key_exists('path', $parts)) {
2025 # Strip starting, ending slashes
2026 $path = preg_replace('@/$@', '', $parts['path']);
2027 $path = preg_replace('@^/@', '', $path);
2028 $path = basename($path);
2030 // Hack for MediaWiki user pages, in the form:
2031 // http://example.com/wiki/User:Myname
2032 // ('User' may be localized.)
2033 if (strpos($path, ':')) {
2034 $parts = array_filter(explode(':', $path));
2035 $path = $parts[count($parts) - 1];
2039 return common_nicknamize($path);
2047 function common_nicknamize($str)
2049 $str = preg_replace('/\W/', '', $str);
2050 return strtolower($str);