]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
cea0c3992f71b6a64c7afd0b8e3b2fb4dd8a4a24
[quix0rs-gnu-social.git] / lib / util.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, 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, HTML, user, files) */
21
22 # Show a server error
23
24 function common_server_error($msg, $code=500) {
25         static $status = array(500 => 'Internal Server Error',
26                                                    501 => 'Not Implemented',
27                                                    502 => 'Bad Gateway',
28                                                    503 => 'Service Unavailable',
29                                                    504 => 'Gateway Timeout',
30                                                    505 => 'HTTP Version Not Supported');
31
32         if (!array_key_exists($code, $status)) {
33                 $code = 500;
34         }
35
36         $status_string = $status[$code];
37
38         header('HTTP/1.1 '.$code.' '.$status_string);
39         header('Content-type: text/plain');
40
41         print $msg;
42         print "\n";
43         exit();
44 }
45
46 # Show a user error
47 function common_user_error($msg, $code=400) {
48         static $status = array(400 => 'Bad Request',
49                                                    401 => 'Unauthorized',
50                                                    402 => 'Payment Required',
51                                                    403 => 'Forbidden',
52                                                    404 => 'Not Found',
53                                                    405 => 'Method Not Allowed',
54                                                    406 => 'Not Acceptable',
55                                                    407 => 'Proxy Authentication Required',
56                                                    408 => 'Request Timeout',
57                                                    409 => 'Conflict',
58                                                    410 => 'Gone',
59                                                    411 => 'Length Required',
60                                                    412 => 'Precondition Failed',
61                                                    413 => 'Request Entity Too Large',
62                                                    414 => 'Request-URI Too Long',
63                                                    415 => 'Unsupported Media Type',
64                                                    416 => 'Requested Range Not Satisfiable',
65                                                    417 => 'Expectation Failed');
66
67         if (!array_key_exists($code, $status)) {
68                 $code = 400;
69         }
70
71         $status_string = $status[$code];
72
73         header('HTTP/1.1 '.$code.' '.$status_string);
74
75         common_show_header('Error');
76         common_element('div', array('class' => 'error'), $msg);
77         common_show_footer();
78 }
79
80 $xw = null;
81
82 # Start an HTML element
83 function common_element_start($tag, $attrs=NULL) {
84         global $xw;
85         $xw->startElement($tag);
86         if (is_array($attrs)) {
87                 foreach ($attrs as $name => $value) {
88                         $xw->writeAttribute($name, $value);
89                 }
90         } else if (is_string($attrs)) {
91                 $xw->writeAttribute('class', $attrs);
92         }
93 }
94
95 function common_element_end($tag) {
96         static $empty_tag = array('base', 'meta', 'link', 'hr',
97                                                           'br', 'param', 'img', 'area',
98                                                           'input', 'col');
99         global $xw;
100         # XXX: check namespace
101         if (in_array($tag, $empty_tag)) {
102                 $xw->endElement();
103         } else {
104                 $xw->fullEndElement();
105         }
106 }
107
108 function common_element($tag, $attrs=NULL, $content=NULL) {
109         common_element_start($tag, $attrs);
110         global $xw;
111         if (!is_null($content)) {
112                 $xw->text($content);
113         }
114         common_element_end($tag);
115 }
116
117 function common_start_xml($doc=NULL, $public=NULL, $system=NULL) {
118         global $xw;
119         $xw = new XMLWriter();
120         $xw->openURI('php://output');
121         $xw->setIndent(true);
122         $xw->startDocument('1.0', 'UTF-8');
123         if ($doc) {
124                 $xw->writeDTD($doc, $public, $system);
125         }
126 }
127
128 function common_end_xml() {
129         global $xw;
130         $xw->endDocument();
131         $xw->flush();
132 }
133
134 function common_init_language() {
135         mb_internal_encoding('UTF-8');
136         $language = common_language();
137         # So we don't have to make people install the gettext locales
138         putenv('LANGUAGE='.$language);
139         putenv('LANG='.$language);      
140         $locale_set = setlocale(LC_ALL, $language . ".utf8",
141                                                         $language . ".UTF8",
142                                                         $language . ".utf-8",
143                                                         $language . ".UTF-8",
144                                                         $language);
145         bindtextdomain("laconica", common_config('site','locale_path'));
146         bind_textdomain_codeset("laconica", "UTF-8");
147         textdomain("laconica");
148         setlocale(LC_CTYPE, 'C');
149 }
150
151 define('PAGE_TYPE_PREFS', 'text/html,application/xhtml+xml,application/xml;q=0.3,text/xml;q=0.2');
152
153 function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=NULL) {
154         global $config, $xw;
155
156         $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : NULL;
157
158         # XXX: allow content negotiation for RDF, RSS, or XRDS
159
160         $type = common_negotiate_type(common_accept_to_prefs($httpaccept),
161                                                                   common_accept_to_prefs(PAGE_TYPE_PREFS));
162
163         if (!$type) {
164                 common_user_error(_('This page is not available in a media type you accept'), 406);
165                 exit(0);
166         }
167
168         header('Content-Type: '.$type);
169
170         common_start_xml('html',
171                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
172                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
173
174         # FIXME: correct language for interface
175
176         $language = common_language();
177         
178         common_element_start('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
179                                                                            'xml:lang' => $language,
180                                                                            'lang' => $language));
181
182         common_element_start('head');
183         common_element('title', NULL,
184                                    $pagetitle . " - " . $config['site']['name']);
185         common_element('link', array('rel' => 'stylesheet',
186                                                                  'type' => 'text/css',
187                                                                  'href' => theme_path('display.css'),
188                                                                  'media' => 'screen, projection, tv'));
189         foreach (array(6,7) as $ver) {
190                 if (file_exists(theme_file('ie'.$ver.'.css'))) {
191                         # Yes, IE people should be put in jail.
192                         $xw->writeComment('[if lte IE '.$ver.']><link rel="stylesheet" type="text/css" '.
193                                                           'href="'.theme_path('ie'.$ver.'.css').'" /><![endif]');
194                 }
195         }
196
197         common_element('script', array('type' => 'text/javascript',
198                                                                    'src' => common_path('js/jquery.min.js')),
199                                    ' ');
200         common_element('script', array('type' => 'text/javascript',
201                                                                    'src' => common_path('js/util.js')),
202                                    ' ');
203         common_element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
204                                         'href' =>  common_local_url('opensearch', array('type' => 'people')),
205                                         'title' => common_config('site', 'name').' People Search'));
206
207         common_element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
208                                         'href' =>  common_local_url('opensearch', array('type' => 'notice')),
209                                         'title' => common_config('site', 'name').' Notice Search'));
210
211         if ($callable) {
212                 if ($data) {
213                         call_user_func($callable, $data);
214                 } else {
215                         call_user_func($callable);
216                 }
217         }
218         common_element_end('head');
219         common_element_start('body');
220         common_element_start('div', array('id' => 'wrap'));
221         common_element_start('div', array('id' => 'header'));
222         common_nav_menu();
223         if ((isset($config['site']['logo']) && is_string($config['site']['logo']) && (strlen($config['site']['logo']) > 0))
224                 || file_exists(theme_file('logo.png')))
225         {
226                 common_element_start('a', array('href' => common_local_url('public')));
227                 common_element('img', array('src' => isset($config['site']['logo']) ?
228                                                                         ($config['site']['logo']) : theme_path('logo.png'),
229                                                                         'alt' => $config['site']['name'],
230                                                                         'id' => 'logo'));
231                 common_element_end('a');
232         } else {
233                 common_element_start('p', array('id' => 'branding'));
234                 common_element('a', array('href' => common_local_url('public')),
235                                            $config['site']['name']);
236                 common_element_end('p');
237         }
238
239         common_element('h1', 'pagetitle', $pagetitle);
240
241         if ($headercall) {
242                 if ($data) {
243                         call_user_func($headercall, $data);
244                 } else {
245                         call_user_func($headercall);
246                 }
247         }
248         common_element_end('div');
249         common_element_start('div', array('id' => 'content'));
250 }
251
252 function common_show_footer() {
253         global $xw, $config;
254         common_element_end('div'); # content div
255         common_foot_menu();
256         common_element_start('div', array('id' => 'footer'));
257         common_element_start('div', 'laconica');
258         if (common_config('site', 'broughtby')) {
259                 $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). ');
260         } else {
261                 $instr = _('**%%site.name%%** is a microblogging service. ');
262         }
263         $instr .= sprintf(_('It runs the [Laconica](http://laconi.ca/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html).'), LACONICA_VERSION);
264     $output = common_markup_to_html($instr);
265     common_raw($output);
266         common_element_end('div');
267         common_element('img', array('id' => 'cc',
268                                                                 'src' => $config['license']['image'],
269                                                                 'alt' => $config['license']['title']));
270         common_element_start('p');
271         common_text(_('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
272         common_element('a', array('class' => 'license',
273                                                           'rel' => 'license',
274                                                           'href' => $config['license']['url']),
275                                    $config['license']['title']);
276         common_text(_('. Contributors should be attributed by full name or nickname.'));
277         common_element_end('p');
278         common_element_end('div');
279         common_element_end('div');
280         common_element_end('body');
281         common_element_end('html');
282         common_end_xml();
283 }
284
285 function common_text($txt) {
286         global $xw;
287         $xw->text($txt);
288 }
289
290 function common_raw($xml) {
291         global $xw;
292         $xw->writeRaw($xml);
293 }
294
295 function common_nav_menu() {
296         $user = common_current_user();
297         common_element_start('ul', array('id' => 'nav'));
298         if ($user) {
299                 common_menu_item(common_local_url('all', array('nickname' => $user->nickname)),
300                                                  _('Home'));
301         }
302         common_menu_item(common_local_url('peoplesearch'), _('Search'));
303         common_menu_item(common_local_url('tags'), _('Tags'));
304         if ($user) {
305                 common_menu_item(common_local_url('profilesettings'),
306                                                  _('Settings'));
307                 common_menu_item(common_local_url('logout'),
308                                                  _('Logout'));
309         } else {
310                 common_menu_item(common_local_url('login'), _('Login'));
311                 if (!common_config('site', 'closed')) {
312                         common_menu_item(common_local_url('register'), _('Register'));
313                 }
314                 common_menu_item(common_local_url('openidlogin'), _('OpenID'));
315         }
316         common_element_end('ul');
317 }
318
319 function common_foot_menu() {
320         common_element_start('ul', array('id' => 'nav_sub'));
321         common_menu_item(common_local_url('doc', array('title' => 'help')),
322                                          _('Help'));
323         common_menu_item(common_local_url('doc', array('title' => 'about')),
324                                          _('About'));
325         common_menu_item(common_local_url('doc', array('title' => 'faq')),
326                                          _('FAQ'));
327         common_menu_item(common_local_url('doc', array('title' => 'privacy')),
328                                          _('Privacy'));
329         common_menu_item(common_local_url('doc', array('title' => 'source')),
330                                          _('Source'));
331         common_menu_item(common_local_url('doc', array('title' => 'contact')),
332                                          _('Contact'));
333         common_element_end('ul');
334 }
335
336 function common_menu_item($url, $text, $title=NULL, $is_selected=false) {
337         $lattrs = array();
338         if ($is_selected) {
339                 $lattrs['class'] = 'current';
340         }
341         common_element_start('li', $lattrs);
342         $attrs['href'] = $url;
343         if ($title) {
344                 $attrs['title'] = $title;
345         }
346         common_element('a', $attrs, $text);
347         common_element_end('li');
348 }
349
350 function common_input($id, $label, $value=NULL,$instructions=NULL) {
351         common_element_start('p');
352         common_element('label', array('for' => $id), $label);
353         $attrs = array('name' => $id,
354                                    'type' => 'text',
355                                    'class' => 'input_text',
356                                    'id' => $id);
357         if ($value) {
358                 $attrs['value'] = htmlspecialchars($value);
359         }
360         common_element('input', $attrs);
361         if ($instructions) {
362                 common_element('span', 'input_instructions', $instructions);
363         }
364         common_element_end('p');
365 }
366
367 function common_checkbox($id, $label, $checked=false, $instructions=NULL, $value='true')
368 {
369         common_element_start('p');
370         $attrs = array('name' => $id,
371                                    'type' => 'checkbox',
372                                    'class' => 'checkbox',
373                                    'id' => $id);
374         if ($value) {
375                 $attrs['value'] = htmlspecialchars($value);
376         }
377         if ($checked) {
378                 $attrs['checked'] = 'checked';
379         }
380         common_element('input', $attrs);
381         # XXX: use a <label>
382         common_text(' ');
383         common_element('span', 'checkbox_label', $label);
384         common_text(' ');
385         if ($instructions) {
386                 common_element('span', 'input_instructions', $instructions);
387         }
388         common_element_end('p');
389 }
390
391 function common_dropdown($id, $label, $content, $instructions=NULL, $blank_select=FALSE, $selected=NULL) {
392         common_element_start('p');
393         common_element('label', array('for' => $id), $label);
394         common_element_start('select', array('id' => $id, 'name' => $id));
395         if ($blank_select) {
396                 common_element('option', array('value' => ''));
397         }
398         foreach ($content as $value => $option) {
399                 if ($value == $selected) {
400                         common_element('option', array('value' => $value, 'selected' => $value), $option);
401                 } else {
402                         common_element('option', array('value' => $value), $option);
403                 }
404         }
405         common_element_end('select');
406         if ($instructions) {
407                 common_element('span', 'input_instructions', $instructions);
408         }
409         common_element_end('p');
410 }
411 function common_hidden($id, $value) {
412         common_element('input', array('name' => $id,
413                                                                   'type' => 'hidden',
414                                                                   'id' => $id,
415                                                                   'value' => $value));
416 }
417
418 function common_password($id, $label, $instructions=NULL) {
419         common_element_start('p');
420         common_element('label', array('for' => $id), $label);
421         $attrs = array('name' => $id,
422                                    'type' => 'password',
423                                    'class' => 'password',
424                                    'id' => $id);
425         common_element('input', $attrs);
426         if ($instructions) {
427                 common_element('span', 'input_instructions', $instructions);
428         }
429         common_element_end('p');
430 }
431
432 function common_submit($id, $label) {
433         global $xw;
434         common_element_start('p');
435         common_element('input', array('type' => 'submit',
436                                                                   'id' => $id,
437                                                                   'name' => $id,
438                                                                   'class' => 'submit',
439                                                                   'value' => $label));
440         common_element_end('p');
441 }
442
443 function common_textarea($id, $label, $content=NULL, $instructions=NULL) {
444         common_element_start('p');
445         common_element('label', array('for' => $id), $label);
446         common_element('textarea', array('rows' => 3,
447                                                                          'cols' => 40,
448                                                                          'name' => $id,
449                                                                          'id' => $id),
450                                    ($content) ? $content : '');
451         if ($instructions) {
452                 common_element('span', 'input_instructions', $instructions);
453         }
454         common_element_end('p');
455 }
456
457 function common_timezone() {
458         if (common_logged_in()) {
459                 $user = common_current_user();
460                 if ($user->timezone) {
461                         return $user->timezone;
462                 }
463         }
464
465         global $config;
466         return $config['site']['timezone'];
467 }
468
469 function common_language() {
470         $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : NULL;
471         $language = array();
472         $user_language = FALSE;
473
474         if (common_logged_in()) {
475                 $user = common_current_user();
476                 $user_language = $user->language;
477         }
478
479         if ($user_language) {
480                 return $user_language;
481         } else if (!empty($httplang)) {
482                 $language = client_prefered_language($httplang);
483                 if ($language) {
484                     return $language;
485                 }
486         } else {
487                 return $config['site']['language'];
488         }
489 }
490 # salted, hashed passwords are stored in the DB
491
492 function common_munge_password($password, $id) {
493         return md5($password . $id);
494 }
495
496 # check if a username exists and has matching password
497 function common_check_user($nickname, $password) {
498         # NEVER allow blank passwords, even if they match the DB
499         if (mb_strlen($password) == 0) {
500                 return false;
501         }
502         $user = User::staticGet('nickname', $nickname);
503         if (is_null($user)) {
504                 return false;
505         } else {
506                 if (0 == strcmp(common_munge_password($password, $user->id),
507                                                 $user->password)) {
508                         return $user;
509                 } else {
510                         return false;
511                 }
512         }
513 }
514
515 # is the current user logged in?
516 function common_logged_in() {
517         return (!is_null(common_current_user()));
518 }
519
520 function common_have_session() {
521         return (0 != strcmp(session_id(), ''));
522 }
523
524 function common_ensure_session() {
525         if (!common_have_session()) {
526                 @session_start();
527         }
528 }
529
530 # Three kinds of arguments:
531 # 1) a user object
532 # 2) a nickname
533 # 3) NULL to clear
534
535 function common_set_user($user) {
536         if (is_null($user) && common_have_session()) {
537                 unset($_SESSION['userid']);
538                 return true;
539         } else if (is_string($user)) {
540                 $nickname = $user;
541                 $user = User::staticGet('nickname', $nickname);
542         } else if (!($user instanceof User)) {
543                 return false;
544         }
545
546         if ($user) {
547                 common_ensure_session();
548                 $_SESSION['userid'] = $user->id;
549                 return $user;
550         }
551         return false;
552 }
553
554 function common_set_cookie($key, $value, $expiration=0) {
555         $path = common_config('site', 'path');
556         $server = common_config('site', 'server');
557
558         if ($path && ($path != '/')) {
559                 $cookiepath = '/' . $path . '/';
560         } else {
561                 $cookiepath = '/';
562         }
563         return setcookie($key,
564                          $value,
565                                  $expiration,
566                                          $cookiepath,
567                                      $server);
568 }
569
570 define('REMEMBERME', 'rememberme');
571 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60);
572
573 function common_rememberme($user=NULL) {
574         if (!$user) {
575                 $user = common_current_user();
576                 if (!$user) {
577                         common_debug('No current user to remember', __FILE__);
578                         return false;
579                 }
580         }
581         $rm = new Remember_me();
582         $rm->code = common_good_rand(16);
583         $rm->user_id = $user->id;
584         $result = $rm->insert();
585         if (!$result) {
586                 common_log_db_error($rm, 'INSERT', __FILE__);
587                 common_debug('Error adding rememberme record for ' . $user->nickname, __FILE__);
588                 return false;
589         }
590         common_log(LOG_INFO, 'adding rememberme cookie for ' . $user->nickname);
591         common_set_cookie(REMEMBERME,
592                                           implode(':', array($rm->user_id, $rm->code)),
593                                           time() + REMEMBERME_EXPIRY);
594         return true;
595 }
596
597 function common_remembered_user() {
598         $user = NULL;
599         # Try to remember
600         $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : '';
601         if ($packed) {
602                 list($id, $code) = explode(':', $packed);
603                 if ($id && $code) {
604                         $rm = Remember_me::staticGet($code);
605                         if ($rm && ($rm->user_id == $id)) {
606                                 $user = User::staticGet($rm->user_id);
607                                 if ($user) {
608                                         # successful!
609                                         $result = $rm->delete();
610                                         if (!$result) {
611                                                 common_log_db_error($rm, 'DELETE', __FILE__);
612                                                 $user = NULL;
613                                         } else {
614                                                 common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
615                                                 common_set_user($user->nickname);
616                                                 common_real_login(false);
617                                                 # We issue a new cookie, so they can log in
618                                                 # automatically again after this session
619                                                 common_rememberme($user);
620                                         }
621                                 }
622                         }
623                 }
624         }
625         return $user;
626 }
627
628 # must be called with a valid user!
629
630 function common_forgetme() {
631         common_set_cookie(REMEMBERME, '', 0);
632 }
633
634 # who is the current user?
635 function common_current_user() {
636         if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
637                 common_ensure_session();
638                 $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
639                 if ($id) {
640                         # note: this should cache
641                         $user = User::staticGet($id);
642                         return $user;
643                 }
644         }
645         # that didn't work; try to remember
646         $user = common_remembered_user();
647         if ($user) {
648                 common_debug("Got User " . $user->nickname);
649             common_debug("Faking session on remembered user");
650             $_SESSION['userid'] = $user->id;
651         }
652         return $user;
653 }
654
655 # Logins that are 'remembered' aren't 'real' -- they're subject to
656 # cookie-stealing. So, we don't let them do certain things. New reg,
657 # OpenID, and password logins _are_ real.
658
659 function common_real_login($real=true) {
660         common_ensure_session();
661         $_SESSION['real_login'] = $real;
662 }
663
664 function common_is_real_login() {
665         return common_logged_in() && $_SESSION['real_login'];
666 }
667
668 # get canonical version of nickname for comparison
669 function common_canonical_nickname($nickname) {
670         # XXX: UTF-8 canonicalization (like combining chars)
671         return strtolower($nickname);
672 }
673
674 # get canonical version of email for comparison
675 function common_canonical_email($email) {
676         # XXX: canonicalize UTF-8
677         # XXX: lcase the domain part
678         return $email;
679 }
680
681 define('URL_REGEX', '^|[ \t\r\n])((ftp|http|https|gopher|mailto|news|nntp|telnet|wais|file|prospero|aim|webcal):(([A-Za-z0-9$_.+!*(),;/?:@&~=-])|%[A-Fa-f0-9]{2}){2,}(#([a-zA-Z0-9][a-zA-Z0-9$_.+!*(),;/?:@&~=%-]*))?([A-Za-z0-9$_+!*();/?:~-]))');
682
683 function common_render_content($text, $notice) {
684         $r = htmlspecialchars($text);
685
686         $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
687         $id = $notice->profile_id;
688         $r = preg_replace('@https?://[^)\]>\s]+@', '<a href="\0" class="extlink">\0</a>', $r);
689         $r = preg_replace('/(^|\s+)@([a-z0-9]{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
690         $r = preg_replace('/^T ([A-Z0-9]{1,64}) /e', "'T '.common_at_link($id, '\\1').' '", $r);
691         $r = preg_replace('/(^|\s+)#([a-z0-9]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
692         # XXX: machine tags
693         return $r;
694 }
695
696 function common_tag_link($tag) {
697         return '<a href="' . htmlspecialchars(common_path('tag/' . $tag)) . '" rel="tag" class="hashlink">' . htmlspecialchars($tag) . '</a>';
698 }
699
700 function common_at_link($sender_id, $nickname) {
701         $sender = Profile::staticGet($sender_id);
702         $recipient = common_relative_profile($sender, $nickname);
703         if ($recipient) {
704                 return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink">'.$nickname.'</a>';
705         } else {
706                 return $nickname;
707         }
708 }
709
710 function common_relative_profile($sender, $nickname, $dt=NULL) {
711         # Try to find profiles this profile is subscribed to that have this nickname
712         $recipient = new Profile();
713         # XXX: use a join instead of a subquery
714         $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
715         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
716         if ($recipient->find(TRUE)) {
717                 # XXX: should probably differentiate between profiles with
718                 # the same name by date of most recent update
719                 return $recipient;
720         }
721         # Try to find profiles that listen to this profile and that have this nickname
722         $recipient = new Profile();
723         # XXX: use a join instead of a subquery
724         $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
725         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
726         if ($recipient->find(TRUE)) {
727                 # XXX: should probably differentiate between profiles with
728                 # the same name by date of most recent update
729                 return $recipient;
730         }
731         # If this is a local user, try to find a local user with that nickname.
732         $sender = User::staticGet($sender->id);
733         if ($sender) {
734                 $recipient_user = User::staticGet('nickname', $nickname);
735                 if ($recipient_user) {
736                         return $recipient_user->getProfile();
737                 }
738         }
739         # Otherwise, no links. @messages from local users to remote users,
740         # or from remote users to other remote users, are just
741         # outside our ability to make intelligent guesses about
742         return NULL;
743 }
744
745 // where should the avatar go for this user?
746
747 function common_avatar_filename($id, $extension, $size=NULL, $extra=NULL) {
748         global $config;
749
750         if ($size) {
751                 return $id . '-' . $size . (($extra) ? ('-' . $extra) : '') . $extension;
752         } else {
753                 return $id . '-original' . (($extra) ? ('-' . $extra) : '') . $extension;
754         }
755 }
756
757 function common_avatar_path($filename) {
758         global $config;
759         return INSTALLDIR . '/avatar/' . $filename;
760 }
761
762 function common_avatar_url($filename) {
763         return common_path('avatar/'.$filename);
764 }
765
766 function common_avatar_display_url($avatar) {
767         $server = common_config('avatar', 'server');
768         if ($server) {
769                 return 'http://'.$server.'/'.$avatar->filename;
770         } else {
771                 return $avatar->url;
772         }
773 }
774
775 function common_default_avatar($size) {
776         static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
777                                                           AVATAR_STREAM_SIZE => 'stream',
778                                                           AVATAR_MINI_SIZE => 'mini');
779         return theme_path('default-avatar-'.$sizenames[$size].'.png');
780 }
781
782 function common_local_url($action, $args=NULL) {
783         global $config;
784         if ($config['site']['fancy']) {
785                 return common_fancy_url($action, $args);
786         } else {
787                 return common_simple_url($action, $args);
788         }
789 }
790
791 function common_fancy_url($action, $args=NULL) {
792         switch (strtolower($action)) {
793          case 'public':
794                 if ($args && isset($args['page'])) {
795                         return common_path('?page=' . $args['page']);
796                 } else {
797                         return common_path('');
798                 }
799          case 'publicrss':
800                 return common_path('rss');
801          case 'publicxrds':
802                 return common_path('xrds');
803          case 'opensearch':
804                 if ($args && $args['type']) {
805                         return common_path('opensearch/'.$args['type']);
806                 } else {
807                         return common_path('opensearch/people');
808                 }
809          case 'doc':
810                 return common_path('doc/'.$args['title']);
811          case 'login':
812          case 'logout':
813          case 'register':
814          case 'subscribe':
815          case 'unsubscribe':
816                 return common_path('main/'.$action);
817          case 'remotesubscribe':
818                 if ($args && $args['nickname']) {
819                         return common_path('main/remote?nickname=' . $args['nickname']);
820                 } else {
821                         return common_path('main/remote');
822                 }
823          case 'openidlogin':
824                 return common_path('main/openid');
825          case 'avatar':
826          case 'password':
827                 return common_path('settings/'.$action);
828          case 'profilesettings':
829                 return common_path('settings/profile');
830          case 'emailsettings':
831                 return common_path('settings/email');
832          case 'openidsettings':
833                 return common_path('settings/openid');
834          case 'smssettings':
835                 return common_path('settings/sms');
836          case 'newnotice':
837                 if ($args && $args['replyto']) {
838                         return common_path('notice/new?replyto='.$args['replyto']);
839                 } else {
840                         return common_path('notice/new');
841                 }
842          case 'shownotice':
843                 return common_path('notice/'.$args['notice']);
844          case 'deletenotice':
845                 if ($args && $args['notice']) {
846                         return common_path('notice/delete/'.$args['notice']);
847                 } else {
848                         return common_path('notice/delete');
849                 }
850          case 'xrds':
851          case 'foaf':
852                 return common_path($args['nickname'].'/'.$action);
853          case 'subscriptions':
854          case 'subscribers':
855          case 'all':
856          case 'replies':
857                 if ($args && isset($args['page'])) {
858                         return common_path($args['nickname'].'/'.$action.'?page=' . $args['page']);
859                 } else {
860                         return common_path($args['nickname'].'/'.$action);
861                 }
862          case 'allrss':
863                 return common_path($args['nickname'].'/all/rss');
864          case 'repliesrss':
865                 return common_path($args['nickname'].'/replies/rss');
866          case 'userrss':
867                 return common_path($args['nickname'].'/rss');
868          case 'showstream':
869                 if ($args && isset($args['page'])) {
870                         return common_path($args['nickname'].'?page=' . $args['page']);
871                 } else {
872                         return common_path($args['nickname']);
873                 }
874          case 'confirmaddress':
875                 return common_path('main/confirmaddress/'.$args['code']);
876          case 'userbyid':
877                 return common_path('user/'.$args['id']);
878          case 'recoverpassword':
879             $path = 'main/recoverpassword';
880             if ($args['code']) {
881                 $path .= '/' . $args['code'];
882                 }
883             return common_path($path);
884          case 'imsettings':
885                 return common_path('settings/im');
886          case 'peoplesearch':
887                 return common_path('search/people' . (($args) ? ('?' . http_build_query($args)) : ''));
888          case 'noticesearch':
889                 return common_path('search/notice' . (($args) ? ('?' . http_build_query($args)) : ''));
890          case 'noticesearchrss':
891                 return common_path('search/notice/rss' . (($args) ? ('?' . http_build_query($args)) : ''));
892          case 'avatarbynickname':
893                 return common_path($args['nickname'].'/avatar/'.$args['size']);
894          case 'tag':
895             if (isset($args['tag']) && $args['tag']) {
896                         $path = 'tag/' . $args['tag'];
897                         unset($args['tag']);
898                 } else {
899                         $path = 'tags';
900                 }
901                 return common_path($path . (($args) ? ('?' . http_build_query($args)) : ''));
902          case 'tags':
903                 return common_path('tags' . (($args) ? ('?' . http_build_query($args)) : ''));
904          default:
905                 return common_simple_url($action, $args);
906         }
907 }
908
909 function common_simple_url($action, $args=NULL) {
910         global $config;
911         /* XXX: pretty URLs */
912         $extra = '';
913         if ($args) {
914                 foreach ($args as $key => $value) {
915                         $extra .= "&${key}=${value}";
916                 }
917         }
918         return common_path("index.php?action=${action}${extra}");
919 }
920
921 function common_path($relative) {
922         global $config;
923         $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
924         return "http://".$config['site']['server'].'/'.$pathpart.$relative;
925 }
926
927 function common_date_string($dt) {
928         // XXX: do some sexy date formatting
929         // return date(DATE_RFC822, $dt);
930         $t = strtotime($dt);
931         $now = time();
932         $diff = $now - $t;
933
934         if ($now < $t) { # that shouldn't happen!
935                 return common_exact_date($dt);
936         } else if ($diff < 60) {
937                 return _('a few seconds ago');
938         } else if ($diff < 92) {
939                 return _('about a minute ago');
940         } else if ($diff < 3300) {
941                 return sprintf(_('about %d minutes ago'), round($diff/60));
942         } else if ($diff < 5400) {
943                 return _('about an hour ago');
944         } else if ($diff < 22 * 3600) {
945                 return sprintf(_('about %d hours ago'), round($diff/3600));
946         } else if ($diff < 37 * 3600) {
947                 return _('about a day ago');
948         } else if ($diff < 24 * 24 * 3600) {
949                 return sprintf(_('about %d days ago'), round($diff/(24*3600)));
950         } else if ($diff < 46 * 24 * 3600) {
951                 return _('about a month ago');
952         } else if ($diff < 330 * 24 * 3600) {
953                 return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
954         } else if ($diff < 480 * 24 * 3600) {
955                 return _('about a year ago');
956         } else {
957                 return common_exact_date($dt);
958         }
959 }
960
961 function common_exact_date($dt) {
962     static $_utc;
963     static $_siteTz;
964
965     if (!$_utc) {
966         $_utc = new DateTimeZone('UTC');
967         $_siteTz = new DateTimeZone(common_timezone());
968     }
969
970         $dateStr = date('d F Y H:i:s', strtotime($dt));
971         $d = new DateTime($dateStr, $_utc);
972         $d->setTimezone($_siteTz);
973         return $d->format(DATE_RFC850);
974 }
975
976 function common_date_w3dtf($dt) {
977         $dateStr = date('d F Y H:i:s', strtotime($dt));
978         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
979         $d->setTimezone(new DateTimeZone(common_timezone()));
980         return $d->format(DATE_W3C);
981 }
982
983 function common_date_rfc2822($dt) {
984         $dateStr = date('d F Y H:i:s', strtotime($dt));
985         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
986         $d->setTimezone(new DateTimeZone(common_timezone()));
987         return $d->format('r');
988 }
989
990 function common_date_iso8601($dt) {
991         $dateStr = date('d F Y H:i:s', strtotime($dt));
992         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
993         $d->setTimezone(new DateTimeZone(common_timezone()));
994         return $d->format('c');
995 }
996
997 function common_sql_now() {
998         return strftime('%Y-%m-%d %H:%M:%S', time());
999 }
1000
1001 function common_redirect($url, $code=307) {
1002         static $status = array(301 => "Moved Permanently",
1003                                                    302 => "Found",
1004                                                    303 => "See Other",
1005                                                    307 => "Temporary Redirect");
1006         header("Status: ${code} $status[$code]");
1007         header("Location: $url");
1008
1009         common_start_xml('a',
1010                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
1011                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
1012         common_element('a', array('href' => $url), $url);
1013         common_end_xml();
1014     exit;
1015 }
1016
1017 function common_save_replies($notice) {
1018         # Alternative reply format
1019         $tname = false;
1020         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $notice->content, $match)) {
1021                 $tname = $match[1];
1022         }
1023         # extract all @messages
1024         $cnt = preg_match_all('/(?:^|\s)@([a-z0-9]{1,64})/', $notice->content, $match);
1025         if (!$cnt && !$tname) {
1026                 return true;
1027         }
1028         # XXX: is there another way to make an array copy?
1029         $names = ($tname) ? array_unique(array_merge(array(strtolower($tname)), $match[1])) : array_unique($match[1]);
1030         $sender = Profile::staticGet($notice->profile_id);
1031         # store replied only for first @ (what user/notice what the reply directed,
1032         # we assume first @ is it)
1033         for ($i=0; $i<count($names); $i++) {
1034                 $nickname = $names[$i];
1035                 $recipient = common_relative_profile($sender, $nickname, $notice->created);
1036                 if (!$recipient) {
1037                         continue;
1038                 }
1039                 if ($i == 0 && ($recipient->id != $sender->id)) { # Don't save reply to self
1040                         $reply_for = $recipient;
1041                         $recipient_notice = $reply_for->getCurrentNotice();
1042                         if ($recipient_notice) {
1043                                 $orig = clone($notice);
1044                                 $notice->reply_to = $recipient_notice->id;
1045                                 $notice->update($orig);
1046                         }
1047                 }
1048                 $reply = new Reply();
1049                 $reply->notice_id = $notice->id;
1050                 $reply->profile_id = $recipient->id;
1051                 $id = $reply->insert();
1052                 if (!$id) {
1053                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1054                         common_log(LOG_ERR, 'DB error inserting reply: ' . $last_error->message);
1055                         common_server_error(sprintf(_('DB error inserting reply: %s'), $last_error->message));
1056                         return;
1057                 }
1058         }
1059 }
1060
1061 function common_broadcast_notice($notice, $remote=false) {
1062         if (common_config('queue', 'enabled')) {
1063                 # Do it later!
1064                 return common_enqueue_notice($notice);
1065         } else {
1066                 return common_real_broadcast($notice, $remote);
1067         }
1068 }
1069
1070 # Stick the notice on the queue
1071
1072 function common_enqueue_notice($notice) {
1073         foreach (array('jabber', 'oms', 'sms') as $transport) {
1074                 $qi = new Queue_item();
1075                 $qi->notice_id = $notice->id;
1076                 $qi->transport = $transport;
1077                 $qi->created = $notice->created;
1078                 if (!$result) {
1079         $result = $qi->insert();
1080                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1081                         common_log(LOG_ERR, 'DB error inserting queue item: ' . $last_error->message);
1082                         return false;
1083                 }
1084                 common_log(LOG_DEBUG, 'complete queueing notice ID = ' . $notice->id . ' for ' . $transport);
1085                 return $result;
1086         }
1087 }
1088
1089 function common_dequeue_notice($notice) {
1090         $qi = Queue_item::staticGet($notice->id);
1091         if ($qi) {
1092                 $result = $qi->delete();
1093                 if (!$result) {
1094                     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1095                     common_log(LOG_ERR, 'DB error deleting queue item: ' . $last_error->message);
1096                     return false;
1097                 }
1098                 common_log(LOG_DEBUG, 'complete dequeueing notice ID = ' . $notice->id);
1099                 return $result;
1100         } else {
1101             return false;
1102         }
1103 }
1104
1105 function common_real_broadcast($notice, $remote=false) {
1106         $success = true;
1107         if (!$remote) {
1108                 # Make sure we have the OMB stuff
1109                 require_once(INSTALLDIR.'/lib/omb.php');
1110                 $success = omb_broadcast_remote_subscribers($notice);
1111                 if (!$success) {
1112                         common_log(LOG_ERR, 'Error in OMB broadcast for notice ' . $notice->id);
1113                 }
1114         }
1115         if ($success) {
1116                 require_once(INSTALLDIR.'/lib/jabber.php');
1117                 $success = jabber_broadcast_notice($notice);
1118                 if (!$success) {
1119                         common_log(LOG_ERR, 'Error in jabber broadcast for notice ' . $notice->id);
1120                 }
1121         }
1122         if ($success) {
1123                 require_once(INSTALLDIR.'/lib/mail.php');
1124                 $success = mail_broadcast_notice_sms($notice);
1125                 if (!$success) {
1126                         common_log(LOG_ERR, 'Error in sms broadcast for notice ' . $notice->id);
1127                 }
1128         }
1129         // XXX: broadcast notices to other IM
1130         return $success;
1131 }
1132
1133 function common_broadcast_profile($profile) {
1134         // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
1135         require_once(INSTALLDIR.'/lib/omb.php');
1136         omb_broadcast_profile($profile);
1137         // XXX: Other broadcasts...?
1138         return true;
1139 }
1140
1141 function common_profile_url($nickname) {
1142         return common_local_url('showstream', array('nickname' => $nickname));
1143 }
1144
1145 # Don't call if nobody's logged in
1146
1147 function common_notice_form($action=NULL, $content=NULL) {
1148         $user = common_current_user();
1149         assert(!is_null($user));
1150         common_element_start('form', array('id' => 'status_form',
1151                                                                            'method' => 'post',
1152                                                                            'action' => common_local_url('newnotice')));
1153         common_element_start('p');
1154         common_element('label', array('for' => 'status_textarea',
1155                                                                   'id' => 'status_label'),
1156                                    sprintf(_('What\'s up, %s?'), $user->nickname));
1157         common_element('span', array('id' => 'counter', 'class' => 'counter'), '140');
1158         common_element('textarea', array('id' => 'status_textarea',
1159                                                                          'cols' => 60,
1160                                                                          'rows' => 3,
1161                                                                          'name' => 'status_textarea'),
1162                                    ($content) ? $content : '');
1163         if ($action) {
1164                 common_hidden('returnto', $action);
1165         }
1166         common_element('input', array('id' => 'status_submit',
1167                                                                   'name' => 'status_submit',
1168                                                                   'type' => 'submit',
1169                                                                   'value' => _('Send')));
1170         common_element_end('p');
1171         common_element_end('form');
1172 }
1173
1174 # Should make up a reasonable root URL
1175
1176 function common_root_url() {
1177         return common_path('');
1178 }
1179
1180 # returns $bytes bytes of random data as a hexadecimal string
1181 # "good" here is a goal and not a guarantee
1182
1183 function common_good_rand($bytes) {
1184         # XXX: use random.org...?
1185         if (file_exists('/dev/urandom')) {
1186                 return common_urandom($bytes);
1187         } else { # FIXME: this is probably not good enough
1188                 return common_mtrand($bytes);
1189         }
1190 }
1191
1192 function common_urandom($bytes) {
1193         $h = fopen('/dev/urandom', 'rb');
1194         # should not block
1195         $src = fread($h, $bytes);
1196         fclose($h);
1197         $enc = '';
1198         for ($i = 0; $i < $bytes; $i++) {
1199                 $enc .= sprintf("%02x", (ord($src[$i])));
1200         }
1201         return $enc;
1202 }
1203
1204 function common_mtrand($bytes) {
1205         $enc = '';
1206         for ($i = 0; $i < $bytes; $i++) {
1207                 $enc .= sprintf("%02x", mt_rand(0, 255));
1208         }
1209         return $enc;
1210 }
1211
1212 function common_set_returnto($url) {
1213         common_ensure_session();
1214         $_SESSION['returnto'] = $url;
1215 }
1216
1217 function common_get_returnto() {
1218         common_ensure_session();
1219         return $_SESSION['returnto'];
1220 }
1221
1222 function common_timestamp() {
1223         return date('YmdHis');
1224 }
1225
1226 function common_ensure_syslog() {
1227         static $initialized = false;
1228         if (!$initialized) {
1229                 global $config;
1230                 openlog($config['syslog']['appname'], 0, LOG_USER);
1231                 $initialized = true;
1232         }
1233 }
1234
1235 function common_log($priority, $msg, $filename=NULL) {
1236         $logfile = common_config('site', 'logfile');
1237         if ($logfile) {
1238                 $log = fopen($logfile, "a");
1239                 if ($log) {
1240                         static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1241                                                                                           'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1242                         $output = date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1243                         fwrite($log, $output);
1244                         fclose($log);
1245                 }
1246         } else {
1247                 common_ensure_syslog();
1248                 syslog($priority, $msg);
1249         }
1250 }
1251
1252 function common_debug($msg, $filename=NULL) {
1253         if ($filename) {
1254                 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1255         } else {
1256                 common_log(LOG_DEBUG, $msg);
1257         }
1258 }
1259
1260 function common_log_db_error(&$object, $verb, $filename=NULL) {
1261         $objstr = common_log_objstring($object);
1262         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1263         common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1264 }
1265
1266 function common_log_objstring(&$object) {
1267         if (is_null($object)) {
1268                 return "NULL";
1269         }
1270         $arr = $object->toArray();
1271         $fields = array();
1272         foreach ($arr as $k => $v) {
1273                 $fields[] = "$k='$v'";
1274         }
1275         $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1276         return $objstring;
1277 }
1278
1279 function common_valid_http_url($url) {
1280         return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1281 }
1282
1283 function common_valid_tag($tag) {
1284         if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1285                 return (Validate::email($matches[1]) ||
1286                                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1287         }
1288         return false;
1289 }
1290
1291 # Does a little before-after block for next/prev page
1292
1293 function common_pagination($have_before, $have_after, $page, $action, $args=NULL) {
1294
1295         if ($have_before || $have_after) {
1296                 common_element_start('div', array('id' => 'pagination'));
1297                 common_element_start('ul', array('id' => 'nav_pagination'));
1298         }
1299
1300         if ($have_before) {
1301                 $pargs = array('page' => $page-1);
1302                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
1303
1304                 common_element_start('li', 'before');
1305                 common_element('a', array('href' => common_local_url($action, $newargs)),
1306                                            _('« After'));
1307                 common_element_end('li');
1308         }
1309
1310         if ($have_after) {
1311                 $pargs = array('page' => $page+1);
1312                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
1313                 common_element_start('li', 'after');
1314                 common_element('a', array('href' => common_local_url($action, $newargs)),
1315                                                    _('Before »'));
1316                 common_element_end('li');
1317         }
1318
1319         if ($have_before || $have_after) {
1320                 common_element_end('ul');
1321                 common_element_end('div');
1322         }
1323 }
1324
1325 /* Following functions are copied from MediaWiki GlobalFunctions.php
1326  * and written by Evan Prodromou. */
1327
1328 function common_accept_to_prefs($accept, $def = '*/*') {
1329         # No arg means accept anything (per HTTP spec)
1330         if(!$accept) {
1331                 return array($def => 1);
1332         }
1333
1334         $prefs = array();
1335
1336         $parts = explode(',', $accept);
1337
1338         foreach($parts as $part) {
1339                 # FIXME: doesn't deal with params like 'text/html; level=1'
1340                 @list($value, $qpart) = explode(';', $part);
1341                 $match = array();
1342                 if(!isset($qpart)) {
1343                         $prefs[$value] = 1;
1344                 } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1345                         $prefs[$value] = $match[1];
1346                 }
1347         }
1348
1349         return $prefs;
1350 }
1351
1352 function common_mime_type_match($type, $avail) {
1353         if(array_key_exists($type, $avail)) {
1354                 return $type;
1355         } else {
1356                 $parts = explode('/', $type);
1357                 if(array_key_exists($parts[0] . '/*', $avail)) {
1358                         return $parts[0] . '/*';
1359                 } elseif(array_key_exists('*/*', $avail)) {
1360                         return '*/*';
1361                 } else {
1362                         return NULL;
1363                 }
1364         }
1365 }
1366
1367 function common_negotiate_type($cprefs, $sprefs) {
1368         $combine = array();
1369
1370         foreach(array_keys($sprefs) as $type) {
1371                 $parts = explode('/', $type);
1372                 if($parts[1] != '*') {
1373                         $ckey = common_mime_type_match($type, $cprefs);
1374                         if($ckey) {
1375                                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1376                         }
1377                 }
1378         }
1379
1380         foreach(array_keys($cprefs) as $type) {
1381                 $parts = explode('/', $type);
1382                 if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1383                         $skey = common_mime_type_match($type, $sprefs);
1384                         if($skey) {
1385                                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1386                         }
1387                 }
1388         }
1389
1390         $bestq = 0;
1391         $besttype = "text/html";
1392
1393         foreach(array_keys($combine) as $type) {
1394                 if($combine[$type] > $bestq) {
1395                         $besttype = $type;
1396                         $bestq = $combine[$type];
1397                 }
1398         }
1399
1400         return $besttype;
1401 }
1402
1403 function common_config($main, $sub) {
1404         global $config;
1405         return isset($config[$main][$sub]) ? $config[$main][$sub] : false;
1406 }
1407
1408 function common_copy_args($from) {
1409         $to = array();
1410         $strip = get_magic_quotes_gpc();
1411         foreach ($from as $k => $v) {
1412                 $to[$k] = ($strip) ? stripslashes($v) : $v;
1413         }
1414         return $to;
1415 }
1416
1417 function common_user_uri(&$user) {
1418         return common_local_url('userbyid', array('id' => $user->id));
1419 }
1420
1421 function common_notice_uri(&$notice) {
1422         return common_local_url('shownotice',
1423                 array('notice' => $notice->id));
1424 }
1425
1426 # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1427
1428 function common_confirmation_code($bits) {
1429         # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1430         static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1431         $chars = ceil($bits/5);
1432         $code = '';
1433         for ($i = 0; $i < $chars; $i++) {
1434                 # XXX: convert to string and back
1435                 $num = hexdec(common_good_rand(1));
1436                 # XXX: randomness is too precious to throw away almost
1437                 # 40% of the bits we get!
1438                 $code .= $codechars[$num%32];
1439         }
1440         return $code;
1441 }
1442
1443 # convert markup to HTML
1444
1445 function common_markup_to_html($c) {
1446         $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1447         $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1448         $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1449         return Markdown($c);
1450 }
1451
1452 function common_profile_avatar_url($profile, $size=AVATAR_PROFILE_SIZE) {
1453         $avatar = $profile->getAvatar($size);
1454         if ($avatar) {
1455                 return common_avatar_display_url($avatar);
1456         } else {
1457                 return common_default_avatar($size);
1458         }
1459 }
1460
1461 function common_profile_uri($profile) {
1462         if (!$profile) {
1463                 return NULL;
1464         }
1465         $user = User::staticGet($profile->id);
1466         if ($user) {
1467                 return $user->uri;
1468         }
1469
1470         $remote = Remote_profile::staticGet($profile->id);
1471         if ($remote) {
1472                 return $remote->uri;
1473         }
1474         # XXX: this is a very bad profile!
1475         return NULL;
1476 }
1477
1478 function common_canonical_sms($sms) {
1479         # strip non-digits
1480         preg_replace('/\D/', '', $sms);
1481         return $sms;
1482 }