]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
Merge branch '1.0.x' into schema-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     $attrs = array('href' => $canon, 'title' => $longurl, 'rel' => 'external');
879
880     $is_attachment = false;
881     $attachment_id = null;
882     $has_thumb = false;
883
884     // Check to see whether this is a known "attachment" URL.
885
886     $f = File::staticGet('url', $longurl);
887
888     if (empty($f)) {
889         // XXX: this writes to the database. :<
890         $f = File::processNew($longurl);
891     }
892
893     if (!empty($f)) {
894         if ($f->getEnclosure() || File_oembed::staticGet('file_id',$f->id)) {
895             $is_attachment = true;
896             $attachment_id = $f->id;
897
898             $thumb = File_thumbnail::staticGet('file_id', $f->id);
899             if (!empty($thumb)) {
900                 $has_thumb = true;
901             }
902         }
903     }
904
905     // Add clippy
906     if ($is_attachment) {
907         $attrs['class'] = 'attachment';
908         if ($has_thumb) {
909             $attrs['class'] = 'attachment thumbnail';
910         }
911         $attrs['id'] = "attachment-{$attachment_id}";
912     }
913
914     return XMLStringer::estring('a', $attrs, $url);
915 }
916
917 function common_shorten_links($text, $always = false)
918 {
919     common_debug("common_shorten_links() called");
920
921     $user = common_current_user();
922
923     $maxLength = User_urlshortener_prefs::maxNoticeLength($user);
924
925     common_debug("maxLength = $maxLength");
926
927     if ($always || mb_strlen($text) > $maxLength) {
928         common_debug("Forcing shortening");
929         return common_replace_urls_callback($text, array('File_redirection', 'forceShort'));
930     } else {
931         common_debug("Not forcing shortening");
932         return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
933     }
934 }
935
936 /**
937  * Very basic stripping of invalid UTF-8 input text.
938  *
939  * @param string $str
940  * @return mixed string or null if invalid input
941  *
942  * @todo ideally we should drop bad chars, and maybe do some of the checks
943  *       from common_xml_safe_str. But we can't strip newlines, etc.
944  * @todo Unicode normalization might also be useful, but not needed now.
945  */
946 function common_validate_utf8($str)
947 {
948     // preg_replace will return NULL on invalid UTF-8 input.
949     return preg_replace('//u', '', $str);
950 }
951
952 /**
953  * Make sure an arbitrary string is safe for output in XML as a single line.
954  *
955  * @param string $str
956  * @return string
957  */
958 function common_xml_safe_str($str)
959 {
960     // Replace common eol and extra whitespace input chars
961     $unWelcome = array(
962         "\t",  // tab
963         "\n",  // newline
964         "\r",  // cr
965         "\0",  // null byte eos
966         "\x0B" // vertical tab
967     );
968
969     $replacement = array(
970         ' ', // single space
971         ' ',
972         '',  // nothing
973         '',
974         ' '
975     );
976
977     $str = str_replace($unWelcome, $replacement, $str);
978
979     // Neutralize any additional control codes and UTF-16 surrogates
980     // (Twitter uses '*')
981     return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
982 }
983
984 function common_tag_link($tag)
985 {
986     $canonical = common_canonical_tag($tag);
987     if (common_config('singleuser', 'enabled')) {
988         // regular TagAction isn't set up in 1user mode
989         $url = common_local_url('showstream',
990                                 array('nickname' => common_config('singleuser', 'nickname'),
991                                       'tag' => $canonical));
992     } else {
993         $url = common_local_url('tag', array('tag' => $canonical));
994     }
995     $xs = new XMLStringer();
996     $xs->elementStart('span', 'tag');
997     $xs->element('a', array('href' => $url,
998                             'rel' => 'tag'),
999                  $tag);
1000     $xs->elementEnd('span');
1001     return $xs->getString();
1002 }
1003
1004 function common_canonical_tag($tag)
1005 {
1006   $tag = mb_convert_case($tag, MB_CASE_LOWER, "UTF-8");
1007   return str_replace(array('-', '_', '.'), '', $tag);
1008 }
1009
1010 function common_valid_profile_tag($str)
1011 {
1012     return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
1013 }
1014
1015 function common_group_link($sender_id, $nickname)
1016 {
1017     $sender = Profile::staticGet($sender_id);
1018     $group = User_group::getForNickname($nickname, $sender);
1019     if ($sender && $group && $sender->isMember($group)) {
1020         $attrs = array('href' => $group->permalink(),
1021                        'class' => 'url');
1022         if (!empty($group->fullname)) {
1023             $attrs['title'] = $group->fullname . ' (' . $group->nickname . ')';
1024         }
1025         $xs = new XMLStringer();
1026         $xs->elementStart('span', 'vcard');
1027         $xs->elementStart('a', $attrs);
1028         $xs->element('span', 'fn nickname', $nickname);
1029         $xs->elementEnd('a');
1030         $xs->elementEnd('span');
1031         return $xs->getString();
1032     } else {
1033         return $nickname;
1034     }
1035 }
1036
1037 function common_relative_profile($sender, $nickname, $dt=null)
1038 {
1039     // Try to find profiles this profile is subscribed to that have this nickname
1040     $recipient = new Profile();
1041     // XXX: use a join instead of a subquery
1042     $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = 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
1047         return $recipient;
1048     }
1049     // Try to find profiles that listen to this profile and that have this nickname
1050     $recipient = new Profile();
1051     // XXX: use a join instead of a subquery
1052     $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
1053     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
1054     if ($recipient->find(true)) {
1055         // XXX: should probably differentiate between profiles with
1056         // the same name by date of most recent update
1057         return $recipient;
1058     }
1059     // If this is a local user, try to find a local user with that nickname.
1060     $sender = User::staticGet($sender->id);
1061     if ($sender) {
1062         $recipient_user = User::staticGet('nickname', $nickname);
1063         if ($recipient_user) {
1064             return $recipient_user->getProfile();
1065         }
1066     }
1067     // Otherwise, no links. @messages from local users to remote users,
1068     // or from remote users to other remote users, are just
1069     // outside our ability to make intelligent guesses about
1070     return null;
1071 }
1072
1073 function common_local_url($action, $args=null, $params=null, $fragment=null, $addSession=true)
1074 {
1075     $r = Router::get();
1076     $path = $r->build($action, $args, $params, $fragment);
1077
1078     $ssl = common_is_sensitive($action);
1079
1080     if (common_config('site','fancy')) {
1081         $url = common_path(mb_substr($path, 1), $ssl, $addSession);
1082     } else {
1083         if (mb_strpos($path, '/index.php') === 0) {
1084             $url = common_path(mb_substr($path, 1), $ssl, $addSession);
1085         } else {
1086             $url = common_path('index.php'.$path, $ssl, $addSession);
1087         }
1088     }
1089     return $url;
1090 }
1091
1092 function common_is_sensitive($action)
1093 {
1094     static $sensitive = array('login', 'register', 'passwordsettings', 'api');
1095     $ssl = null;
1096
1097     if (Event::handle('SensitiveAction', array($action, &$ssl))) {
1098         $ssl = in_array($action, $sensitive);
1099     }
1100
1101     return $ssl;
1102 }
1103
1104 function common_path($relative, $ssl=false, $addSession=true)
1105 {
1106     $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
1107
1108     if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
1109         || common_config('site', 'ssl') === 'always') {
1110         $proto = 'https';
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');
1116         } else {
1117             common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
1118         }
1119     } else {
1120         $proto = 'http';
1121         if (common_config('site', 'server')) {
1122             $serverpart = common_config('site', 'server');
1123         } else {
1124             common_log(LOG_ERR, 'Site server not configured, unable to determine site name.');
1125         }
1126     }
1127
1128     if ($addSession) {
1129         $relative = common_inject_session($relative, $serverpart);
1130     }
1131
1132     return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
1133 }
1134
1135 function common_inject_session($url, $serverpart = null)
1136 {
1137     if (common_have_session()) {
1138
1139         if (empty($serverpart)) {
1140             $serverpart = parse_url($url, PHP_URL_HOST);
1141         }
1142
1143         $currentServer = $_SERVER['HTTP_HOST'];
1144
1145         // Are we pointing to another server (like an SSL server?)
1146
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;
1154             } else {
1155                 $url = substr($url, 0, $i + 1).$sesspart.'&'.substr($url, $i + 1);
1156             }
1157         }
1158     }
1159
1160     return $url;
1161 }
1162
1163 function common_date_string($dt)
1164 {
1165     // XXX: do some sexy date formatting
1166     // return date(DATE_RFC822, $dt);
1167     $t = strtotime($dt);
1168     $now = time();
1169     $diff = $now - $t;
1170
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');
1207     } else {
1208         return common_exact_date($dt);
1209     }
1210 }
1211
1212 function common_exact_date($dt)
1213 {
1214     static $_utc;
1215     static $_siteTz;
1216
1217     if (!$_utc) {
1218         $_utc = new DateTimeZone('UTC');
1219         $_siteTz = new DateTimeZone(common_timezone());
1220     }
1221
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);
1226 }
1227
1228 function common_date_w3dtf($dt)
1229 {
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);
1234 }
1235
1236 function common_date_rfc2822($dt)
1237 {
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');
1242 }
1243
1244 function common_date_iso8601($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('c');
1250 }
1251
1252 function common_sql_now()
1253 {
1254     return common_sql_date(time());
1255 }
1256
1257 function common_sql_date($datetime)
1258 {
1259     return strftime('%Y-%m-%d %H:%M:%S', $datetime);
1260 }
1261
1262 /**
1263  * Return an SQL fragment to calculate an age-based weight from a given
1264  * timestamp or datetime column.
1265  *
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
1269  */
1270 function common_sql_weight($column, $dropoff)
1271 {
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))";
1277     } else {
1278         return "sum(exp(timestampdiff(second, utc_timestamp(), $column) / $dropoff))";
1279     }
1280 }
1281
1282 function common_redirect($url, $code=307)
1283 {
1284     static $status = array(301 => "Moved Permanently",
1285                            302 => "Found",
1286                            303 => "See Other",
1287                            307 => "Temporary Redirect");
1288
1289     header('HTTP/1.1 '.$code.' '.$status[$code]);
1290     header("Location: $url");
1291
1292     $xo = new XMLOutputter();
1293     $xo->startXML('a',
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);
1297     $xo->endXML();
1298     exit;
1299 }
1300
1301 // Stick the notice on the queue
1302
1303 function common_enqueue_notice($notice)
1304 {
1305     static $localTransports = array('omb',
1306                                     'ping');
1307
1308     $transports = array();
1309     if (common_config('sms', 'enabled')) {
1310         $transports[] = 'sms';
1311     }
1312     if (Event::hasHandler('HandleQueuedNotice')) {
1313         $transports[] = 'plugin';
1314     }
1315
1316     // We can skip these for gatewayed notices.
1317     if ($notice->isLocal()) {
1318         $transports = array_merge($transports, $localTransports);
1319     }
1320
1321     if (Event::handle('StartEnqueueNotice', array($notice, &$transports))) {
1322
1323         $qm = QueueManager::get();
1324
1325         foreach ($transports as $transport)
1326         {
1327             $qm->enqueue($notice, $transport);
1328         }
1329
1330         Event::handle('EndEnqueueNotice', array($notice, $transports));
1331     }
1332
1333     return true;
1334 }
1335
1336 /**
1337  * Broadcast profile updates to OMB and other remote subscribers.
1338  *
1339  * Since this may be slow with a lot of subscribers or bad remote sites,
1340  * this is run through the background queues if possible.
1341  */
1342 function common_broadcast_profile(Profile $profile)
1343 {
1344     $qm = QueueManager::get();
1345     $qm->enqueue($profile, "profile");
1346     return true;
1347 }
1348
1349 function common_profile_url($nickname)
1350 {
1351     return common_local_url('showstream', array('nickname' => $nickname),
1352                             null, null, false);
1353 }
1354
1355 /**
1356  * Should make up a reasonable root URL
1357  */
1358 function common_root_url($ssl=false)
1359 {
1360     $url = common_path('', $ssl, false);
1361     $i = strpos($url, '?');
1362     if ($i !== false) {
1363         $url = substr($url, 0, $i);
1364     }
1365     return $url;
1366 }
1367
1368 /**
1369  * returns $bytes bytes of random data as a hexadecimal string
1370  * "good" here is a goal and not a guarantee
1371  */
1372 function common_good_rand($bytes)
1373 {
1374     // XXX: use random.org...?
1375     if (@file_exists('/dev/urandom')) {
1376         return common_urandom($bytes);
1377     } else { // FIXME: this is probably not good enough
1378         return common_mtrand($bytes);
1379     }
1380 }
1381
1382 function common_urandom($bytes)
1383 {
1384     $h = fopen('/dev/urandom', 'rb');
1385     // should not block
1386     $src = fread($h, $bytes);
1387     fclose($h);
1388     $enc = '';
1389     for ($i = 0; $i < $bytes; $i++) {
1390         $enc .= sprintf("%02x", (ord($src[$i])));
1391     }
1392     return $enc;
1393 }
1394
1395 function common_mtrand($bytes)
1396 {
1397     $enc = '';
1398     for ($i = 0; $i < $bytes; $i++) {
1399         $enc .= sprintf("%02x", mt_rand(0, 255));
1400     }
1401     return $enc;
1402 }
1403
1404 /**
1405  * Record the given URL as the return destination for a future
1406  * form submission, to be read by common_get_returnto().
1407  *
1408  * @param string $url
1409  *
1410  * @fixme as a session-global setting, this can allow multiple forms
1411  * to conflict and overwrite each others' returnto destinations if
1412  * the user has multiple tabs or windows open.
1413  *
1414  * Should refactor to index with a token or otherwise only pass the
1415  * data along its intended path.
1416  */
1417 function common_set_returnto($url)
1418 {
1419     common_ensure_session();
1420     $_SESSION['returnto'] = $url;
1421 }
1422
1423 /**
1424  * Fetch a return-destination URL previously recorded by
1425  * common_set_returnto().
1426  *
1427  * @return mixed URL string or null
1428  *
1429  * @fixme as a session-global setting, this can allow multiple forms
1430  * to conflict and overwrite each others' returnto destinations if
1431  * the user has multiple tabs or windows open.
1432  *
1433  * Should refactor to index with a token or otherwise only pass the
1434  * data along its intended path.
1435  */
1436 function common_get_returnto()
1437 {
1438     common_ensure_session();
1439     return (array_key_exists('returnto', $_SESSION)) ? $_SESSION['returnto'] : null;
1440 }
1441
1442 function common_timestamp()
1443 {
1444     return date('YmdHis');
1445 }
1446
1447 function common_ensure_syslog()
1448 {
1449     static $initialized = false;
1450     if (!$initialized) {
1451         openlog(common_config('syslog', 'appname'), 0,
1452             common_config('syslog', 'facility'));
1453         $initialized = true;
1454     }
1455 }
1456
1457 function common_log_line($priority, $msg)
1458 {
1459     static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1460                                       'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1461     return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . PHP_EOL;
1462 }
1463
1464 function common_request_id()
1465 {
1466     $pid = getmypid();
1467     $server = common_config('site', 'server');
1468     if (php_sapi_name() == 'cli') {
1469         $script = basename($_SERVER['PHP_SELF']);
1470         return "$server:$script:$pid";
1471     } else {
1472         static $req_id = null;
1473         if (!isset($req_id)) {
1474             $req_id = substr(md5(mt_rand()), 0, 8);
1475         }
1476         if (isset($_SERVER['REQUEST_URI'])) {
1477             $url = $_SERVER['REQUEST_URI'];
1478         }
1479         $method = $_SERVER['REQUEST_METHOD'];
1480         return "$server:$pid.$req_id $method $url";
1481     }
1482 }
1483
1484 function common_log($priority, $msg, $filename=null)
1485 {
1486     if(Event::handle('StartLog', array(&$priority, &$msg, &$filename))){
1487         $msg = '[' . common_request_id() . '] ' . $msg;
1488         $logfile = common_config('site', 'logfile');
1489         if ($logfile) {
1490             $log = fopen($logfile, "a");
1491             if ($log) {
1492                 $output = common_log_line($priority, $msg);
1493                 fwrite($log, $output);
1494                 fclose($log);
1495             }
1496         } else {
1497             common_ensure_syslog();
1498             syslog($priority, $msg);
1499         }
1500         Event::handle('EndLog', array($priority, $msg, $filename));
1501     }
1502 }
1503
1504 function common_debug($msg, $filename=null)
1505 {
1506     if ($filename) {
1507         common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1508     } else {
1509         common_log(LOG_DEBUG, $msg);
1510     }
1511 }
1512
1513 function common_log_db_error(&$object, $verb, $filename=null)
1514 {
1515     $objstr = common_log_objstring($object);
1516     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1517     if (is_object($last_error)) {
1518         $msg = $last_error->message;
1519     } else {
1520         $msg = 'Unknown error (' . var_export($last_error, true) . ')';
1521     }
1522     common_log(LOG_ERR, $msg . '(' . $verb . ' on ' . $objstr . ')', $filename);
1523 }
1524
1525 function common_log_objstring(&$object)
1526 {
1527     if (is_null($object)) {
1528         return "null";
1529     }
1530     if (!($object instanceof DB_DataObject)) {
1531         return "(unknown)";
1532     }
1533     $arr = $object->toArray();
1534     $fields = array();
1535     foreach ($arr as $k => $v) {
1536         if (is_object($v)) {
1537             $fields[] = "$k='".get_class($v)."'";
1538         } else {
1539             $fields[] = "$k='$v'";
1540         }
1541     }
1542     $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1543     return $objstring;
1544 }
1545
1546 function common_valid_http_url($url)
1547 {
1548     return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1549 }
1550
1551 function common_valid_tag($tag)
1552 {
1553     if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1554         return (Validate::email($matches[1]) ||
1555                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1556     }
1557     return false;
1558 }
1559
1560 /**
1561  * Determine if given domain or address literal is valid
1562  * eg for use in JIDs and URLs. Does not check if the domain
1563  * exists!
1564  *
1565  * @param string $domain
1566  * @return boolean valid or not
1567  */
1568 function common_valid_domain($domain)
1569 {
1570     $octet = "(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])";
1571     $ipv4 = "(?:$octet(?:\.$octet){3})";
1572     if (preg_match("/^$ipv4$/u", $domain)) return true;
1573
1574     $group = "(?:[0-9a-f]{1,4})";
1575     $ipv6 = "(?:\[($group(?::$group){0,7})?(::)?($group(?::$group){0,7})?\])"; // http://tools.ietf.org/html/rfc3513#section-2.2
1576
1577     if (preg_match("/^$ipv6$/ui", $domain, $matches)) {
1578         $before = explode(":", $matches[1]);
1579         $zeroes = $matches[2];
1580         $after = explode(":", $matches[3]);
1581         if ($zeroes) {
1582             $min = 0;
1583             $max = 7;
1584         } else {
1585             $min = 1;
1586             $max = 8;
1587         }
1588         $explicit = count($before) + count($after);
1589         if ($explicit < $min || $explicit > $max) {
1590             return false;
1591         }
1592         return true;
1593     }
1594
1595     try {
1596         require_once "Net/IDNA.php";
1597         $idn = Net_IDNA::getInstance();
1598         $domain = $idn->encode($domain);
1599     } catch (Exception $e) {
1600         return false;
1601     }
1602
1603     $subdomain = "(?:[a-z0-9][a-z0-9-]*)"; // @fixme
1604     $fqdn = "(?:$subdomain(?:\.$subdomain)*\.?)";
1605
1606     return preg_match("/^$fqdn$/ui", $domain);
1607 }
1608
1609 /* Following functions are copied from MediaWiki GlobalFunctions.php
1610  * and written by Evan Prodromou. */
1611
1612 function common_accept_to_prefs($accept, $def = '*/*')
1613 {
1614     // No arg means accept anything (per HTTP spec)
1615     if(!$accept) {
1616         return array($def => 1);
1617     }
1618
1619     $prefs = array();
1620
1621     $parts = explode(',', $accept);
1622
1623     foreach($parts as $part) {
1624         // FIXME: doesn't deal with params like 'text/html; level=1'
1625         @list($value, $qpart) = explode(';', trim($part));
1626         $match = array();
1627         if(!isset($qpart)) {
1628             $prefs[$value] = 1;
1629         } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1630             $prefs[$value] = $match[1];
1631         }
1632     }
1633
1634     return $prefs;
1635 }
1636
1637 function common_mime_type_match($type, $avail)
1638 {
1639     if(array_key_exists($type, $avail)) {
1640         return $type;
1641     } else {
1642         $parts = explode('/', $type);
1643         if(array_key_exists($parts[0] . '/*', $avail)) {
1644             return $parts[0] . '/*';
1645         } elseif(array_key_exists('*/*', $avail)) {
1646             return '*/*';
1647         } else {
1648             return null;
1649         }
1650     }
1651 }
1652
1653 function common_negotiate_type($cprefs, $sprefs)
1654 {
1655     $combine = array();
1656
1657     foreach(array_keys($sprefs) as $type) {
1658         $parts = explode('/', $type);
1659         if($parts[1] != '*') {
1660             $ckey = common_mime_type_match($type, $cprefs);
1661             if($ckey) {
1662                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1663             }
1664         }
1665     }
1666
1667     foreach(array_keys($cprefs) as $type) {
1668         $parts = explode('/', $type);
1669         if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1670             $skey = common_mime_type_match($type, $sprefs);
1671             if($skey) {
1672                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1673             }
1674         }
1675     }
1676
1677     $bestq = 0;
1678     $besttype = 'text/html';
1679
1680     foreach(array_keys($combine) as $type) {
1681         if($combine[$type] > $bestq) {
1682             $besttype = $type;
1683             $bestq = $combine[$type];
1684         }
1685     }
1686
1687     if ('text/html' === $besttype) {
1688         return "text/html; charset=utf-8";
1689     }
1690     return $besttype;
1691 }
1692
1693 function common_config($main, $sub)
1694 {
1695     global $config;
1696     return (array_key_exists($main, $config) &&
1697             array_key_exists($sub, $config[$main])) ? $config[$main][$sub] : false;
1698 }
1699
1700 /**
1701  * Pull arguments from a GET/POST/REQUEST array with first-level input checks:
1702  * strips "magic quotes" slashes if necessary, and kills invalid UTF-8 strings.
1703  *
1704  * @param array $from
1705  * @return array
1706  */
1707 function common_copy_args($from)
1708 {
1709     $to = array();
1710     $strip = get_magic_quotes_gpc();
1711     foreach ($from as $k => $v) {
1712         if(is_array($v)) {
1713             $to[$k] = common_copy_args($v);
1714         } else {
1715             if ($strip) {
1716                 $v = stripslashes($v);
1717             }
1718             $to[$k] = strval(common_validate_utf8($v));
1719         }
1720     }
1721     return $to;
1722 }
1723
1724 /**
1725  * Neutralise the evil effects of magic_quotes_gpc in the current request.
1726  * This is used before handing a request off to OAuthRequest::from_request.
1727  * @fixme Doesn't consider vars other than _POST and _GET?
1728  * @fixme Can't be undone and could corrupt data if run twice.
1729  */
1730 function common_remove_magic_from_request()
1731 {
1732     if(get_magic_quotes_gpc()) {
1733         $_POST=array_map('stripslashes',$_POST);
1734         $_GET=array_map('stripslashes',$_GET);
1735     }
1736 }
1737
1738 function common_user_uri(&$user)
1739 {
1740     return common_local_url('userbyid', array('id' => $user->id),
1741                             null, null, false);
1742 }
1743
1744 function common_notice_uri(&$notice)
1745 {
1746     return common_local_url('shownotice',
1747                             array('notice' => $notice->id),
1748                             null, null, false);
1749 }
1750
1751 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1752
1753 function common_confirmation_code($bits)
1754 {
1755     // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1756     static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1757     $chars = ceil($bits/5);
1758     $code = '';
1759     for ($i = 0; $i < $chars; $i++) {
1760         // XXX: convert to string and back
1761         $num = hexdec(common_good_rand(1));
1762         // XXX: randomness is too precious to throw away almost
1763         // 40% of the bits we get!
1764         $code .= $codechars[$num%32];
1765     }
1766     return $code;
1767 }
1768
1769 // convert markup to HTML
1770
1771 function common_markup_to_html($c)
1772 {
1773     $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1774     $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1775     $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1776     return Markdown($c);
1777 }
1778
1779 function common_profile_uri($profile)
1780 {
1781     if (!$profile) {
1782         return null;
1783     }
1784     $user = User::staticGet($profile->id);
1785     if ($user) {
1786         return $user->uri;
1787     }
1788
1789     $remote = Remote_profile::staticGet($profile->id);
1790     if ($remote) {
1791         return $remote->uri;
1792     }
1793     // XXX: this is a very bad profile!
1794     return null;
1795 }
1796
1797 function common_canonical_sms($sms)
1798 {
1799     // strip non-digits
1800     preg_replace('/\D/', '', $sms);
1801     return $sms;
1802 }
1803
1804 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1805 {
1806     switch ($errno) {
1807
1808      case E_ERROR:
1809      case E_COMPILE_ERROR:
1810      case E_CORE_ERROR:
1811      case E_USER_ERROR:
1812      case E_PARSE:
1813      case E_RECOVERABLE_ERROR:
1814         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [ABORT]");
1815         die();
1816         break;
1817
1818      case E_WARNING:
1819      case E_COMPILE_WARNING:
1820      case E_CORE_WARNING:
1821      case E_USER_WARNING:
1822         common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1823         break;
1824
1825      case E_NOTICE:
1826      case E_USER_NOTICE:
1827         common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1828         break;
1829
1830      case E_STRICT:
1831      case E_DEPRECATED:
1832      case E_USER_DEPRECATED:
1833         // XXX: config variable to log this stuff, too
1834         break;
1835
1836      default:
1837         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline) [UNKNOWN LEVEL, die()'ing]");
1838         die();
1839         break;
1840     }
1841
1842     // FIXME: show error page if we're on the Web
1843     /* Don't execute PHP internal error handler */
1844     return true;
1845 }
1846
1847 function common_session_token()
1848 {
1849     common_ensure_session();
1850     if (!array_key_exists('token', $_SESSION)) {
1851         $_SESSION['token'] = common_good_rand(64);
1852     }
1853     return $_SESSION['token'];
1854 }
1855
1856 function common_license_terms($uri)
1857 {
1858     if(preg_match('/creativecommons.org\/licenses\/([^\/]+)/', $uri, $matches)) {
1859         return explode('-',$matches[1]);
1860     }
1861     return array($uri);
1862 }
1863
1864 function common_compatible_license($from, $to)
1865 {
1866     $from_terms = common_license_terms($from);
1867     // public domain and cc-by are compatible with everything
1868     if(count($from_terms) == 1 && ($from_terms[0] == 'publicdomain' || $from_terms[0] == 'by')) {
1869         return true;
1870     }
1871     $to_terms = common_license_terms($to);
1872     // sa is compatible across versions. IANAL
1873     if(in_array('sa',$from_terms) || in_array('sa',$to_terms)) {
1874         return count(array_diff($from_terms, $to_terms)) == 0;
1875     }
1876     // XXX: better compatibility check needed here!
1877     // Should at least normalise URIs
1878     return ($from == $to);
1879 }
1880
1881 /**
1882  * returns a quoted table name, if required according to config
1883  */
1884 function common_database_tablename($tablename)
1885 {
1886   if(common_config('db','quote_identifiers')) {
1887       $tablename = '"'. $tablename .'"';
1888   }
1889   //table prefixes could be added here later
1890   return $tablename;
1891 }
1892
1893 /**
1894  * Shorten a URL with the current user's configured shortening service,
1895  * or ur1.ca if configured, or not at all if no shortening is set up.
1896  *
1897  * @param string  $long_url original URL
1898  * @param boolean $force    Force shortening (used when notice is too long)
1899  *
1900  * @return string may return the original URL if shortening failed
1901  *
1902  * @fixme provide a way to specify a particular shortener
1903  * @fixme provide a way to specify to use a given user's shortening preferences
1904  */
1905
1906 function common_shorten_url($long_url, $force = false)
1907 {
1908     common_debug("Shortening URL '$long_url' (force = $force)");
1909
1910     $long_url = trim($long_url);
1911
1912     $user = common_current_user();
1913
1914     $maxUrlLength = User_urlshortener_prefs::maxUrlLength($user);
1915     common_debug("maxUrlLength = $maxUrlLength");
1916
1917     // $force forces shortening even if it's not strictly needed
1918
1919     if (mb_strlen($long_url) < $maxUrlLength && !$force) {
1920         common_debug("Skipped shortening URL.");
1921         return $long_url;
1922     }
1923
1924     $shortenerName = User_urlshortener_prefs::urlShorteningService($user);
1925
1926     common_debug("Shortener name = '$shortenerName'");
1927
1928     if (Event::handle('StartShortenUrl', array($long_url, $shortenerName, &$shortenedUrl))) {
1929         //URL wasn't shortened, so return the long url
1930         return $long_url;
1931     } else {
1932         //URL was shortened, so return the result
1933         return trim($shortenedUrl);
1934     }
1935 }
1936
1937 /**
1938  * @return mixed array($proxy, $ip) for web requests; proxy may be null
1939  *               null if not a web request
1940  *
1941  * @fixme X-Forwarded-For can be chained by multiple proxies;
1942           we should parse the list and provide a cleaner array
1943  * @fixme X-Forwarded-For can be forged by clients; only use them if trusted
1944  * @fixme X_Forwarded_For headers will override X-Forwarded-For read through $_SERVER;
1945  *        use function to get exact request headers from Apache if possible.
1946  */
1947 function common_client_ip()
1948 {
1949     if (!isset($_SERVER) || !array_key_exists('REQUEST_METHOD', $_SERVER)) {
1950         return null;
1951     }
1952
1953     if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) {
1954         if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1955             $proxy = $_SERVER['HTTP_CLIENT_IP'];
1956         } else {
1957             $proxy = $_SERVER['REMOTE_ADDR'];
1958         }
1959         $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
1960     } else {
1961         $proxy = null;
1962         if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) {
1963             $ip = $_SERVER['HTTP_CLIENT_IP'];
1964         } else {
1965             $ip = $_SERVER['REMOTE_ADDR'];
1966         }
1967     }
1968
1969     return array($proxy, $ip);
1970 }
1971
1972 function common_url_to_nickname($url)
1973 {
1974     static $bad = array('query', 'user', 'password', 'port', 'fragment');
1975
1976     $parts = parse_url($url);
1977
1978     # If any of these parts exist, this won't work
1979
1980     foreach ($bad as $badpart) {
1981         if (array_key_exists($badpart, $parts)) {
1982             return null;
1983         }
1984     }
1985
1986     # We just have host and/or path
1987
1988     # If it's just a host...
1989     if (array_key_exists('host', $parts) &&
1990         (!array_key_exists('path', $parts) || strcmp($parts['path'], '/') == 0))
1991     {
1992         $hostparts = explode('.', $parts['host']);
1993
1994         # Try to catch common idiom of nickname.service.tld
1995
1996         if ((count($hostparts) > 2) &&
1997             (strlen($hostparts[count($hostparts) - 2]) > 3) && # try to skip .co.uk, .com.au
1998             (strcmp($hostparts[0], 'www') != 0))
1999         {
2000             return common_nicknamize($hostparts[0]);
2001         } else {
2002             # Do the whole hostname
2003             return common_nicknamize($parts['host']);
2004         }
2005     } else {
2006         if (array_key_exists('path', $parts)) {
2007             # Strip starting, ending slashes
2008             $path = preg_replace('@/$@', '', $parts['path']);
2009             $path = preg_replace('@^/@', '', $path);
2010             $path = basename($path);
2011
2012             // Hack for MediaWiki user pages, in the form:
2013             // http://example.com/wiki/User:Myname
2014             // ('User' may be localized.)
2015             if (strpos($path, ':')) {
2016                 $parts = array_filter(explode(':', $path));
2017                 $path = $parts[count($parts) - 1];
2018             }
2019
2020             if ($path) {
2021                 return common_nicknamize($path);
2022             }
2023         }
2024     }
2025
2026     return null;
2027 }
2028
2029 function common_nicknamize($str)
2030 {
2031     $str = preg_replace('/\W/', '', $str);
2032     return strtolower($str);
2033 }