]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / lib / util.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /* XXX: break up into separate modules (HTTP, user, files) */
21
22 /**
23  * Show a server error.
24  */
25 function common_server_error($msg, $code=500)
26 {
27     $err = new ServerErrorAction($msg, $code);
28     $err->showPage();
29 }
30
31 /**
32  * Show a user error.
33  */
34 function common_user_error($msg, $code=400)
35 {
36     $err = new ClientErrorAction($msg, $code);
37     $err->showPage();
38 }
39
40 /**
41  * This should only be used at setup; processes switching languages
42  * to send text to other users should use common_switch_locale().
43  *
44  * @param string $language Locale language code (optional; empty uses
45  *                         current user's preference or site default)
46  * @return mixed success
47  */
48 function common_init_locale($language=null)
49 {
50     if(!$language) {
51         $language = common_language();
52     }
53     putenv('LANGUAGE='.$language);
54     putenv('LANG='.$language);
55     $ok =  setlocale(LC_ALL, $language . ".utf8",
56                      $language . ".UTF8",
57                      $language . ".utf-8",
58                      $language . ".UTF-8",
59                      $language);
60
61     return $ok;
62 }
63
64 /**
65  * Initialize locale and charset settings and gettext with our message catalog,
66  * using the current user's language preference or the site default.
67  *
68  * This should generally only be run at framework initialization; code switching
69  * languages at runtime should call common_switch_language().
70  *
71  * @access private
72  */
73 function common_init_language()
74 {
75     mb_internal_encoding('UTF-8');
76
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);
81
82     if (!$locale_set) {
83         // The requested locale doesn't exist on the system.
84         //
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.
89         //
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.
98             $all = `locale -a`;
99             foreach (explode("\n", $all) as $locale) {
100                 if (preg_match('/\.utf[-_]?8$/i', $locale)) {
101                     $ok = setlocale(LC_ALL, $locale);
102                     if ($ok) {
103                         break;
104                     }
105                 }
106             }
107         }
108         if (!$ok) {
109             common_log(LOG_ERR, "Unable to find a UTF-8 locale on this system; UI translations may not work.");
110         }
111         $locale_set = common_init_locale($language);
112     }
113
114     common_init_gettext();
115 }
116
117 /**
118  * @access private
119  */
120 function common_init_gettext()
121 {
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");
128 }
129
130 /**
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.
133  *
134  * @param string $language code for locale ('en', 'fr', 'pt_BR' etc)
135  */
136 function common_switch_locale($language=null)
137 {
138     common_init_locale($language);
139
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");
146 }
147
148 function common_timezone()
149 {
150     if (common_logged_in()) {
151         $user = common_current_user();
152         if ($user->timezone) {
153             return $user->timezone;
154         }
155     }
156
157     return common_config('site', 'timezone');
158 }
159
160 function common_valid_language($lang)
161 {
162     if ($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) {
167                 return true;
168             }
169         }
170     }
171     return false;
172 }
173
174 function common_language()
175 {
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)) {
181             return $uselang;
182         }
183     }
184
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();
189
190         if (common_valid_language($user->language)) {
191             return $user->language;
192         }
193     }
194
195     // Otherwise, find the best match for the languages requested by the
196     // user's browser...
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);
201             if ($language)
202               return $language;
203         }
204     }
205
206     // Finally, if none of the above worked, use the site's default...
207     return common_config('site', 'language');
208 }
209
210 /**
211  * Salted, hashed passwords are stored in the DB.
212  */
213 function common_munge_password($password, $id)
214 {
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()));
219     }
220     return md5($password . $id);
221 }
222
223 /**
224  * Check if a username exists and has matching password.
225  */
226 function common_check_user($nickname, $password)
227 {
228     // empty nickname always unacceptable
229     if (empty($nickname)) {
230         return false;
231     }
232
233     $authenticatedUser = false;
234
235     if (Event::handle('StartCheckPassword', array($nickname, $password, &$authenticatedUser))) {
236         $user = User::staticGet('nickname', common_canonical_nickname($nickname));
237         if (!empty($user)) {
238             if (!empty($password)) { // never allow login with blank password
239                 if (0 == strcmp(common_munge_password($password, $user->id),
240                                 $user->password)) {
241                     //internal checking passed
242                     $authenticatedUser = $user;
243                 }
244             }
245         }
246         Event::handle('EndCheckPassword', array($nickname, $password, $authenticatedUser));
247     }
248
249     return $authenticatedUser;
250 }
251
252 /**
253  * Is the current user logged in?
254  */
255 function common_logged_in()
256 {
257     return (!is_null(common_current_user()));
258 }
259
260 function common_have_session()
261 {
262     return (0 != strcmp(session_id(), ''));
263 }
264
265 function common_ensure_session()
266 {
267     $c = null;
268     if (array_key_exists(session_name(), $_COOKIE)) {
269         $c = $_COOKIE[session_name()];
270     }
271     if (!common_have_session()) {
272         if (common_config('sessions', 'handle')) {
273             Session::setSaveHandler();
274         }
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()];
279         }
280         if (isset($id)) {
281             session_id($id);
282         }
283         @session_start();
284         if (!isset($_SESSION['started'])) {
285             $_SESSION['started'] = time();
286             if (!empty($id)) {
287                 common_log(LOG_WARNING, 'Session cookie "' . $_COOKIE[session_name()] . '" ' .
288                            ' is set but started value is null');
289             }
290         }
291     }
292 }
293
294 // Three kinds of arguments:
295 // 1) a user object
296 // 2) a nickname
297 // 3) null to clear
298
299 // Initialize to false; set to null if none found
300 $_cur = false;
301
302 function common_set_user($user)
303 {
304     global $_cur;
305
306     if (is_null($user) && common_have_session()) {
307         $_cur = null;
308         unset($_SESSION['userid']);
309         return true;
310     } else if (is_string($user)) {
311         $nickname = $user;
312         $user = User::staticGet('nickname', $nickname);
313     } else if (!($user instanceof User)) {
314         return false;
315     }
316
317     if ($user) {
318         if (Event::handle('StartSetUser', array(&$user))) {
319             if($user){
320                 common_ensure_session();
321                 $_SESSION['userid'] = $user->id;
322                 $_cur = $user;
323                 Event::handle('EndSetUser', array($user));
324                 return $_cur;
325             }
326         }
327     }
328     return false;
329 }
330
331 function common_set_cookie($key, $value, $expiration=0)
332 {
333     $path = common_config('site', 'path');
334     $server = common_config('site', 'server');
335
336     if ($path && ($path != '/')) {
337         $cookiepath = '/' . $path . '/';
338     } else {
339         $cookiepath = '/';
340     }
341     return setcookie($key,
342                      $value,
343                      $expiration,
344                      $cookiepath,
345                      $server);
346 }
347
348 define('REMEMBERME', 'rememberme');
349 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); // 30 days
350
351 function common_rememberme($user=null)
352 {
353     if (!$user) {
354         $user = common_current_user();
355         if (!$user) {
356             return false;
357         }
358     }
359
360     $rm = new Remember_me();
361
362     $rm->code = common_good_rand(16);
363     $rm->user_id = $user->id;
364
365     // Wrap the insert in some good ol' fashioned transaction code
366
367     $rm->query('BEGIN');
368
369     $result = $rm->insert();
370
371     if (!$result) {
372         common_log_db_error($rm, 'INSERT', __FILE__);
373         return false;
374     }
375
376     $rm->query('COMMIT');
377
378     $cookieval = $rm->user_id . ':' . $rm->code;
379
380     common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
381
382     common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
383
384     return true;
385 }
386
387 function common_remembered_user()
388 {
389     $user = null;
390
391     $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null;
392
393     if (!$packed) {
394         return null;
395     }
396
397     list($id, $code) = explode(':', $packed);
398
399     if (!$id || !$code) {
400         common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
401         common_forgetme();
402         return null;
403     }
404
405     $rm = Remember_me::staticGet($code);
406
407     if (!$rm) {
408         common_log(LOG_WARNING, 'No such remember code: ' . $code);
409         common_forgetme();
410         return null;
411     }
412
413     if ($rm->user_id != $id) {
414         common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
415         common_forgetme();
416         return null;
417     }
418
419     $user = User::staticGet($rm->user_id);
420
421     if (!$user) {
422         common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
423         common_forgetme();
424         return null;
425     }
426
427     // successful!
428     $result = $rm->delete();
429
430     if (!$result) {
431         common_log_db_error($rm, 'DELETE', __FILE__);
432         common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
433         common_forgetme();
434         return null;
435     }
436
437     common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
438
439     common_set_user($user);
440     common_real_login(false);
441
442     // We issue a new cookie, so they can log in
443     // automatically again after this session
444
445     common_rememberme($user);
446
447     return $user;
448 }
449
450 /**
451  * must be called with a valid user!
452  */
453 function common_forgetme()
454 {
455     common_set_cookie(REMEMBERME, '', 0);
456 }
457
458 /**
459  * Who is the current user?
460  */
461 function common_current_user()
462 {
463     global $_cur;
464
465     if (!_have_config()) {
466         return null;
467     }
468
469     if ($_cur === false) {
470
471         if (isset($_COOKIE[session_name()]) || isset($_GET[session_name()])
472             || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
473             common_ensure_session();
474             $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
475             if ($id) {
476                 $user = User::staticGet($id);
477                 if ($user) {
478                         $_cur = $user;
479                         return $_cur;
480                 }
481             }
482         }
483
484         // that didn't work; try to remember; will init $_cur to null on failure
485         $_cur = common_remembered_user();
486
487         if ($_cur) {
488             // XXX: Is this necessary?
489             $_SESSION['userid'] = $_cur->id;
490         }
491     }
492
493     return $_cur;
494 }
495
496 /**
497  * Logins that are 'remembered' aren't 'real' -- they're subject to
498  * cookie-stealing. So, we don't let them do certain things. New reg,
499  * OpenID, and password logins _are_ real.
500  */
501 function common_real_login($real=true)
502 {
503     common_ensure_session();
504     $_SESSION['real_login'] = $real;
505 }
506
507 function common_is_real_login()
508 {
509     return common_logged_in() && $_SESSION['real_login'];
510 }
511
512 /**
513  * Get a hash portion for HTTP caching Etags and such including
514  * info on the current user's session. If login/logout state changes,
515  * or we've changed accounts, or we've renamed the current user,
516  * we'll get a new hash value.
517  *
518  * This should not be considered secure information.
519  *
520  * @param User $user (optional; uses common_current_user() if left out)
521  * @return string
522  */
523 function common_user_cache_hash($user=false)
524 {
525     if ($user === false) {
526         $user = common_current_user();
527     }
528     if ($user) {
529         return crc32($user->id . ':' . $user->nickname);
530     } else {
531         return '0';
532     }
533 }
534
535 // get canonical version of nickname for comparison
536 function common_canonical_nickname($nickname)
537 {
538     // XXX: UTF-8 canonicalization (like combining chars)
539     return strtolower($nickname);
540 }
541
542 // get canonical version of email for comparison
543 function common_canonical_email($email)
544 {
545     // XXX: canonicalize UTF-8
546     // XXX: lcase the domain part
547     return $email;
548 }
549
550 function common_render_content($text, $notice)
551 {
552     $r = common_render_text($text);
553     $id = $notice->profile_id;
554     $r = common_linkify_mentions($r, $notice);
555     $r = preg_replace('/(^|[\s\.\,\:\;]+)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r);
556     return $r;
557 }
558
559 function common_linkify_mentions($text, $notice)
560 {
561     $mentions = common_find_mentions($text, $notice);
562
563     // We need to go through in reverse order by position,
564     // so our positions stay valid despite our fudging with the
565     // string!
566
567     $points = array();
568
569     foreach ($mentions as $mention)
570     {
571         $points[$mention['position']] = $mention;
572     }
573
574     krsort($points);
575
576     foreach ($points as $position => $mention) {
577
578         $linkText = common_linkify_mention($mention);
579
580         $text = substr_replace($text, $linkText, $position, mb_strlen($mention['text']));
581     }
582
583     return $text;
584 }
585
586 function common_linkify_mention($mention)
587 {
588     $output = null;
589
590     if (Event::handle('StartLinkifyMention', array($mention, &$output))) {
591
592         $xs = new XMLStringer(false);
593
594         $attrs = array('href' => $mention['url'],
595                        'class' => 'url');
596
597         if (!empty($mention['title'])) {
598             $attrs['title'] = $mention['title'];
599         }
600
601         $xs->elementStart('span', 'vcard');
602         $xs->elementStart('a', $attrs);
603         $xs->element('span', 'fn nickname', $mention['text']);
604         $xs->elementEnd('a');
605         $xs->elementEnd('span');
606
607         $output = $xs->getString();
608
609         Event::handle('EndLinkifyMention', array($mention, &$output));
610     }
611
612     return $output;
613 }
614
615 function common_find_mentions($text, $notice)
616 {
617     $mentions = array();
618
619     $sender = Profile::staticGet('id', $notice->profile_id);
620
621     if (empty($sender)) {
622         return $mentions;
623     }
624
625     if (Event::handle('StartFindMentions', array($sender, $text, &$mentions))) {
626         // Get the context of the original notice, if any
627         $originalAuthor   = null;
628         $originalNotice   = null;
629         $originalMentions = array();
630
631         // Is it a reply?
632
633         if (!empty($notice) && !empty($notice->reply_to)) {
634             $originalNotice = Notice::staticGet('id', $notice->reply_to);
635             if (!empty($originalNotice)) {
636                 $originalAuthor = Profile::staticGet('id', $originalNotice->profile_id);
637
638                 $ids = $originalNotice->getReplies();
639
640                 foreach ($ids as $id) {
641                     $repliedTo = Profile::staticGet('id', $id);
642                     if (!empty($repliedTo)) {
643                         $originalMentions[$repliedTo->nickname] = $repliedTo;
644                     }
645                 }
646             }
647         }
648
649         preg_match_all('/^T ([A-Z0-9]{1,64}) /',
650                        $text,
651                        $tmatches,
652                        PREG_OFFSET_CAPTURE);
653
654         preg_match_all('/(?:^|\s+)@(['.NICKNAME_FMT.']{1,64})/',
655                        $text,
656                        $atmatches,
657                        PREG_OFFSET_CAPTURE);
658
659         $matches = array_merge($tmatches[1], $atmatches[1]);
660
661         foreach ($matches as $match) {
662             $nickname = common_canonical_nickname($match[0]);
663
664             // Try to get a profile for this nickname.
665             // Start with conversation context, then go to
666             // sender context.
667
668             if (!empty($originalAuthor) && $originalAuthor->nickname == $nickname) {
669                 $mentioned = $originalAuthor;
670             } else if (!empty($originalMentions) &&
671                        array_key_exists($nickname, $originalMentions)) {
672                 $mentioned = $originalMentions[$nickname];
673             } else {
674                 $mentioned = common_relative_profile($sender, $nickname);
675             }
676
677             if (!empty($mentioned)) {
678                 $user = User::staticGet('id', $mentioned->id);
679
680                 if ($user) {
681                     $url = common_local_url('userbyid', array('id' => $user->id));
682                 } else {
683                     $url = $mentioned->profileurl;
684                 }
685
686                 $mention = array('mentioned' => array($mentioned),
687                                  'text' => $match[0],
688                                  'position' => $match[1],
689                                  'url' => $url);
690
691                 if (!empty($mentioned->fullname)) {
692                     $mention['title'] = $mentioned->fullname;
693                 }
694
695                 $mentions[] = $mention;
696             }
697         }
698
699         // @#tag => mention of all subscriptions tagged 'tag'
700
701         preg_match_all('/(?:^|[\s\.\,\:\;]+)@#([\pL\pN_\-\.]{1,64})/',
702                        $text,
703                        $hmatches,
704                        PREG_OFFSET_CAPTURE);
705
706         foreach ($hmatches[1] as $hmatch) {
707
708             $tag = common_canonical_tag($hmatch[0]);
709
710             $tagged = Profile_tag::getTagged($sender->id, $tag);
711
712             $url = common_local_url('subscriptions',
713                                     array('nickname' => $sender->nickname,
714                                           'tag' => $tag));
715
716             $mentions[] = array('mentioned' => $tagged,
717                                 'text' => $hmatch[0],
718                                 'position' => $hmatch[1],
719                                 'url' => $url);
720         }
721
722         Event::handle('EndFindMentions', array($sender, $text, &$mentions));
723     }
724
725     return $mentions;
726 }
727
728 function common_render_text($text)
729 {
730     $r = htmlspecialchars($text);
731
732     $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
733     $r = common_replace_urls_callback($r, 'common_linkify');
734     $r = preg_replace('/(^|\&quot\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
735     // XXX: machine tags
736     return $r;
737 }
738
739 function common_replace_urls_callback($text, $callback, $notice_id = null) {
740     // Start off with a regex
741     $regex = '#'.
742     '(?:^|[\s\<\>\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'.
743     '('.
744         '(?:'.
745             '(?:'. //Known protocols
746                 '(?:'.
747                     '(?:(?:https?|ftps?|mms|rtsp|gopher|news|nntp|telnet|wais|file|prospero|webcal|irc)://)'.
748                     '|'.
749                     '(?:(?:mailto|aim|tel|xmpp):)'.
750                 ')'.
751                 '(?:[\pN\pL\-\_\+\%\~]+(?::[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
752                 '(?:'.
753                     '(?:'.
754                         '\[[\pN\pL\-\_\:\.]+(?<![\.\:])\]'. //[dns]
755                     ')|(?:'.
756                         '[\pN\pL\-\_\:\.]+(?<![\.\:])'. //dns
757                     ')'.
758                 ')'.
759             ')'.
760             '|(?:(?: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
761             '|(?:'. //IPv6
762                 '\[?(?:(?:(?:[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})))\]?(?<!:)'.
763             ')|(?:'. //DNS
764                 '(?:[\pN\pL\-\_\+\%\~]+(?:\:[\pN\pL\-\_\+\%\~]+)?\@)?'. //user:pass@
765                 '[\pN\pL\-\_]+(?:\.[\pN\pL\-\_]+)*\.'.
766                 //tld list from http://data.iana.org/TLD/tlds-alpha-by-domain.txt, also added local, loc, and onion
767                 '(?: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)'.
768             ')(?![\pN\pL\-\_])'.
769         ')'.
770         '(?:'.
771             '(?:\:\d+)?'. //:port
772             '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@]*)?'. // /path
773             '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@\/]*)?'. // ?query string
774             '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\@/\?\#]*)?'. // #fragment
775         ')(?<![\?\.\,\#\,])'.
776     ')'.
777     '#ixu';
778     //preg_match_all($regex,$text,$matches);
779     //print_r($matches);
780     return preg_replace_callback($regex, curry('callback_helper',$callback,$notice_id) ,$text);
781 }
782
783 function callback_helper($matches, $callback, $notice_id) {
784     $url=$matches[1];
785     $left = strpos($matches[0],$url);
786     $right = $left+strlen($url);
787
788     $groupSymbolSets=array(
789         array(
790             'left'=>'(',
791             'right'=>')'
792         ),
793         array(
794             'left'=>'[',
795             'right'=>']'
796         ),
797         array(
798             'left'=>'{',
799             'right'=>'}'
800         ),
801         array(
802             'left'=>'<',
803             'right'=>'>'
804         )
805     );
806     $cannotEndWith=array('.','?',',','#');
807     $original_url=$url;
808     do{
809         $original_url=$url;
810         foreach($groupSymbolSets as $groupSymbolSet){
811             if(substr($url,-1)==$groupSymbolSet['right']){
812                 $group_left_count = substr_count($url,$groupSymbolSet['left']);
813                 $group_right_count = substr_count($url,$groupSymbolSet['right']);
814                 if($group_left_count<$group_right_count){
815                     $right-=1;
816                     $url=substr($url,0,-1);
817                 }
818             }
819         }
820         if(in_array(substr($url,-1),$cannotEndWith)){
821             $right-=1;
822             $url=substr($url,0,-1);
823         }
824     }while($original_url!=$url);
825
826     if(empty($notice_id)){
827         $result = call_user_func_array($callback, array($url));
828     }else{
829         $result = call_user_func_array($callback, array(array($url,$notice_id)) );
830     }
831     return substr($matches[0],0,$left) . $result . substr($matches[0],$right);
832 }
833
834 if (version_compare(PHP_VERSION, '5.3.0', 'ge')) {
835     // lambda implementation in a separate file; PHP 5.2 won't parse it.
836     require_once INSTALLDIR . "/lib/curry.php";
837 } else {
838     function curry($fn) {
839         $args = func_get_args();
840         array_shift($args);
841         $id = uniqid('_partial');
842         $GLOBALS[$id] = array($fn, $args);
843         return create_function('',
844                                '$args = func_get_args(); '.
845                                'return call_user_func_array('.
846                                '$GLOBALS["'.$id.'"][0],'.
847                                'array_merge('.
848                                '$args,'.
849                                '$GLOBALS["'.$id.'"][1]));');
850     }
851 }
852
853 function common_linkify($url) {
854     // It comes in special'd, so we unspecial it before passing to the stringifying
855     // functions
856     $url = htmlspecialchars_decode($url);
857
858    if(strpos($url, '@') !== false && strpos($url, ':') === false) {
859        //url is an email address without the mailto: protocol
860        $canon = "mailto:$url";
861        $longurl = "mailto:$url";
862    }else{
863
864         $canon = File_redirection::_canonUrl($url);
865
866         $longurl_data = File_redirection::where($canon);
867         if (is_array($longurl_data)) {
868             $longurl = $longurl_data['url'];
869         } elseif (is_string($longurl_data)) {
870             $longurl = $longurl_data;
871         } else {
872             // Unable to reach the server to verify contents, etc
873             // Just pass the link on through for now.
874             common_log(LOG_ERR, "Can't linkify url '$url'");
875             $longurl = $url;
876         }
877     }
878
879     $attrs = array('href' => $canon, 'title' => $longurl);
880
881     $is_attachment = false;
882     $attachment_id = null;
883     $has_thumb = false;
884
885     // Check to see whether this is a known "attachment" URL.
886
887     $f = File::staticGet('url', $longurl);
888
889     if (empty($f)) {
890         // XXX: this writes to the database. :<
891         $f = File::processNew($longurl);
892     }
893
894     if (!empty($f)) {
895         if ($f->getEnclosure() || File_oembed::staticGet('file_id',$f->id)) {
896             $is_attachment = true;
897             $attachment_id = $f->id;
898
899             $thumb = File_thumbnail::staticGet('file_id', $f->id);
900             if (!empty($thumb)) {
901                 $has_thumb = true;
902             }
903         }
904     }
905
906     // Add clippy
907     if ($is_attachment) {
908         $attrs['class'] = 'attachment';
909         if ($has_thumb) {
910             $attrs['class'] = 'attachment thumbnail';
911         }
912         $attrs['id'] = "attachment-{$attachment_id}";
913     }
914
915     // Whether to nofollow
916
917     $nf = common_config('nofollow', 'external');
918
919     if ($nf == 'never') {
920         $attrs['rel'] = 'external';
921     } else {
922         $attrs['rel'] = 'nofollow external';
923     }
924
925     return XMLStringer::estring('a', $attrs, $url);
926 }
927
928 function common_shorten_links($text, $always = false)
929 {
930     common_debug("common_shorten_links() called");
931
932     $user = common_current_user();
933
934     $maxLength = User_urlshortener_prefs::maxNoticeLength($user);
935
936     common_debug("maxLength = $maxLength");
937
938     if ($always || mb_strlen($text) > $maxLength) {
939         common_debug("Forcing shortening");
940         return common_replace_urls_callback($text, array('File_redirection', 'forceShort'));
941     } else {
942         common_debug("Not forcing shortening");
943         return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
944     }
945 }
946
947 /**
948  * Very basic stripping of invalid UTF-8 input text.
949  *
950  * @param string $str
951  * @return mixed string or null if invalid input
952  *
953  * @todo ideally we should drop bad chars, and maybe do some of the checks
954  *       from common_xml_safe_str. But we can't strip newlines, etc.
955  * @todo Unicode normalization might also be useful, but not needed now.
956  */
957 function common_validate_utf8($str)
958 {
959     // preg_replace will return NULL on invalid UTF-8 input.
960     //
961     // Note: empty regex //u also caused NULL return on some
962     // production machines, but none of our test machines.
963     //
964     // This should be replaced with a more reliable check.
965     return preg_replace('/\x00/u', '', $str);
966 }
967
968 /**
969  * Make sure an arbitrary string is safe for output in XML as a single line.
970  *
971  * @param string $str
972  * @return string
973  */
974 function common_xml_safe_str($str)
975 {
976     // Replace common eol and extra whitespace input chars
977     $unWelcome = array(
978         "\t",  // tab
979         "\n",  // newline
980         "\r",  // cr
981         "\0",  // null byte eos
982         "\x0B" // vertical tab
983     );
984
985     $replacement = array(
986         ' ', // single space
987         ' ',
988         '',  // nothing
989         '',
990         ' '
991     );
992
993     $str = str_replace($unWelcome, $replacement, $str);
994
995     // Neutralize any additional control codes and UTF-16 surrogates
996     // (Twitter uses '*')
997     return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
998 }
999
1000 function common_tag_link($tag)
1001 {
1002     $canonical = common_canonical_tag($tag);
1003     if (common_config('singleuser', 'enabled')) {
1004         // regular TagAction isn't set up in 1user mode
1005         $url = common_local_url('showstream',
1006                                 array('nickname' => common_config('singleuser', 'nickname'),
1007                                       'tag' => $canonical));
1008     } else {
1009         $url = common_local_url('tag', array('tag' => $canonical));
1010     }
1011     $xs = new XMLStringer();
1012     $xs->elementStart('span', 'tag');
1013     $xs->element('a', array('href' => $url,
1014                             'rel' => 'tag'),
1015                  $tag);
1016     $xs->elementEnd('span');
1017     return $xs->getString();
1018 }
1019
1020 function common_canonical_tag($tag)
1021 {
1022   $tag = mb_convert_case($tag, MB_CASE_LOWER, "UTF-8");
1023   return str_replace(array('-', '_', '.'), '', $tag);
1024 }
1025
1026 function common_valid_profile_tag($str)
1027 {
1028     return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
1029 }
1030
1031 function common_group_link($sender_id, $nickname)
1032 {
1033     $sender = Profile::staticGet($sender_id);
1034     $group = User_group::getForNickname($nickname, $sender);
1035     if ($sender && $group && $sender->isMember($group)) {
1036         $attrs = array('href' => $group->permalink(),
1037                        'class' => 'url');
1038         if (!empty($group->fullname)) {
1039             $attrs['title'] = $group->fullname . ' (' . $group->nickname . ')';
1040         }
1041         $xs = new XMLStringer();
1042         $xs->elementStart('span', 'vcard');
1043         $xs->elementStart('a', $attrs);
1044         $xs->element('span', 'fn nickname', $nickname);
1045         $xs->elementEnd('a');
1046         $xs->elementEnd('span');
1047         return $xs->getString();
1048     } else {
1049         return $nickname;
1050     }
1051 }
1052
1053 function common_relative_profile($sender, $nickname, $dt=null)
1054 {
1055     // Try to find profiles this profile is subscribed to that have this nickname
1056     $recipient = new Profile();
1057     // XXX: use a join instead of a subquery
1058     $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
1059     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
1060     if ($recipient->find(true)) {
1061         // XXX: should probably differentiate between profiles with
1062         // the same name by date of most recent update
1063         return $recipient;
1064     }
1065     // Try to find profiles that listen to this profile and that have this nickname
1066     $recipient = new Profile();
1067     // XXX: use a join instead of a subquery
1068     $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
1069     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
1070     if ($recipient->find(true)) {
1071         // XXX: should probably differentiate between profiles with
1072         // the same name by date of most recent update
1073         return $recipient;
1074     }
1075     // If this is a local user, try to find a local user with that nickname.
1076     $sender = User::staticGet($sender->id);
1077     if ($sender) {
1078         $recipient_user = User::staticGet('nickname', $nickname);
1079         if ($recipient_user) {
1080             return $recipient_user->getProfile();
1081         }
1082     }
1083     // Otherwise, no links. @messages from local users to remote users,
1084     // or from remote users to other remote users, are just
1085     // outside our ability to make intelligent guesses about
1086     return null;
1087 }
1088
1089 function common_local_url($action, $args=null, $params=null, $fragment=null, $addSession=true)
1090 {
1091     $r = Router::get();
1092     $path = $r->build($action, $args, $params, $fragment);
1093
1094     $ssl = common_is_sensitive($action);
1095
1096     if (common_config('site','fancy')) {
1097         $url = common_path(mb_substr($path, 1), $ssl, $addSession);
1098     } else {
1099         if (mb_strpos($path, '/index.php') === 0) {
1100             $url = common_path(mb_substr($path, 1), $ssl, $addSession);
1101         } else {
1102             $url = common_path('index.php'.$path, $ssl, $addSession);
1103         }
1104     }
1105     return $url;
1106 }
1107
1108 function common_is_sensitive($action)
1109 {
1110     static $sensitive = array('login', 'register', 'passwordsettings', 'api');
1111     $ssl = null;
1112
1113     if (Event::handle('SensitiveAction', array($action, &$ssl))) {
1114         $ssl = in_array($action, $sensitive);
1115     }
1116
1117     return $ssl;
1118 }
1119
1120 function common_path($relative, $ssl=false, $addSession=true)
1121 {
1122     $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
1123
1124     if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
1125         || common_config('site', 'ssl') === 'always') {
1126         $proto = 'https';
1127         if (is_string(common_config('site', 'sslserver')) &&
1128             mb_strlen(common_config('site', 'sslserver')) > 0) {
1129             $serverpart = common_config('site', 'sslserver');
1130         } else if (common_config('site', 'server')) {
1131             $serverpart = common_config('site', 'server');
1132         } else {
1133             common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
1134         }
1135     } else {
1136         $proto = 'http';
1137         if (common_config('site', 'server')) {
1138             $serverpart = common_config('site', 'server');
1139         } else {
1140             common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
1141         }
1142     }
1143
1144     if ($addSession) {
1145         $relative = common_inject_session($relative, $serverpart);
1146     }
1147
1148     return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
1149 }
1150
1151 function common_inject_session($url, $serverpart = null)
1152 {
1153     if (common_have_session()) {
1154
1155         if (empty($serverpart)) {
1156             $serverpart = parse_url($url, PHP_URL_HOST);
1157         }
1158
1159         $currentServer = $_SERVER['HTTP_HOST'];
1160
1161         // Are we pointing to another server (like an SSL server?)
1162
1163         if (!empty($currentServer) &&
1164             0 != strcasecmp($currentServer, $serverpart)) {
1165             // Pass the session ID as a GET parameter
1166             $sesspart = session_name() . '=' . session_id();
1167             $i = strpos($url, '?');
1168             if ($i === false) { // no GET params, just append
1169                 $url .= '?' . $sesspart;
1170             } else {
1171                 $url = substr($url, 0, $i + 1).$sesspart.'&'.substr($url, $i + 1);
1172             }
1173         }
1174     }
1175
1176     return $url;
1177 }
1178
1179 function common_date_string($dt)
1180 {
1181     // XXX: do some sexy date formatting
1182     // return date(DATE_RFC822, $dt);
1183     $t = strtotime($dt);
1184     $now = time();
1185     $diff = $now - $t;
1186
1187     if ($now < $t) { // that shouldn't happen!
1188         return common_exact_date($dt);
1189     } else if ($diff < 60) {
1190         // TRANS: Used in notices to indicate when the notice was made compared to now.
1191         return _('a few seconds ago');
1192     } else if ($diff < 92) {
1193         // TRANS: Used in notices to indicate when the notice was made compared to now.
1194         return _('about a minute ago');
1195     } else if ($diff < 3300) {
1196         $minutes = round($diff/60);
1197         // TRANS: Used in notices to indicate when the notice was made compared to now.
1198         return sprintf( ngettext('about one minute ago', 'about %d minutes ago', $minutes), $minutes);
1199     } else if ($diff < 5400) {
1200         // TRANS: Used in notices to indicate when the notice was made compared to now.
1201         return _('about an hour ago');
1202     } else if ($diff < 22 * 3600) {
1203         $hours = round($diff/3600);
1204         // TRANS: Used in notices to indicate when the notice was made compared to now.
1205         return sprintf( ngettext('about one hour ago', 'about %d hours ago', $hours), $hours);
1206     } else if ($diff < 37 * 3600) {
1207         // TRANS: Used in notices to indicate when the notice was made compared to now.
1208         return _('about a day ago');
1209     } else if ($diff < 24 * 24 * 3600) {
1210         $days = round($diff/(24*3600));
1211         // TRANS: Used in notices to indicate when the notice was made compared to now.
1212         return sprintf( ngettext('about one day ago', 'about %d days ago', $days), $days);
1213     } else if ($diff < 46 * 24 * 3600) {
1214         // TRANS: Used in notices to indicate when the notice was made compared to now.
1215         return _('about a month ago');
1216     } else if ($diff < 330 * 24 * 3600) {
1217         $months = round($diff/(30*24*3600));
1218         // TRANS: Used in notices to indicate when the notice was made compared to now.
1219         return sprintf( ngettext('about one month ago', 'about %d months ago',$months), $months);
1220     } else if ($diff < 480 * 24 * 3600) {
1221         // TRANS: Used in notices to indicate when the notice was made compared to now.
1222         return _('about a year ago');
1223     } else {
1224         return common_exact_date($dt);
1225     }
1226 }
1227
1228 function common_exact_date($dt)
1229 {
1230     static $_utc;
1231     static $_siteTz;
1232
1233     if (!$_utc) {
1234         $_utc = new DateTimeZone('UTC');
1235         $_siteTz = new DateTimeZone(common_timezone());
1236     }
1237
1238     $dateStr = date('d F Y H:i:s', strtotime($dt));
1239     $d = new DateTime($dateStr, $_utc);
1240     $d->setTimezone($_siteTz);
1241     return $d->format(DATE_RFC850);
1242 }
1243
1244 function common_date_w3dtf($dt)
1245 {
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(DATE_W3C);
1250 }
1251
1252 function common_date_rfc2822($dt)
1253 {
1254     $dateStr = date('d F Y H:i:s', strtotime($dt));
1255     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1256     $d->setTimezone(new DateTimeZone(common_timezone()));
1257     return $d->format('r');
1258 }
1259
1260 function common_date_iso8601($dt)
1261 {
1262     $dateStr = date('d F Y H:i:s', strtotime($dt));
1263     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1264     $d->setTimezone(new DateTimeZone(common_timezone()));
1265     return $d->format('c');
1266 }
1267
1268 function common_sql_now()
1269 {
1270     return common_sql_date(time());
1271 }
1272
1273 function common_sql_date($datetime)
1274 {
1275     return strftime('%Y-%m-%d %H:%M:%S', $datetime);
1276 }
1277
1278 /**
1279  * Return an SQL fragment to calculate an age-based weight from a given
1280  * timestamp or datetime column.
1281  *
1282  * @param string $column name of field we're comparing against current time
1283  * @param integer $dropoff divisor for age in seconds before exponentiation
1284  * @return string SQL fragment
1285  */
1286 function common_sql_weight($column, $dropoff)
1287 {
1288     if (common_config('db', 'type') == 'pgsql') {
1289         // PostgreSQL doesn't support timestampdiff function.
1290         // @fixme will this use the right time zone?
1291         // @fixme does this handle cross-year subtraction correctly?
1292         return "sum(exp(-extract(epoch from (now() - $column)) / $dropoff))";
1293     } else {
1294         return "sum(exp(timestampdiff(second, utc_timestamp(), $column) / $dropoff))";
1295     }
1296 }
1297
1298 function common_redirect($url, $code=307)
1299 {
1300     static $status = array(301 => "Moved Permanently",
1301                            302 => "Found",
1302                            303 => "See Other",
1303                            307 => "Temporary Redirect");
1304
1305     header('HTTP/1.1 '.$code.' '.$status[$code]);
1306     header("Location: $url");
1307
1308     $xo = new XMLOutputter();
1309     $xo->startXML('a',
1310                   '-//W3C//DTD XHTML 1.0 Strict//EN',
1311                   'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
1312     $xo->element('a', array('href' => $url), $url);
1313     $xo->endXML();
1314     exit;
1315 }
1316
1317 // Stick the notice on the queue
1318
1319 function common_enqueue_notice($notice)
1320 {
1321     static $localTransports = array('omb',
1322                                     'ping');
1323
1324     $transports = array();
1325     if (common_config('sms', 'enabled')) {
1326         $transports[] = 'sms';
1327     }
1328     if (Event::hasHandler('HandleQueuedNotice')) {
1329         $transports[] = 'plugin';
1330     }
1331
1332     // We can skip these for gatewayed notices.
1333     if ($notice->isLocal()) {
1334         $transports = array_merge($transports, $localTransports);
1335     }
1336
1337     if (Event::handle('StartEnqueueNotice', array($notice, &$transports))) {
1338
1339         $qm = QueueManager::get();
1340
1341         foreach ($transports as $transport)
1342         {
1343             $qm->enqueue($notice, $transport);
1344         }
1345
1346         Event::handle('EndEnqueueNotice', array($notice, $transports));
1347     }
1348
1349     return true;
1350 }
1351
1352 /**
1353  * Broadcast profile updates to OMB and other remote subscribers.
1354  *
1355  * Since this may be slow with a lot of subscribers or bad remote sites,
1356  * this is run through the background queues if possible.
1357  */
1358 function common_broadcast_profile(Profile $profile)
1359 {
1360     $qm = QueueManager::get();
1361     $qm->enqueue($profile, "profile");
1362     return true;
1363 }
1364
1365 function common_profile_url($nickname)
1366 {
1367     return common_local_url('showstream', array('nickname' => $nickname),
1368                             null, null, false);
1369 }
1370
1371 /**
1372  * Should make up a reasonable root URL
1373  */
1374 function common_root_url($ssl=false)
1375 {
1376     $url = common_path('', $ssl, false);
1377     $i = strpos($url, '?');
1378     if ($i !== false) {
1379         $url = substr($url, 0, $i);
1380     }
1381     return $url;
1382 }
1383
1384 /**
1385  * returns $bytes bytes of random data as a hexadecimal string
1386  * "good" here is a goal and not a guarantee
1387  */
1388 function common_good_rand($bytes)
1389 {
1390     // XXX: use random.org...?
1391     if (@file_exists('/dev/urandom')) {
1392         return common_urandom($bytes);
1393     } else { // FIXME: this is probably not good enough
1394         return common_mtrand($bytes);
1395     }
1396 }
1397
1398 function common_urandom($bytes)
1399 {
1400     $h = fopen('/dev/urandom', 'rb');
1401     // should not block
1402     $src = fread($h, $bytes);
1403     fclose($h);
1404     $enc = '';
1405     for ($i = 0; $i < $bytes; $i++) {
1406         $enc .= sprintf("%02x", (ord($src[$i])));
1407     }
1408     return $enc;
1409 }
1410
1411 function common_mtrand($bytes)
1412 {
1413     $enc = '';
1414     for ($i = 0; $i < $bytes; $i++) {
1415         $enc .= sprintf("%02x", mt_rand(0, 255));
1416     }
1417     return $enc;
1418 }
1419
1420 /**
1421  * Record the given URL as the return destination for a future
1422  * form submission, to be read by common_get_returnto().
1423  *
1424  * @param string $url
1425  *
1426  * @fixme as a session-global setting, this can allow multiple forms
1427  * to conflict and overwrite each others' returnto destinations if
1428  * the user has multiple tabs or windows open.
1429  *
1430  * Should refactor to index with a token or otherwise only pass the
1431  * data along its intended path.
1432  */
1433 function common_set_returnto($url)
1434 {
1435     common_ensure_session();
1436     $_SESSION['returnto'] = $url;
1437 }
1438
1439 /**
1440  * Fetch a return-destination URL previously recorded by
1441  * common_set_returnto().
1442  *
1443  * @return mixed URL string or null
1444  *
1445  * @fixme as a session-global setting, this can allow multiple forms
1446  * to conflict and overwrite each others' returnto destinations if
1447  * the user has multiple tabs or windows open.
1448  *
1449  * Should refactor to index with a token or otherwise only pass the
1450  * data along its intended path.
1451  */
1452 function common_get_returnto()
1453 {
1454     common_ensure_session();
1455     return (array_key_exists('returnto', $_SESSION)) ? $_SESSION['returnto'] : null;
1456 }
1457
1458 function common_timestamp()
1459 {
1460     return date('YmdHis');
1461 }
1462
1463 function common_ensure_syslog()
1464 {
1465     static $initialized = false;
1466     if (!$initialized) {
1467         openlog(common_config('syslog', 'appname'), 0,
1468             common_config('syslog', 'facility'));
1469         $initialized = true;
1470     }
1471 }
1472
1473 function common_log_line($priority, $msg)
1474 {
1475     static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1476                                       'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1477     return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . PHP_EOL;
1478 }
1479
1480 function common_request_id()
1481 {
1482     $pid = getmypid();
1483     $server = common_config('site', 'server');
1484     if (php_sapi_name() == 'cli') {
1485         $script = basename($_SERVER['PHP_SELF']);
1486         return "$server:$script:$pid";
1487     } else {
1488         static $req_id = null;
1489         if (!isset($req_id)) {
1490             $req_id = substr(md5(mt_rand()), 0, 8);
1491         }
1492         if (isset($_SERVER['REQUEST_URI'])) {
1493             $url = $_SERVER['REQUEST_URI'];
1494         }
1495         $method = $_SERVER['REQUEST_METHOD'];
1496         return "$server:$pid.$req_id $method $url";
1497     }
1498 }
1499
1500 function common_log($priority, $msg, $filename=null)
1501 {
1502     if(Event::handle('StartLog', array(&$priority, &$msg, &$filename))){
1503         $msg = '[' . common_request_id() . '] ' . $msg;
1504         $logfile = common_config('site', 'logfile');
1505         if ($logfile) {
1506             $log = fopen($logfile, "a");
1507             if ($log) {
1508                 $output = common_log_line($priority, $msg);
1509                 fwrite($log, $output);
1510                 fclose($log);
1511             }
1512         } else {
1513             common_ensure_syslog();
1514             syslog($priority, $msg);
1515         }
1516         Event::handle('EndLog', array($priority, $msg, $filename));
1517     }
1518 }
1519
1520 function common_debug($msg, $filename=null)
1521 {
1522     if ($filename) {
1523         common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1524     } else {
1525         common_log(LOG_DEBUG, $msg);
1526     }
1527 }
1528
1529 function common_log_db_error(&$object, $verb, $filename=null)
1530 {
1531     $objstr = common_log_objstring($object);
1532     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1533     if (is_object($last_error)) {
1534         $msg = $last_error->message;
1535     } else {
1536         $msg = 'Unknown error (' . var_export($last_error, true) . ')';
1537     }
1538     common_log(LOG_ERR, $msg . '(' . $verb . ' on ' . $objstr . ')', $filename);
1539 }
1540
1541 function common_log_objstring(&$object)
1542 {
1543     if (is_null($object)) {
1544         return "null";
1545     }
1546     if (!($object instanceof DB_DataObject)) {
1547         return "(unknown)";
1548     }
1549     $arr = $object->toArray();
1550     $fields = array();
1551     foreach ($arr as $k => $v) {
1552         if (is_object($v)) {
1553             $fields[] = "$k='".get_class($v)."'";
1554         } else {
1555             $fields[] = "$k='$v'";
1556         }
1557     }
1558     $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1559     return $objstring;
1560 }
1561
1562 function common_valid_http_url($url)
1563 {
1564     return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1565 }
1566
1567 function common_valid_tag($tag)
1568 {
1569     if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1570         return (Validate::email($matches[1]) ||
1571                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1572     }
1573     return false;
1574 }
1575
1576 /**
1577  * Determine if given domain or address literal is valid
1578  * eg for use in JIDs and URLs. Does not check if the domain
1579  * exists!
1580  *
1581  * @param string $domain
1582  * @return boolean valid or not
1583  */
1584 function common_valid_domain($domain)
1585 {
1586     $octet = "(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])";
1587     $ipv4 = "(?:$octet(?:\.$octet){3})";
1588     if (preg_match("/^$ipv4$/u", $domain)) return true;
1589
1590     $group = "(?:[0-9a-f]{1,4})";
1591     $ipv6 = "(?:\[($group(?::$group){0,7})?(::)?($group(?::$group){0,7})?\])"; // http://tools.ietf.org/html/rfc3513#section-2.2
1592
1593     if (preg_match("/^$ipv6$/ui", $domain, $matches)) {
1594         $before = explode(":", $matches[1]);
1595         $zeroes = $matches[2];
1596         $after = explode(":", $matches[3]);
1597         if ($zeroes) {
1598             $min = 0;
1599             $max = 7;
1600         } else {
1601             $min = 1;
1602             $max = 8;
1603         }
1604         $explicit = count($before) + count($after);
1605         if ($explicit < $min || $explicit > $max) {
1606             return false;
1607         }
1608         return true;
1609     }
1610
1611     try {
1612         require_once "Net/IDNA.php";
1613         $idn = Net_IDNA::getInstance();
1614         $domain = $idn->encode($domain);
1615     } catch (Exception $e) {
1616         return false;
1617     }
1618
1619     $subdomain = "(?:[a-z0-9][a-z0-9-]*)"; // @fixme
1620     $fqdn = "(?:$subdomain(?:\.$subdomain)*\.?)";
1621
1622     return preg_match("/^$fqdn$/ui", $domain);
1623 }
1624
1625 /* Following functions are copied from MediaWiki GlobalFunctions.php
1626  * and written by Evan Prodromou. */
1627
1628 function common_accept_to_prefs($accept, $def = '*/*')
1629 {
1630     // No arg means accept anything (per HTTP spec)
1631     if(!$accept) {
1632         return array($def => 1);
1633     }
1634
1635     $prefs = array();
1636
1637     $parts = explode(',', $accept);
1638
1639     foreach($parts as $part) {
1640         // FIXME: doesn't deal with params like 'text/html; level=1'
1641         @list($value, $qpart) = explode(';', trim($part));
1642         $match = array();
1643         if(!isset($qpart)) {
1644             $prefs[$value] = 1;
1645         } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1646             $prefs[$value] = $match[1];
1647         }
1648     }
1649
1650     return $prefs;
1651 }
1652
1653 function common_mime_type_match($type, $avail)
1654 {
1655     if(array_key_exists($type, $avail)) {
1656         return $type;
1657     } else {
1658         $parts = explode('/', $type);
1659         if(array_key_exists($parts[0] . '/*', $avail)) {
1660             return $parts[0] . '/*';
1661         } elseif(array_key_exists('*/*', $avail)) {
1662             return '*/*';
1663         } else {
1664             return null;
1665         }
1666     }
1667 }
1668
1669 function common_negotiate_type($cprefs, $sprefs)
1670 {
1671     $combine = array();
1672
1673     foreach(array_keys($sprefs) as $type) {
1674         $parts = explode('/', $type);
1675         if($parts[1] != '*') {
1676             $ckey = common_mime_type_match($type, $cprefs);
1677             if($ckey) {
1678                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1679             }
1680         }
1681     }
1682
1683     foreach(array_keys($cprefs) as $type) {
1684         $parts = explode('/', $type);
1685         if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1686             $skey = common_mime_type_match($type, $sprefs);
1687             if($skey) {
1688                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1689             }
1690         }
1691     }
1692
1693     $bestq = 0;
1694     $besttype = 'text/html';
1695
1696     foreach(array_keys($combine) as $type) {
1697         if($combine[$type] > $bestq) {
1698             $besttype = $type;
1699             $bestq = $combine[$type];
1700         }
1701     }
1702
1703     if ('text/html' === $besttype) {
1704         return "text/html; charset=utf-8";
1705     }
1706     return $besttype;
1707 }
1708
1709 function common_config($main, $sub)
1710 {
1711     global $config;
1712     return (array_key_exists($main, $config) &&
1713             array_key_exists($sub, $config[$main])) ? $config[$main][$sub] : false;
1714 }
1715
1716 /**
1717  * Pull arguments from a GET/POST/REQUEST array with first-level input checks:
1718  * strips "magic quotes" slashes if necessary, and kills invalid UTF-8 strings.
1719  *
1720  * @param array $from
1721  * @return array
1722  */
1723 function common_copy_args($from)
1724 {
1725     $to = array();
1726     $strip = get_magic_quotes_gpc();
1727     foreach ($from as $k => $v) {
1728         if(is_array($v)) {
1729             $to[$k] = common_copy_args($v);
1730         } else {
1731             if ($strip) {
1732                 $v = stripslashes($v);
1733             }
1734             $to[$k] = strval(common_validate_utf8($v));
1735         }
1736     }
1737     return $to;
1738 }
1739
1740 /**
1741  * Neutralise the evil effects of magic_quotes_gpc in the current request.
1742  * This is used before handing a request off to OAuthRequest::from_request.
1743  * @fixme Doesn't consider vars other than _POST and _GET?
1744  * @fixme Can't be undone and could corrupt data if run twice.
1745  */
1746 function common_remove_magic_from_request()
1747 {
1748     if(get_magic_quotes_gpc()) {
1749         $_POST=array_map('stripslashes',$_POST);
1750         $_GET=array_map('stripslashes',$_GET);
1751     }
1752 }
1753
1754 function common_user_uri(&$user)
1755 {
1756     return common_local_url('userbyid', array('id' => $user->id),
1757                             null, null, false);
1758 }
1759
1760 function common_notice_uri(&$notice)
1761 {
1762     return common_local_url('shownotice',
1763                             array('notice' => $notice->id),
1764                             null, null, false);
1765 }
1766
1767 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1768
1769 function common_confirmation_code($bits)
1770 {
1771     // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1772     static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1773     $chars = ceil($bits/5);
1774     $code = '';
1775     for ($i = 0; $i < $chars; $i++) {
1776         // XXX: convert to string and back
1777         $num = hexdec(common_good_rand(1));
1778         // XXX: randomness is too precious to throw away almost
1779         // 40% of the bits we get!
1780         $code .= $codechars[$num%32];
1781     }
1782     return $code;
1783 }
1784
1785 // convert markup to HTML
1786
1787 function common_markup_to_html($c)
1788 {
1789     $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1790     $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1791     $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1792     return Markdown($c);
1793 }
1794
1795 function common_profile_uri($profile)
1796 {
1797     if (!$profile) {
1798         return null;
1799     }
1800     $user = User::staticGet($profile->id);
1801     if ($user) {
1802         return $user->uri;
1803     }
1804
1805     $remote = Remote_profile::staticGet($profile->id);
1806     if ($remote) {
1807         return $remote->uri;
1808     }
1809     // XXX: this is a very bad profile!
1810     return null;
1811 }
1812
1813 function common_canonical_sms($sms)
1814 {
1815     // strip non-digits
1816     preg_replace('/\D/', '', $sms);
1817     return $sms;
1818 }
1819
1820 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1821 {
1822     switch ($errno) {
1823
1824      case E_ERROR:
1825      case E_COMPILE_ERROR:
1826      case E_CORE_ERROR:
1827      case E_USER_ERROR:
1828      case E_PARSE:
1829      case E_RECOVERABLE_ERROR:
1830         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [ABORT]");
1831         die();
1832         break;
1833
1834      case E_WARNING:
1835      case E_COMPILE_WARNING:
1836      case E_CORE_WARNING:
1837      case E_USER_WARNING:
1838         common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1839         break;
1840
1841      case E_NOTICE:
1842      case E_USER_NOTICE:
1843         common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1844         break;
1845
1846      case E_STRICT:
1847      case E_DEPRECATED:
1848      case E_USER_DEPRECATED:
1849         // XXX: config variable to log this stuff, too
1850         break;
1851
1852      default:
1853         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [UNKNOWN LEVEL, die()'ing]");
1854         die();
1855         break;
1856     }
1857
1858     // FIXME: show error page if we're on the Web
1859     /* Don't execute PHP internal error handler */
1860     return true;
1861 }
1862
1863 function common_session_token()
1864 {
1865     common_ensure_session();
1866     if (!array_key_exists('token', $_SESSION)) {
1867         $_SESSION['token'] = common_good_rand(64);
1868     }
1869     return $_SESSION['token'];
1870 }
1871
1872 function common_license_terms($uri)
1873 {
1874     if(preg_match('/creativecommons.org\/licenses\/([^\/]+)/', $uri, $matches)) {
1875         return explode('-',$matches[1]);
1876     }
1877     return array($uri);
1878 }
1879
1880 function common_compatible_license($from, $to)
1881 {
1882     $from_terms = common_license_terms($from);
1883     // public domain and cc-by are compatible with everything
1884     if(count($from_terms) == 1 && ($from_terms[0] == 'publicdomain' || $from_terms[0] == 'by')) {
1885         return true;
1886     }
1887     $to_terms = common_license_terms($to);
1888     // sa is compatible across versions. IANAL
1889     if(in_array('sa',$from_terms) || in_array('sa',$to_terms)) {
1890         return count(array_diff($from_terms, $to_terms)) == 0;
1891     }
1892     // XXX: better compatibility check needed here!
1893     // Should at least normalise URIs
1894     return ($from == $to);
1895 }
1896
1897 /**
1898  * returns a quoted table name, if required according to config
1899  */
1900 function common_database_tablename($tablename)
1901 {
1902   if(common_config('db','quote_identifiers')) {
1903       $tablename = '"'. $tablename .'"';
1904   }
1905   //table prefixes could be added here later
1906   return $tablename;
1907 }
1908
1909 /**
1910  * Shorten a URL with the current user's configured shortening service,
1911  * or ur1.ca if configured, or not at all if no shortening is set up.
1912  *
1913  * @param string  $long_url original URL
1914  * @param boolean $force    Force shortening (used when notice is too long)
1915  *
1916  * @return string may return the original URL if shortening failed
1917  *
1918  * @fixme provide a way to specify a particular shortener
1919  * @fixme provide a way to specify to use a given user's shortening preferences
1920  */
1921
1922 function common_shorten_url($long_url, $force = false)
1923 {
1924     common_debug("Shortening URL '$long_url' (force = $force)");
1925
1926     $long_url = trim($long_url);
1927
1928     $user = common_current_user();
1929
1930     $maxUrlLength = User_urlshortener_prefs::maxUrlLength($user);
1931     common_debug("maxUrlLength = $maxUrlLength");
1932
1933     // $force forces shortening even if it's not strictly needed
1934
1935     if (mb_strlen($long_url) < $maxUrlLength && !$force) {
1936         common_debug("Skipped shortening URL.");
1937         return $long_url;
1938     }
1939
1940     $shortenerName = User_urlshortener_prefs::urlShorteningService($user);
1941
1942     common_debug("Shortener name = '$shortenerName'");
1943
1944     if (Event::handle('StartShortenUrl', array($long_url, $shortenerName, &$shortenedUrl))) {
1945         //URL wasn't shortened, so return the long url
1946         return $long_url;
1947     } else {
1948         //URL was shortened, so return the result
1949         return trim($shortenedUrl);
1950     }
1951 }
1952
1953 /**
1954  * @return mixed array($proxy, $ip) for web requests; proxy may be null
1955  *               null if not a web request
1956  *
1957  * @fixme X-Forwarded-For can be chained by multiple proxies;
1958           we should parse the list and provide a cleaner array
1959  * @fixme X-Forwarded-For can be forged by clients; only use them if trusted
1960  * @fixme X_Forwarded_For headers will override X-Forwarded-For read through $_SERVER;
1961  *        use function to get exact request headers from Apache if possible.
1962  */
1963 function common_client_ip()
1964 {
1965     if (!isset($_SERVER) || !array_key_exists('REQUEST_METHOD', $_SERVER)) {
1966         return null;
1967     }
1968
1969     if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) {
1970         if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1971             $proxy = $_SERVER['HTTP_CLIENT_IP'];
1972         } else {
1973             $proxy = $_SERVER['REMOTE_ADDR'];
1974         }
1975         $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1976     } else {
1977         $proxy = null;
1978         if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1979             $ip = $_SERVER['HTTP_CLIENT_IP'];
1980         } else {
1981             $ip = $_SERVER['REMOTE_ADDR'];
1982         }
1983     }
1984
1985     return array($proxy, $ip);
1986 }
1987
1988 function common_url_to_nickname($url)
1989 {
1990     static $bad = array('query', 'user', 'password', 'port', 'fragment');
1991
1992     $parts = parse_url($url);
1993
1994     # If any of these parts exist, this won't work
1995
1996     foreach ($bad as $badpart) {
1997         if (array_key_exists($badpart, $parts)) {
1998             return null;
1999         }
2000     }
2001
2002     # We just have host and/or path
2003
2004     # If it's just a host...
2005     if (array_key_exists('host', $parts) &&
2006         (!array_key_exists('path', $parts) || strcmp($parts['path'], '/') == 0))
2007     {
2008         $hostparts = explode('.', $parts['host']);
2009
2010         # Try to catch common idiom of nickname.service.tld
2011
2012         if ((count($hostparts) > 2) &&
2013             (strlen($hostparts[count($hostparts) - 2]) > 3) && # try to skip .co.uk, .com.au
2014             (strcmp($hostparts[0], 'www') != 0))
2015         {
2016             return common_nicknamize($hostparts[0]);
2017         } else {
2018             # Do the whole hostname
2019             return common_nicknamize($parts['host']);
2020         }
2021     } else {
2022         if (array_key_exists('path', $parts)) {
2023             # Strip starting, ending slashes
2024             $path = preg_replace('@/$@', '', $parts['path']);
2025             $path = preg_replace('@^/@', '', $path);
2026             $path = basename($path);
2027
2028             // Hack for MediaWiki user pages, in the form:
2029             // http://example.com/wiki/User:Myname
2030             // ('User' may be localized.)
2031             if (strpos($path, ':')) {
2032                 $parts = array_filter(explode(':', $path));
2033                 $path = $parts[count($parts) - 1];
2034             }
2035
2036             if ($path) {
2037                 return common_nicknamize($path);
2038             }
2039         }
2040     }
2041
2042     return null;
2043 }
2044
2045 function common_nicknamize($str)
2046 {
2047     $str = preg_replace('/\W/', '', $str);
2048     return strtolower($str);
2049 }