]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
44c75156c71252b3053644d2a0f5836b47c3db6d
[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         common_log(LOG_INFO,'Language requested:'.$language.' Locale set:'.$locale_set,__FILE__);
150 }
151
152 define('PAGE_TYPE_PREFS', 'text/html,application/xhtml+xml,application/xml;q=0.3,text/xml;q=0.2');
153
154 function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=NULL) {
155         
156         global $config, $xw;
157
158         common_start_html();
159         
160         common_element_start('head');
161         common_element('title', NULL,
162                                    $pagetitle . " - " . $config['site']['name']);
163         common_element('link', array('rel' => 'stylesheet',
164                                                                  'type' => 'text/css',
165                                                                  'href' => theme_path('display.css') . '?version=' . LACONICA_VERSION,
166                                                                  'media' => 'screen, projection, tv'));
167         foreach (array(6,7) as $ver) {
168                 if (file_exists(theme_file('ie'.$ver.'.css'))) {
169                         # Yes, IE people should be put in jail.
170                         $xw->writeComment('[if lte IE '.$ver.']><link rel="stylesheet" type="text/css" '.
171                                                           'href="'.theme_path('ie'.$ver.'.css').'?version='.LACONICA_VERSION.'" /><![endif]');
172                 }
173         }
174
175         common_element('script', array('type' => 'text/javascript',
176                                                                    'src' => common_path('js/jquery.min.js')),
177                                    ' ');
178         common_element('script', array('type' => 'text/javascript',
179                                                                    'src' => common_path('js/jquery.form.js')),
180                                    ' ');
181         common_element('script', array('type' => 'text/javascript',
182                                                                    'src' => common_path('js/util.js?version='.LACONICA_VERSION)),
183                                    ' ');
184         common_element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
185                                         'href' =>  common_local_url('opensearch', array('type' => 'people')),
186                                         'title' => common_config('site', 'name').' People Search'));
187
188         common_element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
189                                         'href' =>  common_local_url('opensearch', array('type' => 'notice')),
190                                         'title' => common_config('site', 'name').' Notice Search'));
191
192         if ($callable) {
193                 if ($data) {
194                         call_user_func($callable, $data);
195                 } else {
196                         call_user_func($callable);
197                 }
198         }
199         common_element_end('head');
200         common_element_start('body');
201         common_element_start('div', array('id' => 'wrap'));
202         common_element_start('div', array('id' => 'header'));
203         common_nav_menu();
204         if ((isset($config['site']['logo']) && is_string($config['site']['logo']) && (strlen($config['site']['logo']) > 0))
205                 || file_exists(theme_file('logo.png')))
206         {
207                 common_element_start('a', array('href' => common_local_url('public')));
208                 common_element('img', array('src' => isset($config['site']['logo']) ?
209                                                                         ($config['site']['logo']) : theme_path('logo.png'),
210                                                                         'alt' => $config['site']['name'],
211                                                                         'id' => 'logo'));
212                 common_element_end('a');
213         } else {
214                 common_element_start('p', array('id' => 'branding'));
215                 common_element('a', array('href' => common_local_url('public')),
216                                            $config['site']['name']);
217                 common_element_end('p');
218         }
219
220         common_element('h1', 'pagetitle', $pagetitle);
221
222         if ($headercall) {
223                 if ($data) {
224                         call_user_func($headercall, $data);
225                 } else {
226                         call_user_func($headercall);
227                 }
228         }
229         common_element_end('div');
230         common_element_start('div', array('id' => 'content'));
231 }
232
233 function common_start_html($type=NULL) {
234         
235         if (!$type) {
236                 $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : NULL;
237                 
238                 # XXX: allow content negotiation for RDF, RSS, or XRDS
239                 
240                 $type = common_negotiate_type(common_accept_to_prefs($httpaccept),
241                                                                           common_accept_to_prefs(PAGE_TYPE_PREFS));
242                 
243                 if (!$type) {
244                         common_user_error(_('This page is not available in a media type you accept'), 406);
245                         exit(0);
246                 }
247         }
248         
249         header('Content-Type: '.$type);
250
251         common_start_xml('html',
252                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
253                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
254
255         # FIXME: correct language for interface
256
257         $language = common_language();
258
259         common_element_start('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
260                                                                            'xml:lang' => $language,
261                                                                            'lang' => $language));
262 }
263
264 function common_show_footer() {
265         global $xw, $config;
266         common_element_end('div'); # content div
267         common_foot_menu();
268         common_element_start('div', array('id' => 'footer'));
269         common_element_start('div', 'laconica');
270         if (common_config('site', 'broughtby')) {
271                 $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). ');
272         } else {
273                 $instr = _('**%%site.name%%** is a microblogging service. ');
274         }
275         $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);
276     $output = common_markup_to_html($instr);
277     common_raw($output);
278         common_element_end('div');
279         common_element('img', array('id' => 'cc',
280                                                                 'src' => $config['license']['image'],
281                                                                 'alt' => $config['license']['title']));
282         common_element_start('p');
283         common_text(_('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
284         common_element('a', array('class' => 'license',
285                                                           'rel' => 'license',
286                                                           'href' => $config['license']['url']),
287                                    $config['license']['title']);
288         common_text(_('. Contributors should be attributed by full name or nickname.'));
289         common_element_end('p');
290         common_element_end('div');
291         common_element_end('div');
292         common_element_end('body');
293         common_element_end('html');
294         common_end_xml();
295 }
296
297 function common_text($txt) {
298         global $xw;
299         $xw->text($txt);
300 }
301
302 function common_raw($xml) {
303         global $xw;
304         $xw->writeRaw($xml);
305 }
306
307 function common_nav_menu() {
308         $user = common_current_user();
309         common_element_start('ul', array('id' => 'nav'));
310         if ($user) {
311                 common_menu_item(common_local_url('all', array('nickname' => $user->nickname)),
312                                                  _('Home'));
313         }
314         common_menu_item(common_local_url('peoplesearch'), _('Search'));
315         common_menu_item(common_local_url('tags'), _('Tags'));
316         if ($user) {
317                 common_menu_item(common_local_url('profilesettings'),
318                                                  _('Settings'));
319                 common_menu_item(common_local_url('invite'),
320                                                  _('Invite'));
321                 common_menu_item(common_local_url('logout'),
322                                                  _('Logout'));
323         } else {
324                 common_menu_item(common_local_url('login'), _('Login'));
325                 if (!common_config('site', 'closed')) {
326                         common_menu_item(common_local_url('register'), _('Register'));
327                 }
328                 common_menu_item(common_local_url('openidlogin'), _('OpenID'));
329         }
330         common_element_end('ul');
331 }
332
333 function common_foot_menu() {
334         common_element_start('ul', array('id' => 'nav_sub'));
335         common_menu_item(common_local_url('doc', array('title' => 'help')),
336                                          _('Help'));
337         common_menu_item(common_local_url('doc', array('title' => 'about')),
338                                          _('About'));
339         common_menu_item(common_local_url('doc', array('title' => 'faq')),
340                                          _('FAQ'));
341         common_menu_item(common_local_url('doc', array('title' => 'privacy')),
342                                          _('Privacy'));
343         common_menu_item(common_local_url('doc', array('title' => 'source')),
344                                          _('Source'));
345         common_menu_item(common_local_url('doc', array('title' => 'contact')),
346                                          _('Contact'));
347         common_element_end('ul');
348 }
349
350 function common_menu_item($url, $text, $title=NULL, $is_selected=false) {
351         $lattrs = array();
352         if ($is_selected) {
353                 $lattrs['class'] = 'current';
354         }
355         common_element_start('li', $lattrs);
356         $attrs['href'] = $url;
357         if ($title) {
358                 $attrs['title'] = $title;
359         }
360         common_element('a', $attrs, $text);
361         common_element_end('li');
362 }
363
364 function common_input($id, $label, $value=NULL,$instructions=NULL) {
365         common_element_start('p');
366         common_element('label', array('for' => $id), $label);
367         $attrs = array('name' => $id,
368                                    'type' => 'text',
369                                    'class' => 'input_text',
370                                    'id' => $id);
371         if ($value) {
372                 $attrs['value'] = htmlspecialchars($value);
373         }
374         common_element('input', $attrs);
375         if ($instructions) {
376                 common_element('span', 'input_instructions', $instructions);
377         }
378         common_element_end('p');
379 }
380
381 function common_checkbox($id, $label, $checked=false, $instructions=NULL, $value='true', $disabled=false)
382 {
383         common_element_start('p');
384         $attrs = array('name' => $id,
385                                    'type' => 'checkbox',
386                                    'class' => 'checkbox',
387                                    'id' => $id);
388         if ($value) {
389                 $attrs['value'] = htmlspecialchars($value);
390         }
391         if ($checked) {
392                 $attrs['checked'] = 'checked';
393         }
394         if ($disabled) {
395                 $attrs['disabled'] = 'true';
396         }
397         common_element('input', $attrs);
398         # XXX: use a <label>
399         common_text(' ');
400         common_element('span', 'checkbox_label', $label);
401         common_text(' ');
402         if ($instructions) {
403                 common_element('span', 'input_instructions', $instructions);
404         }
405         common_element_end('p');
406 }
407
408 function common_dropdown($id, $label, $content, $instructions=NULL, $blank_select=FALSE, $selected=NULL) {
409         common_element_start('p');
410         common_element('label', array('for' => $id), $label);
411         common_element_start('select', array('id' => $id, 'name' => $id));
412         if ($blank_select) {
413                 common_element('option', array('value' => ''));
414         }
415         foreach ($content as $value => $option) {
416                 if ($value == $selected) {
417                         common_element('option', array('value' => $value, 'selected' => $value), $option);
418                 } else {
419                         common_element('option', array('value' => $value), $option);
420                 }
421         }
422         common_element_end('select');
423         if ($instructions) {
424                 common_element('span', 'input_instructions', $instructions);
425         }
426         common_element_end('p');
427 }
428 function common_hidden($id, $value) {
429         common_element('input', array('name' => $id,
430                                                                   'type' => 'hidden',
431                                                                   'id' => $id,
432                                                                   'value' => $value));
433 }
434
435 function common_password($id, $label, $instructions=NULL) {
436         common_element_start('p');
437         common_element('label', array('for' => $id), $label);
438         $attrs = array('name' => $id,
439                                    'type' => 'password',
440                                    'class' => 'password',
441                                    'id' => $id);
442         common_element('input', $attrs);
443         if ($instructions) {
444                 common_element('span', 'input_instructions', $instructions);
445         }
446         common_element_end('p');
447 }
448
449 function common_submit($id, $label, $cls='submit') {
450         global $xw;
451         common_element_start('p');
452         common_element('input', array('type' => 'submit',
453                                                                   'id' => $id,
454                                                                   'name' => $id,
455                                                                   'class' => $cls,
456                                                                   'value' => $label));
457         common_element_end('p');
458 }
459
460 function common_textarea($id, $label, $content=NULL, $instructions=NULL) {
461         common_element_start('p');
462         common_element('label', array('for' => $id), $label);
463         common_element('textarea', array('rows' => 3,
464                                                                          'cols' => 40,
465                                                                          'name' => $id,
466                                                                          'id' => $id),
467                                    ($content) ? $content : '');
468         if ($instructions) {
469                 common_element('span', 'input_instructions', $instructions);
470         }
471         common_element_end('p');
472 }
473
474 function common_timezone() {
475         if (common_logged_in()) {
476                 $user = common_current_user();
477                 if ($user->timezone) {
478                         return $user->timezone;
479                 }
480         }
481
482         global $config;
483         return $config['site']['timezone'];
484 }
485
486 function common_language() {
487
488         // If there is a user logged in and they've set a language preference
489         // then return that one...
490         if (common_logged_in()) {
491                 $user = common_current_user();
492                 $user_language = $user->language;
493                 if ($user_language)
494                         return $user_language;
495         }
496
497         // Otherwise, find the best match for the languages requested by the
498         // user's browser...
499         $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : NULL;
500         if (!empty($httplang)) {
501                 $language = client_prefered_language($httplang);
502                 if ($language)
503                         return $language;
504         }
505
506         // Finally, if none of the above worked, use the site's default...
507         return common_config('site', 'language');
508 }
509 # salted, hashed passwords are stored in the DB
510
511 function common_munge_password($password, $id) {
512         return md5($password . $id);
513 }
514
515 # check if a username exists and has matching password
516 function common_check_user($nickname, $password) {
517         # NEVER allow blank passwords, even if they match the DB
518         if (mb_strlen($password) == 0) {
519                 return false;
520         }
521         $user = User::staticGet('nickname', $nickname);
522         if (is_null($user)) {
523                 return false;
524         } else {
525                 if (0 == strcmp(common_munge_password($password, $user->id),
526                                                 $user->password)) {
527                         return $user;
528                 } else {
529                         return false;
530                 }
531         }
532 }
533
534 # is the current user logged in?
535 function common_logged_in() {
536         return (!is_null(common_current_user()));
537 }
538
539 function common_have_session() {
540         return (0 != strcmp(session_id(), ''));
541 }
542
543 function common_ensure_session() {
544         if (!common_have_session()) {
545                 @session_start();
546         }
547 }
548
549 # Three kinds of arguments:
550 # 1) a user object
551 # 2) a nickname
552 # 3) NULL to clear
553
554 function common_set_user($user) {
555         if (is_null($user) && common_have_session()) {
556                 unset($_SESSION['userid']);
557                 return true;
558         } else if (is_string($user)) {
559                 $nickname = $user;
560                 $user = User::staticGet('nickname', $nickname);
561         } else if (!($user instanceof User)) {
562                 return false;
563         }
564
565         if ($user) {
566                 common_ensure_session();
567                 $_SESSION['userid'] = $user->id;
568                 return $user;
569         }
570         return false;
571 }
572
573 function common_set_cookie($key, $value, $expiration=0) {
574         $path = common_config('site', 'path');
575         $server = common_config('site', 'server');
576
577         if ($path && ($path != '/')) {
578                 $cookiepath = '/' . $path . '/';
579         } else {
580                 $cookiepath = '/';
581         }
582         return setcookie($key,
583                          $value,
584                                  $expiration,
585                                          $cookiepath,
586                                      $server);
587 }
588
589 define('REMEMBERME', 'rememberme');
590 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60);
591
592 function common_rememberme($user=NULL) {
593         if (!$user) {
594                 $user = common_current_user();
595                 if (!$user) {
596                         common_debug('No current user to remember', __FILE__);
597                         return false;
598                 }
599         }
600         $rm = new Remember_me();
601         $rm->code = common_good_rand(16);
602         $rm->user_id = $user->id;
603         $result = $rm->insert();
604         if (!$result) {
605                 common_log_db_error($rm, 'INSERT', __FILE__);
606                 common_debug('Error adding rememberme record for ' . $user->nickname, __FILE__);
607                 return false;
608         }
609         common_log(LOG_INFO, 'adding rememberme cookie for ' . $user->nickname);
610         common_set_cookie(REMEMBERME,
611                                           implode(':', array($rm->user_id, $rm->code)),
612                                           time() + REMEMBERME_EXPIRY);
613         return true;
614 }
615
616 function common_remembered_user() {
617         $user = NULL;
618         # Try to remember
619         $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : '';
620         if ($packed) {
621                 list($id, $code) = explode(':', $packed);
622                 if ($id && $code) {
623                         $rm = Remember_me::staticGet($code);
624                         if ($rm && ($rm->user_id == $id)) {
625                                 $user = User::staticGet($rm->user_id);
626                                 if ($user) {
627                                         # successful!
628                                         $result = $rm->delete();
629                                         if (!$result) {
630                                                 common_log_db_error($rm, 'DELETE', __FILE__);
631                                                 $user = NULL;
632                                         } else {
633                                                 common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
634                                                 common_set_user($user->nickname);
635                                                 common_real_login(false);
636                                                 # We issue a new cookie, so they can log in
637                                                 # automatically again after this session
638                                                 common_rememberme($user);
639                                         }
640                                 }
641                         }
642                 }
643         }
644         return $user;
645 }
646
647 # must be called with a valid user!
648
649 function common_forgetme() {
650         common_set_cookie(REMEMBERME, '', 0);
651 }
652
653 # who is the current user?
654 function common_current_user() {
655         if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
656                 common_ensure_session();
657                 $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
658                 if ($id) {
659                         # note: this should cache
660                         $user = User::staticGet($id);
661                         return $user;
662                 }
663         }
664         # that didn't work; try to remember
665         $user = common_remembered_user();
666         if ($user) {
667                 common_debug("Got User " . $user->nickname);
668             common_debug("Faking session on remembered user");
669             $_SESSION['userid'] = $user->id;
670         }
671         return $user;
672 }
673
674 # Logins that are 'remembered' aren't 'real' -- they're subject to
675 # cookie-stealing. So, we don't let them do certain things. New reg,
676 # OpenID, and password logins _are_ real.
677
678 function common_real_login($real=true) {
679         common_ensure_session();
680         $_SESSION['real_login'] = $real;
681 }
682
683 function common_is_real_login() {
684         return common_logged_in() && $_SESSION['real_login'];
685 }
686
687 # get canonical version of nickname for comparison
688 function common_canonical_nickname($nickname) {
689         # XXX: UTF-8 canonicalization (like combining chars)
690         return strtolower($nickname);
691 }
692
693 # get canonical version of email for comparison
694 function common_canonical_email($email) {
695         # XXX: canonicalize UTF-8
696         # XXX: lcase the domain part
697         return $email;
698 }
699
700 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$_+!*();/?:~-]))');
701
702 function common_render_content($text, $notice) {
703         $r = common_render_text($text);
704         $id = $notice->profile_id;
705         $r = preg_replace('/(^|\s+)@([A-Za-z0-9]{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
706         $r = preg_replace('/^T ([A-Z0-9]{1,64}) /e', "'T '.common_at_link($id, '\\1').' '", $r);
707         return $r;
708 }
709
710 function common_render_text($text) {
711         $r = htmlspecialchars($text);
712
713         $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
714         $r = preg_replace_callback('@https?://[^\]>\s]+@', 'common_render_uri_thingy', $r);
715         $r = preg_replace('/(^|\s+)#([A-Za-z0-9_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
716         # XXX: machine tags
717         return $r;
718 }
719
720 function common_render_uri_thingy($matches) {
721         $uri = $matches[0];
722         $trailer = '';
723
724         # Some heuristics for extracting URIs from surrounding punctuation
725         # Strip from trailing text...
726         if (preg_match('/^(.*)([,.:"\']+)$/', $uri, $matches)) {
727                 $uri = $matches[1];
728                 $trailer = $matches[2];
729         }
730
731         $pairs = array(
732                 ']' => '[', # technically disallowed in URIs, but used in Java docs
733                 ')' => '(', # far too frequent in Wikipedia and MSDN
734         );
735         $final = substr($uri, -1, 1);
736         if (isset($pairs[$final])) {
737                 $openers = substr_count($uri, $pairs[$final]);
738                 $closers = substr_count($uri, $final);
739                 if ($closers > $openers) {
740                         // Assume the paren was opened outside the URI
741                         $uri = substr($uri, 0, -1);
742                         $trailer = $final . $trailer;
743                 }
744         }
745         return '<a href="' . $uri . '" class="extlink">' . $uri . '</a>' . $trailer;
746 }
747
748 function common_tag_link($tag) {
749         $canonical = common_canonical_tag($tag);
750         $url = common_local_url('tag', array('tag' => $canonical));
751         return '<a href="' . htmlspecialchars($url) . '" rel="tag" class="hashlink">' . htmlspecialchars($tag) . '</a>';
752 }
753
754 function common_canonical_tag($tag) {  
755         return strtolower(str_replace(array('-', '_', '.'), '', $tag));
756 }
757
758 function common_at_link($sender_id, $nickname) {
759         $sender = Profile::staticGet($sender_id);
760         $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
761         if ($recipient) {
762                 return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink">'.$nickname.'</a>';
763         } else {
764                 return $nickname;
765         }
766 }
767
768 function common_relative_profile($sender, $nickname, $dt=NULL) {
769         # Try to find profiles this profile is subscribed to that have this nickname
770         $recipient = new Profile();
771         # XXX: use a join instead of a subquery
772         $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
773         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
774         if ($recipient->find(TRUE)) {
775                 # XXX: should probably differentiate between profiles with
776                 # the same name by date of most recent update
777                 return $recipient;
778         }
779         # Try to find profiles that listen to this profile and that have this nickname
780         $recipient = new Profile();
781         # XXX: use a join instead of a subquery
782         $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
783         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
784         if ($recipient->find(TRUE)) {
785                 # XXX: should probably differentiate between profiles with
786                 # the same name by date of most recent update
787                 return $recipient;
788         }
789         # If this is a local user, try to find a local user with that nickname.
790         $sender = User::staticGet($sender->id);
791         if ($sender) {
792                 $recipient_user = User::staticGet('nickname', $nickname);
793                 if ($recipient_user) {
794                         return $recipient_user->getProfile();
795                 }
796         }
797         # Otherwise, no links. @messages from local users to remote users,
798         # or from remote users to other remote users, are just
799         # outside our ability to make intelligent guesses about
800         return NULL;
801 }
802
803 // where should the avatar go for this user?
804
805 function common_avatar_filename($id, $extension, $size=NULL, $extra=NULL) {
806         global $config;
807
808         if ($size) {
809                 return $id . '-' . $size . (($extra) ? ('-' . $extra) : '') . $extension;
810         } else {
811                 return $id . '-original' . (($extra) ? ('-' . $extra) : '') . $extension;
812         }
813 }
814
815 function common_avatar_path($filename) {
816         global $config;
817         return INSTALLDIR . '/avatar/' . $filename;
818 }
819
820 function common_avatar_url($filename) {
821         return common_path('avatar/'.$filename);
822 }
823
824 function common_avatar_display_url($avatar) {
825         $server = common_config('avatar', 'server');
826         if ($server) {
827                 return 'http://'.$server.'/'.$avatar->filename;
828         } else {
829                 return $avatar->url;
830         }
831 }
832
833 function common_default_avatar($size) {
834         static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
835                                                           AVATAR_STREAM_SIZE => 'stream',
836                                                           AVATAR_MINI_SIZE => 'mini');
837         return theme_path('default-avatar-'.$sizenames[$size].'.png');
838 }
839
840 function common_local_url($action, $args=NULL, $fragment=NULL) {
841         $url = NULL;
842         if (common_config('site','fancy')) {
843                 $url = common_fancy_url($action, $args);
844         } else {
845                 $url = common_simple_url($action, $args);
846         }
847         if (!is_null($fragment)) {
848                 $url .= '#'.$fragment;
849         }
850         return $url;
851 }
852
853 function common_fancy_url($action, $args=NULL) {
854         switch (strtolower($action)) {
855          case 'public':
856                 if ($args && isset($args['page'])) {
857                         return common_path('?page=' . $args['page']);
858                 } else {
859                         return common_path('');
860                 }
861          case 'publicrss':
862                 return common_path('rss');
863          case 'publicxrds':
864                 return common_path('xrds');
865          case 'opensearch':
866                 if ($args && $args['type']) {
867                         return common_path('opensearch/'.$args['type']);
868                 } else {
869                         return common_path('opensearch/people');
870                 }
871          case 'doc':
872                 return common_path('doc/'.$args['title']);
873          case 'login':
874          case 'logout':
875          case 'subscribe':
876          case 'unsubscribe':
877          case 'invite':
878                 return common_path('main/'.$action);
879          case 'register':
880                 if ($args && $args['code']) {
881                         return common_path('main/register/'.$args['code']);
882                 } else {
883                         return common_path('main/register');
884                 }
885          case 'remotesubscribe':
886                 if ($args && $args['nickname']) {
887                         return common_path('main/remote?nickname=' . $args['nickname']);
888                 } else {
889                         return common_path('main/remote');
890                 }
891          case 'openidlogin':
892                 return common_path('main/openid');
893          case 'profilesettings':
894                 return common_path('settings/profile');
895          case 'emailsettings':
896                 return common_path('settings/email');
897          case 'openidsettings':
898                 return common_path('settings/openid');
899          case 'smssettings':
900                 return common_path('settings/sms');
901          case 'twittersettings':
902                 return common_path('settings/twitter');
903          case 'newnotice':
904                 if ($args && $args['replyto']) {
905                         return common_path('notice/new?replyto='.$args['replyto']);
906                 } else {
907                         return common_path('notice/new');
908                 }
909          case 'shownotice':
910                 return common_path('notice/'.$args['notice']);
911          case 'deletenotice':
912                 if ($args && $args['notice']) {
913                         return common_path('notice/delete/'.$args['notice']);
914                 } else {
915                         return common_path('notice/delete');
916                 }
917          case 'xrds':
918          case 'foaf':
919                 return common_path($args['nickname'].'/'.$action);
920          case 'subscriptions':
921          case 'subscribers':
922          case 'all':
923          case 'replies':
924          case 'inbox':
925          case 'outbox':
926                 if ($args && isset($args['page'])) {
927                         return common_path($args['nickname'].'/'.$action.'?page=' . $args['page']);
928                 } else {
929                         return common_path($args['nickname'].'/'.$action);
930                 }
931          case 'allrss':
932                 return common_path($args['nickname'].'/all/rss');
933          case 'repliesrss':
934                 return common_path($args['nickname'].'/replies/rss');
935          case 'userrss':
936                 return common_path($args['nickname'].'/rss');
937          case 'showstream':
938                 if ($args && isset($args['page'])) {
939                         return common_path($args['nickname'].'?page=' . $args['page']);
940                 } else {
941                         return common_path($args['nickname']);
942                 }
943          case 'confirmaddress':
944                 return common_path('main/confirmaddress/'.$args['code']);
945          case 'userbyid':
946                 return common_path('user/'.$args['id']);
947          case 'recoverpassword':
948             $path = 'main/recoverpassword';
949             if ($args['code']) {
950                 $path .= '/' . $args['code'];
951                 }
952             return common_path($path);
953          case 'imsettings':
954                 return common_path('settings/im');
955          case 'peoplesearch':
956                 return common_path('search/people' . (($args) ? ('?' . http_build_query($args)) : ''));
957          case 'noticesearch':
958                 return common_path('search/notice' . (($args) ? ('?' . http_build_query($args)) : ''));
959          case 'noticesearchrss':
960                 return common_path('search/notice/rss' . (($args) ? ('?' . http_build_query($args)) : ''));
961          case 'avatarbynickname':
962                 return common_path($args['nickname'].'/avatar/'.$args['size']);
963          case 'tag':
964             if (isset($args['tag']) && $args['tag']) {
965                         $path = 'tag/' . $args['tag'];
966                         unset($args['tag']);
967                 } else {
968                         $path = 'tags';
969                 }
970                 return common_path($path . (($args) ? ('?' . http_build_query($args)) : ''));
971          case 'tags':
972                 return common_path('tags' . (($args) ? ('?' . http_build_query($args)) : ''));
973          case 'favor':
974                 return common_path('main/favor');
975          case 'disfavor':
976                 return common_path('main/disfavor');
977          case 'showfavorites':
978                 if ($args && isset($args['page'])) {
979                         return common_path($args['nickname'].'/favorites?page=' . $args['page']);
980                 } else {
981                         return common_path($args['nickname'].'/favorites');
982                 }
983          case 'favoritesrss':
984                 return common_path($args['nickname'].'/favorites/rss');
985          case 'showmessage':
986                 return common_path('message/' . $args['message']);
987          case 'newmessage':
988                 return common_path('message/new' . (($args) ? ('?' . http_build_query($args)) : ''));
989          case 'api':
990                 # XXX: do fancy URLs for all the API methods
991                 switch (strtolower($args['apiaction'])) {
992                  case 'statuses':
993                         switch (strtolower($args['method'])) {
994                          case 'user_timeline.rss':
995                                 return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss');
996                          case 'user_timeline.atom':                             
997                                 return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss');
998                          case 'user_timeline.rss':
999                                 return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss');
1000                          case 'user_timeline.atom':                             
1001                                 return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss');
1002                          default: return common_simple_url($action, $args);
1003                         }
1004                  default: return common_simple_url($action, $args);
1005                 }
1006          case 'sup':
1007                 if ($args && isset($args['seconds'])) {
1008                         return common_path('main/sup?seconds='.$args['seconds']);                       
1009                 } else {
1010                         return common_path('main/sup');
1011                 }
1012          default:
1013                 return common_simple_url($action, $args);
1014         }
1015 }
1016
1017 function common_simple_url($action, $args=NULL) {
1018         global $config;
1019         /* XXX: pretty URLs */
1020         $extra = '';
1021         if ($args) {
1022                 foreach ($args as $key => $value) {
1023                         $extra .= "&${key}=${value}";
1024                 }
1025         }
1026         return common_path("index.php?action=${action}${extra}");
1027 }
1028
1029 function common_path($relative) {
1030         global $config;
1031         $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
1032         return "http://".$config['site']['server'].'/'.$pathpart.$relative;
1033 }
1034
1035 function common_date_string($dt) {
1036         // XXX: do some sexy date formatting
1037         // return date(DATE_RFC822, $dt);
1038         $t = strtotime($dt);
1039         $now = time();
1040         $diff = $now - $t;
1041
1042         if ($now < $t) { # that shouldn't happen!
1043                 return common_exact_date($dt);
1044         } else if ($diff < 60) {
1045                 return _('a few seconds ago');
1046         } else if ($diff < 92) {
1047                 return _('about a minute ago');
1048         } else if ($diff < 3300) {
1049                 return sprintf(_('about %d minutes ago'), round($diff/60));
1050         } else if ($diff < 5400) {
1051                 return _('about an hour ago');
1052         } else if ($diff < 22 * 3600) {
1053                 return sprintf(_('about %d hours ago'), round($diff/3600));
1054         } else if ($diff < 37 * 3600) {
1055                 return _('about a day ago');
1056         } else if ($diff < 24 * 24 * 3600) {
1057                 return sprintf(_('about %d days ago'), round($diff/(24*3600)));
1058         } else if ($diff < 46 * 24 * 3600) {
1059                 return _('about a month ago');
1060         } else if ($diff < 330 * 24 * 3600) {
1061                 return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
1062         } else if ($diff < 480 * 24 * 3600) {
1063                 return _('about a year ago');
1064         } else {
1065                 return common_exact_date($dt);
1066         }
1067 }
1068
1069 function common_exact_date($dt) {
1070     static $_utc;
1071     static $_siteTz;
1072
1073     if (!$_utc) {
1074         $_utc = new DateTimeZone('UTC');
1075         $_siteTz = new DateTimeZone(common_timezone());
1076     }
1077
1078         $dateStr = date('d F Y H:i:s', strtotime($dt));
1079         $d = new DateTime($dateStr, $_utc);
1080         $d->setTimezone($_siteTz);
1081         return $d->format(DATE_RFC850);
1082 }
1083
1084 function common_date_w3dtf($dt) {
1085         $dateStr = date('d F Y H:i:s', strtotime($dt));
1086         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1087         $d->setTimezone(new DateTimeZone(common_timezone()));
1088         return $d->format(DATE_W3C);
1089 }
1090
1091 function common_date_rfc2822($dt) {
1092         $dateStr = date('d F Y H:i:s', strtotime($dt));
1093         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1094         $d->setTimezone(new DateTimeZone(common_timezone()));
1095         return $d->format('r');
1096 }
1097
1098 function common_date_iso8601($dt) {
1099         $dateStr = date('d F Y H:i:s', strtotime($dt));
1100         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1101         $d->setTimezone(new DateTimeZone(common_timezone()));
1102         return $d->format('c');
1103 }
1104
1105 function common_sql_now() {
1106         return strftime('%Y-%m-%d %H:%M:%S', time());
1107 }
1108
1109 function common_redirect($url, $code=307) {
1110         static $status = array(301 => "Moved Permanently",
1111                                                    302 => "Found",
1112                                                    303 => "See Other",
1113                                                    307 => "Temporary Redirect");
1114         header("Status: ${code} $status[$code]");
1115         header("Location: $url");
1116
1117         common_start_xml('a',
1118                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
1119                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
1120         common_element('a', array('href' => $url), $url);
1121         common_end_xml();
1122     exit;
1123 }
1124
1125 function common_save_replies($notice) {
1126         # Alternative reply format
1127         $tname = false;
1128         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $notice->content, $match)) {
1129                 $tname = $match[1];
1130         }
1131         # extract all @messages
1132         $cnt = preg_match_all('/(?:^|\s)@([a-z0-9]{1,64})/', $notice->content, $match);
1133         if (!$cnt && !$tname) {
1134                 return true;
1135         }
1136         # XXX: is there another way to make an array copy?
1137         $names = ($tname) ? array_unique(array_merge(array(strtolower($tname)), $match[1])) : array_unique($match[1]);
1138         $sender = Profile::staticGet($notice->profile_id);
1139         # store replied only for first @ (what user/notice what the reply directed,
1140         # we assume first @ is it)
1141         for ($i=0; $i<count($names); $i++) {
1142                 $nickname = $names[$i];
1143                 $recipient = common_relative_profile($sender, $nickname, $notice->created);
1144                 if (!$recipient) {
1145                         continue;
1146                 }
1147                 if ($i == 0 && ($recipient->id != $sender->id) && !$notice->reply_to) { # Don't save reply to self
1148                         $reply_for = $recipient;
1149                         $recipient_notice = $reply_for->getCurrentNotice();
1150                         if ($recipient_notice) {
1151                                 $orig = clone($notice);
1152                                 $notice->reply_to = $recipient_notice->id;
1153                                 $notice->update($orig);
1154                         }
1155                 }
1156                 $reply = new Reply();
1157                 $reply->notice_id = $notice->id;
1158                 $reply->profile_id = $recipient->id;
1159                 $id = $reply->insert();
1160                 if (!$id) {
1161                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1162                         common_log(LOG_ERR, 'DB error inserting reply: ' . $last_error->message);
1163                         common_server_error(sprintf(_('DB error inserting reply: %s'), $last_error->message));
1164                         return;
1165                 }
1166         }
1167 }
1168
1169 function common_broadcast_notice($notice, $remote=false) {
1170
1171         // Check to see if notice should go to Twitter
1172         $flink = Foreign_link::getForeignLink($notice->profile_id, 1); // 1 == Twitter
1173         if (($flink->noticesync & FOREIGN_NOTICE_SEND) == FOREIGN_NOTICE_SEND) {
1174
1175                 // If it's not a Twitter-style reply, or if the user WANTS to send replies...
1176
1177                 if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) ||
1178                         (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY)) {
1179
1180                         $result = common_twitter_broadcast($notice, $flink);
1181
1182                         if (!$result) {
1183                                 common_debug('Unable to send notice: ' . $notice->id . ' to Twitter.', __FILE__);
1184                         }
1185                 }
1186         }
1187
1188         if (common_config('queue', 'enabled')) {
1189                 # Do it later!
1190                 return common_enqueue_notice($notice);
1191         } else {
1192                 return common_real_broadcast($notice, $remote);
1193         }
1194 }
1195
1196 function common_twitter_broadcast($notice, $flink) {
1197         global $config;
1198         $success = true;
1199         $fuser = $flink->getForeignUser();
1200         $twitter_user = $fuser->nickname;
1201         $twitter_password = $flink->credentials;
1202         $uri = 'http://www.twitter.com/statuses/update.json';
1203
1204         // XXX: Hack to get around PHP cURL's use of @ being a a meta character
1205         $statustxt = preg_replace('/^@/', ' @', $notice->content);
1206
1207         $options = array(
1208                 CURLOPT_USERPWD                 => "$twitter_user:$twitter_password",
1209                 CURLOPT_POST                    => true,
1210                 CURLOPT_POSTFIELDS              => array(
1211                                                                         'status'        => $statustxt,
1212                                                                         'source'        => $config['integration']['source']
1213                                                                         ),
1214                 CURLOPT_RETURNTRANSFER  => true,
1215                 CURLOPT_FAILONERROR             => true,
1216                 CURLOPT_HEADER                  => false,
1217                 CURLOPT_FOLLOWLOCATION  => true,
1218                 CURLOPT_USERAGENT               => "Laconica",
1219                 CURLOPT_CONNECTTIMEOUT  => 120,  // XXX: Scary!!!! How long should this be?
1220                 CURLOPT_TIMEOUT                 => 120
1221         );
1222
1223         $ch = curl_init($uri);
1224     curl_setopt_array($ch, $options);
1225     $data = curl_exec($ch);
1226     $errmsg = curl_error($ch);
1227
1228         if ($errmsg) {
1229                 common_debug("cURL error: $errmsg - trying to send notice for $twitter_user.",
1230                         __FILE__);
1231                 $success = false;
1232         }
1233
1234         curl_close($ch);
1235
1236         if (!$data) {
1237                 common_debug("No data returned by Twitter's API trying to send update for $twitter_user",
1238                         __FILE__);
1239                 $success = false;
1240         }
1241
1242         // Twitter should return a status
1243         $status = json_decode($data);
1244
1245         if (!$status->id) {
1246                 common_debug("Unexpected data returned by Twitter API trying to send update for $twitter_user",
1247                         __FILE__);
1248                 $success = false;
1249         }
1250
1251         return $success;
1252 }
1253
1254 # Stick the notice on the queue
1255
1256 function common_enqueue_notice($notice) {
1257         foreach (array('jabber', 'omb', 'sms', 'public') as $transport) {
1258                 $qi = new Queue_item();
1259                 $qi->notice_id = $notice->id;
1260                 $qi->transport = $transport;
1261                 $qi->created = $notice->created;
1262         $result = $qi->insert();
1263                 if (!$result) {
1264                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1265                         common_log(LOG_ERR, 'DB error inserting queue item: ' . $last_error->message);
1266                         return false;
1267                 }
1268                 common_log(LOG_DEBUG, 'complete queueing notice ID = ' . $notice->id . ' for ' . $transport);
1269         }
1270         return $result;
1271 }
1272
1273 function common_dequeue_notice($notice) {
1274         $qi = Queue_item::staticGet($notice->id);
1275         if ($qi) {
1276                 $result = $qi->delete();
1277                 if (!$result) {
1278                     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1279                     common_log(LOG_ERR, 'DB error deleting queue item: ' . $last_error->message);
1280                     return false;
1281                 }
1282                 common_log(LOG_DEBUG, 'complete dequeueing notice ID = ' . $notice->id);
1283                 return $result;
1284         } else {
1285             return false;
1286         }
1287 }
1288
1289 function common_real_broadcast($notice, $remote=false) {
1290         $success = true;
1291         if (!$remote) {
1292                 # Make sure we have the OMB stuff
1293                 require_once(INSTALLDIR.'/lib/omb.php');
1294                 $success = omb_broadcast_remote_subscribers($notice);
1295                 if (!$success) {
1296                         common_log(LOG_ERR, 'Error in OMB broadcast for notice ' . $notice->id);
1297                 }
1298         }
1299         if ($success) {
1300                 require_once(INSTALLDIR.'/lib/jabber.php');
1301                 $success = jabber_broadcast_notice($notice);
1302                 if (!$success) {
1303                         common_log(LOG_ERR, 'Error in jabber broadcast for notice ' . $notice->id);
1304                 }
1305         }
1306         if ($success) {
1307                 require_once(INSTALLDIR.'/lib/mail.php');
1308                 $success = mail_broadcast_notice_sms($notice);
1309                 if (!$success) {
1310                         common_log(LOG_ERR, 'Error in sms broadcast for notice ' . $notice->id);
1311                 }
1312         }
1313         if ($success) {
1314                 $success = jabber_public_notice($notice);
1315                 if (!$success) {
1316                         common_log(LOG_ERR, 'Error in public broadcast for notice ' . $notice->id);
1317                 }
1318         }
1319         // XXX: broadcast notices to other IM
1320         return $success;
1321 }
1322
1323 function common_broadcast_profile($profile) {
1324         // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
1325         require_once(INSTALLDIR.'/lib/omb.php');
1326         omb_broadcast_profile($profile);
1327         // XXX: Other broadcasts...?
1328         return true;
1329 }
1330
1331 function common_profile_url($nickname) {
1332         return common_local_url('showstream', array('nickname' => $nickname));
1333 }
1334
1335 # Don't call if nobody's logged in
1336
1337 function common_notice_form($action=NULL, $content=NULL) {
1338         $user = common_current_user();
1339         assert(!is_null($user));
1340         common_element_start('form', array('id' => 'status_form',
1341                                                                            'method' => 'post',
1342                                                                            'action' => common_local_url('newnotice')));
1343         common_element_start('p');
1344         common_element('label', array('for' => 'status_textarea',
1345                                                                   'id' => 'status_label'),
1346                                    sprintf(_('What\'s up, %s?'), $user->nickname));
1347         common_element('span', array('id' => 'counter', 'class' => 'counter'), '140');
1348         common_element('textarea', array('id' => 'status_textarea',
1349                                                                          'cols' => 60,
1350                                                                          'rows' => 3,
1351                                                                          'name' => 'status_textarea'),
1352                                    ($content) ? $content : '');
1353         if ($action) {
1354                 common_hidden('returnto', $action);
1355         }
1356         # set by JavaScript
1357         common_hidden('inreplyto', 'false');
1358         common_element('input', array('id' => 'status_submit',
1359                                                                   'name' => 'status_submit',
1360                                                                   'type' => 'submit',
1361                                                                   'value' => _('Send')));
1362         common_element_end('p');
1363         common_element_end('form');
1364 }
1365
1366 # Should make up a reasonable root URL
1367
1368 function common_root_url() {
1369         return common_path('');
1370 }
1371
1372 # returns $bytes bytes of random data as a hexadecimal string
1373 # "good" here is a goal and not a guarantee
1374
1375 function common_good_rand($bytes) {
1376         # XXX: use random.org...?
1377         if (file_exists('/dev/urandom')) {
1378                 return common_urandom($bytes);
1379         } else { # FIXME: this is probably not good enough
1380                 return common_mtrand($bytes);
1381         }
1382 }
1383
1384 function common_urandom($bytes) {
1385         $h = fopen('/dev/urandom', 'rb');
1386         # should not block
1387         $src = fread($h, $bytes);
1388         fclose($h);
1389         $enc = '';
1390         for ($i = 0; $i < $bytes; $i++) {
1391                 $enc .= sprintf("%02x", (ord($src[$i])));
1392         }
1393         return $enc;
1394 }
1395
1396 function common_mtrand($bytes) {
1397         $enc = '';
1398         for ($i = 0; $i < $bytes; $i++) {
1399                 $enc .= sprintf("%02x", mt_rand(0, 255));
1400         }
1401         return $enc;
1402 }
1403
1404 function common_set_returnto($url) {
1405         common_ensure_session();
1406         $_SESSION['returnto'] = $url;
1407 }
1408
1409 function common_get_returnto() {
1410         common_ensure_session();
1411         return $_SESSION['returnto'];
1412 }
1413
1414 function common_timestamp() {
1415         return date('YmdHis');
1416 }
1417
1418 function common_ensure_syslog() {
1419         static $initialized = false;
1420         if (!$initialized) {
1421                 global $config;
1422                 openlog($config['syslog']['appname'], 0, LOG_USER);
1423                 $initialized = true;
1424         }
1425 }
1426
1427 function common_log($priority, $msg, $filename=NULL) {
1428         $logfile = common_config('site', 'logfile');
1429         if ($logfile) {
1430                 $log = fopen($logfile, "a");
1431                 if ($log) {
1432                         static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1433                                                                                           'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1434                         $output = date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1435                         fwrite($log, $output);
1436                         fclose($log);
1437                 }
1438         } else {
1439                 common_ensure_syslog();
1440                 syslog($priority, $msg);
1441         }
1442 }
1443
1444 function common_debug($msg, $filename=NULL) {
1445         if ($filename) {
1446                 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1447         } else {
1448                 common_log(LOG_DEBUG, $msg);
1449         }
1450 }
1451
1452 function common_log_db_error(&$object, $verb, $filename=NULL) {
1453         $objstr = common_log_objstring($object);
1454         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1455         common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1456 }
1457
1458 function common_log_objstring(&$object) {
1459         if (is_null($object)) {
1460                 return "NULL";
1461         }
1462         $arr = $object->toArray();
1463         $fields = array();
1464         foreach ($arr as $k => $v) {
1465                 $fields[] = "$k='$v'";
1466         }
1467         $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1468         return $objstring;
1469 }
1470
1471 function common_valid_http_url($url) {
1472         return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1473 }
1474
1475 function common_valid_tag($tag) {
1476         if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1477                 return (Validate::email($matches[1]) ||
1478                                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1479         }
1480         return false;
1481 }
1482
1483 # Does a little before-after block for next/prev page
1484
1485 function common_pagination($have_before, $have_after, $page, $action, $args=NULL) {
1486
1487         if ($have_before || $have_after) {
1488                 common_element_start('div', array('id' => 'pagination'));
1489                 common_element_start('ul', array('id' => 'nav_pagination'));
1490         }
1491
1492         if ($have_before) {
1493                 $pargs = array('page' => $page-1);
1494                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
1495
1496                 common_element_start('li', 'before');
1497                 common_element('a', array('href' => common_local_url($action, $newargs)),
1498                                            _('« After'));
1499                 common_element_end('li');
1500         }
1501
1502         if ($have_after) {
1503                 $pargs = array('page' => $page+1);
1504                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
1505                 common_element_start('li', 'after');
1506                 common_element('a', array('href' => common_local_url($action, $newargs)),
1507                                                    _('Before »'));
1508                 common_element_end('li');
1509         }
1510
1511         if ($have_before || $have_after) {
1512                 common_element_end('ul');
1513                 common_element_end('div');
1514         }
1515 }
1516
1517 /* Following functions are copied from MediaWiki GlobalFunctions.php
1518  * and written by Evan Prodromou. */
1519
1520 function common_accept_to_prefs($accept, $def = '*/*') {
1521         # No arg means accept anything (per HTTP spec)
1522         if(!$accept) {
1523                 return array($def => 1);
1524         }
1525
1526         $prefs = array();
1527
1528         $parts = explode(',', $accept);
1529
1530         foreach($parts as $part) {
1531                 # FIXME: doesn't deal with params like 'text/html; level=1'
1532                 @list($value, $qpart) = explode(';', $part);
1533                 $match = array();
1534                 if(!isset($qpart)) {
1535                         $prefs[$value] = 1;
1536                 } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1537                         $prefs[$value] = $match[1];
1538                 }
1539         }
1540
1541         return $prefs;
1542 }
1543
1544 function common_mime_type_match($type, $avail) {
1545         if(array_key_exists($type, $avail)) {
1546                 return $type;
1547         } else {
1548                 $parts = explode('/', $type);
1549                 if(array_key_exists($parts[0] . '/*', $avail)) {
1550                         return $parts[0] . '/*';
1551                 } elseif(array_key_exists('*/*', $avail)) {
1552                         return '*/*';
1553                 } else {
1554                         return NULL;
1555                 }
1556         }
1557 }
1558
1559 function common_negotiate_type($cprefs, $sprefs) {
1560         $combine = array();
1561
1562         foreach(array_keys($sprefs) as $type) {
1563                 $parts = explode('/', $type);
1564                 if($parts[1] != '*') {
1565                         $ckey = common_mime_type_match($type, $cprefs);
1566                         if($ckey) {
1567                                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1568                         }
1569                 }
1570         }
1571
1572         foreach(array_keys($cprefs) as $type) {
1573                 $parts = explode('/', $type);
1574                 if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1575                         $skey = common_mime_type_match($type, $sprefs);
1576                         if($skey) {
1577                                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1578                         }
1579                 }
1580         }
1581
1582         $bestq = 0;
1583         $besttype = "text/html";
1584
1585         foreach(array_keys($combine) as $type) {
1586                 if($combine[$type] > $bestq) {
1587                         $besttype = $type;
1588                         $bestq = $combine[$type];
1589                 }
1590         }
1591
1592         return $besttype;
1593 }
1594
1595 function common_config($main, $sub) {
1596         global $config;
1597         return isset($config[$main][$sub]) ? $config[$main][$sub] : false;
1598 }
1599
1600 function common_copy_args($from) {
1601         $to = array();
1602         $strip = get_magic_quotes_gpc();
1603         foreach ($from as $k => $v) {
1604                 $to[$k] = ($strip) ? stripslashes($v) : $v;
1605         }
1606         return $to;
1607 }
1608
1609 // Neutralise the evil effects of magic_quotes_gpc in the current request.
1610 // This is used before handing a request off to OAuthRequest::from_request.
1611 function common_remove_magic_from_request() {
1612         if(get_magic_quotes_gpc()) {
1613                 $_POST=array_map('stripslashes',$_POST);
1614                 $_GET=array_map('stripslashes',$_GET);
1615         }
1616 }
1617
1618 function common_user_uri(&$user) {
1619         return common_local_url('userbyid', array('id' => $user->id));
1620 }
1621
1622 function common_notice_uri(&$notice) {
1623         return common_local_url('shownotice',
1624                 array('notice' => $notice->id));
1625 }
1626
1627 # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1628
1629 function common_confirmation_code($bits) {
1630         # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1631         static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1632         $chars = ceil($bits/5);
1633         $code = '';
1634         for ($i = 0; $i < $chars; $i++) {
1635                 # XXX: convert to string and back
1636                 $num = hexdec(common_good_rand(1));
1637                 # XXX: randomness is too precious to throw away almost
1638                 # 40% of the bits we get!
1639                 $code .= $codechars[$num%32];
1640         }
1641         return $code;
1642 }
1643
1644 # convert markup to HTML
1645
1646 function common_markup_to_html($c) {
1647         $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1648         $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1649         $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1650         return Markdown($c);
1651 }
1652
1653 function common_profile_avatar_url($profile, $size=AVATAR_PROFILE_SIZE) {
1654         $avatar = $profile->getAvatar($size);
1655         if ($avatar) {
1656                 return common_avatar_display_url($avatar);
1657         } else {
1658                 return common_default_avatar($size);
1659         }
1660 }
1661
1662 function common_profile_uri($profile) {
1663         if (!$profile) {
1664                 return NULL;
1665         }
1666         $user = User::staticGet($profile->id);
1667         if ($user) {
1668                 return $user->uri;
1669         }
1670
1671         $remote = Remote_profile::staticGet($profile->id);
1672         if ($remote) {
1673                 return $remote->uri;
1674         }
1675         # XXX: this is a very bad profile!
1676         return NULL;
1677 }
1678
1679 function common_canonical_sms($sms) {
1680         # strip non-digits
1681         preg_replace('/\D/', '', $sms);
1682         return $sms;
1683 }
1684
1685 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
1686     switch ($errno) {
1687      case E_USER_ERROR:
1688                 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline)");
1689                 exit(1);
1690                 break;
1691
1692          case E_USER_WARNING:
1693                 common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1694                 break;
1695
1696      case E_USER_NOTICE:
1697                 common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1698                 break;
1699     }
1700
1701         # FIXME: show error page if we're on the Web
1702     /* Don't execute PHP internal error handler */
1703     return true;
1704 }
1705
1706 function common_session_token() {
1707         common_ensure_session();
1708         if (!array_key_exists('token', $_SESSION)) {
1709                 $_SESSION['token'] = common_good_rand(64);
1710         }
1711         return $_SESSION['token'];
1712 }
1713
1714 function common_disfavor_form($notice) {
1715         common_element_start('form', array('id' => 'disfavor-' . $notice->id,
1716                                                                            'method' => 'post',
1717                                                                            'class' => 'disfavor',
1718                                                                            'action' => common_local_url('disfavor')));
1719         common_hidden('token', common_session_token());
1720         common_hidden('notice', $notice->id);
1721         common_element('input', array('type' => 'submit',
1722                                                                   'id' => 'disfavor-submit-' . $notice->id,
1723                                                                   'name' => 'disfavor-submit-' . $notice->id,
1724                                                                   'class' => 'disfavor',
1725                                                                   'value' => '♥'));
1726         common_element_end('form');
1727 }
1728
1729 function common_favor_form($notice) {
1730         common_element_start('form', array('id' => 'favor-' . $notice->id,
1731                                                                            'method' => 'post',
1732                                                                            'class' => 'favor',
1733                                                                            'action' => common_local_url('favor')));
1734         common_hidden('token', common_session_token());
1735         common_hidden('notice', $notice->id);
1736         common_element('input', array('type' => 'submit',
1737                                                                   'id' => 'favor-submit-' . $notice->id,
1738                                                                   'name' => 'favor-submit-' . $notice->id,
1739                                                                   'class' => 'favor',
1740                                                                   'value' => '♡'));
1741         common_element_end('form');
1742 }
1743
1744 function common_cache_key($extra) {
1745         return 'laconica:' . common_keyize(common_config('site', 'name')) . ':' . $extra;
1746 }
1747
1748 function common_keyize($str) {
1749         $str = strtolower($str);
1750         $str = preg_replace('/\s/', '_', $str);
1751         return $str;
1752 }
1753
1754 function common_message_form($content, $user, $to) {
1755         
1756         common_element_start('form', array('id' => 'message_form',
1757                                                                            'method' => 'post',
1758                                                                            'action' => common_local_url('newmessage')));
1759         
1760         $mutual_users = $user->mutuallySubscribedUsers();
1761         
1762         $mutual = array();
1763         
1764         while ($mutual_users->fetch()) {
1765                 if ($mutual_users->id != $user->id) {
1766                         $mutual[$mutual_users->id] = $mutual_users->nickname;
1767                 }
1768         }
1769         
1770         $mutual_users->free();
1771         unset($mutual_users);
1772         
1773         common_dropdown('to', _('To'), $mutual, NULL, FALSE, $to->id);
1774         
1775         common_element_start('p');
1776         
1777         common_element('textarea', array('id' => 'message_content',
1778                                                                          'cols' => 60,
1779                                                                          'rows' => 3,
1780                                                                          'name' => 'content'),
1781                                    ($content) ? $content : '');
1782         
1783         common_element('input', array('id' => 'message_send',
1784                                                                   'name' => 'message_send',
1785                                                                   'type' => 'submit',
1786                                                                   'value' => _('Send')));
1787         
1788         common_hidden('token', common_session_token());
1789         
1790         common_element_end('p');
1791         common_element_end('form');
1792 }
1793
1794 function common_memcache() {
1795         static $cache = NULL;
1796         if (!common_config('memcached', 'enabled')) {
1797                 return NULL;
1798         } else {
1799                 if (!$cache) {
1800                         $cache = new Memcache();
1801                         $servers = common_config('memcached', 'server');
1802                         if (is_array($servers)) {
1803                                 foreach($servers as $server) {
1804                                         $cache->addServer($server);
1805                                 }
1806                         } else {
1807                                 $cache->addServer($servers);
1808                         }
1809                 }
1810                 return $cache;
1811         }
1812 }