]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
Twitter-compatible API - Favorites now working!
[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')),
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('@https?://[^)\]>\s]+@', '<a href="\0" class="extlink">\0</a>', $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_tag_link($tag) {
721         $canonical = common_canonical_tag($tag);
722         $url = common_local_url('tag', array('tag' => $canonical));
723         return '<a href="' . htmlspecialchars($url) . '" rel="tag" class="hashlink">' . htmlspecialchars($tag) . '</a>';
724 }
725
726 function common_canonical_tag($tag) {  
727         return strtolower(str_replace(array('-', '_', '.'), '', $tag));
728 }
729
730 function common_at_link($sender_id, $nickname) {
731         $sender = Profile::staticGet($sender_id);
732         $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
733         if ($recipient) {
734                 return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink">'.$nickname.'</a>';
735         } else {
736                 return $nickname;
737         }
738 }
739
740 function common_relative_profile($sender, $nickname, $dt=NULL) {
741         # Try to find profiles this profile is subscribed to that have this nickname
742         $recipient = new Profile();
743         # XXX: use a join instead of a subquery
744         $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
745         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
746         if ($recipient->find(TRUE)) {
747                 # XXX: should probably differentiate between profiles with
748                 # the same name by date of most recent update
749                 return $recipient;
750         }
751         # Try to find profiles that listen to this profile and that have this nickname
752         $recipient = new Profile();
753         # XXX: use a join instead of a subquery
754         $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
755         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
756         if ($recipient->find(TRUE)) {
757                 # XXX: should probably differentiate between profiles with
758                 # the same name by date of most recent update
759                 return $recipient;
760         }
761         # If this is a local user, try to find a local user with that nickname.
762         $sender = User::staticGet($sender->id);
763         if ($sender) {
764                 $recipient_user = User::staticGet('nickname', $nickname);
765                 if ($recipient_user) {
766                         return $recipient_user->getProfile();
767                 }
768         }
769         # Otherwise, no links. @messages from local users to remote users,
770         # or from remote users to other remote users, are just
771         # outside our ability to make intelligent guesses about
772         return NULL;
773 }
774
775 // where should the avatar go for this user?
776
777 function common_avatar_filename($id, $extension, $size=NULL, $extra=NULL) {
778         global $config;
779
780         if ($size) {
781                 return $id . '-' . $size . (($extra) ? ('-' . $extra) : '') . $extension;
782         } else {
783                 return $id . '-original' . (($extra) ? ('-' . $extra) : '') . $extension;
784         }
785 }
786
787 function common_avatar_path($filename) {
788         global $config;
789         return INSTALLDIR . '/avatar/' . $filename;
790 }
791
792 function common_avatar_url($filename) {
793         return common_path('avatar/'.$filename);
794 }
795
796 function common_avatar_display_url($avatar) {
797         $server = common_config('avatar', 'server');
798         if ($server) {
799                 return 'http://'.$server.'/'.$avatar->filename;
800         } else {
801                 return $avatar->url;
802         }
803 }
804
805 function common_default_avatar($size) {
806         static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
807                                                           AVATAR_STREAM_SIZE => 'stream',
808                                                           AVATAR_MINI_SIZE => 'mini');
809         return theme_path('default-avatar-'.$sizenames[$size].'.png');
810 }
811
812 function common_local_url($action, $args=NULL) {
813         global $config;
814         if ($config['site']['fancy']) {
815                 return common_fancy_url($action, $args);
816         } else {
817                 return common_simple_url($action, $args);
818         }
819 }
820
821 function common_fancy_url($action, $args=NULL) {
822         switch (strtolower($action)) {
823          case 'public':
824                 if ($args && isset($args['page'])) {
825                         return common_path('?page=' . $args['page']);
826                 } else {
827                         return common_path('');
828                 }
829          case 'publicrss':
830                 return common_path('rss');
831          case 'publicxrds':
832                 return common_path('xrds');
833          case 'opensearch':
834                 if ($args && $args['type']) {
835                         return common_path('opensearch/'.$args['type']);
836                 } else {
837                         return common_path('opensearch/people');
838                 }
839          case 'doc':
840                 return common_path('doc/'.$args['title']);
841          case 'login':
842          case 'logout':
843          case 'subscribe':
844          case 'unsubscribe':
845          case 'invite':
846                 return common_path('main/'.$action);
847          case 'register':
848                 if ($args && $args['code']) {
849                         return common_path('main/register/'.$args['code']);
850                 } else {
851                         return common_path('main/register');
852                 }
853          case 'remotesubscribe':
854                 if ($args && $args['nickname']) {
855                         return common_path('main/remote?nickname=' . $args['nickname']);
856                 } else {
857                         return common_path('main/remote');
858                 }
859          case 'openidlogin':
860                 return common_path('main/openid');
861          case 'profilesettings':
862                 return common_path('settings/profile');
863          case 'emailsettings':
864                 return common_path('settings/email');
865          case 'openidsettings':
866                 return common_path('settings/openid');
867          case 'smssettings':
868                 return common_path('settings/sms');
869          case 'twittersettings':
870                 return common_path('settings/twitter');
871          case 'newnotice':
872                 if ($args && $args['replyto']) {
873                         return common_path('notice/new?replyto='.$args['replyto']);
874                 } else {
875                         return common_path('notice/new');
876                 }
877          case 'shownotice':
878                 return common_path('notice/'.$args['notice']);
879          case 'deletenotice':
880                 if ($args && $args['notice']) {
881                         return common_path('notice/delete/'.$args['notice']);
882                 } else {
883                         return common_path('notice/delete');
884                 }
885          case 'xrds':
886          case 'foaf':
887                 return common_path($args['nickname'].'/'.$action);
888          case 'subscriptions':
889          case 'subscribers':
890          case 'all':
891          case 'replies':
892          case 'inbox':
893          case 'outbox':
894                 if ($args && isset($args['page'])) {
895                         return common_path($args['nickname'].'/'.$action.'?page=' . $args['page']);
896                 } else {
897                         return common_path($args['nickname'].'/'.$action);
898                 }
899          case 'allrss':
900                 return common_path($args['nickname'].'/all/rss');
901          case 'repliesrss':
902                 return common_path($args['nickname'].'/replies/rss');
903          case 'userrss':
904                 return common_path($args['nickname'].'/rss');
905          case 'showstream':
906                 if ($args && isset($args['page'])) {
907                         return common_path($args['nickname'].'?page=' . $args['page']);
908                 } else {
909                         return common_path($args['nickname']);
910                 }
911          case 'confirmaddress':
912                 return common_path('main/confirmaddress/'.$args['code']);
913          case 'userbyid':
914                 return common_path('user/'.$args['id']);
915          case 'recoverpassword':
916             $path = 'main/recoverpassword';
917             if ($args['code']) {
918                 $path .= '/' . $args['code'];
919                 }
920             return common_path($path);
921          case 'imsettings':
922                 return common_path('settings/im');
923          case 'peoplesearch':
924                 return common_path('search/people' . (($args) ? ('?' . http_build_query($args)) : ''));
925          case 'noticesearch':
926                 return common_path('search/notice' . (($args) ? ('?' . http_build_query($args)) : ''));
927          case 'noticesearchrss':
928                 return common_path('search/notice/rss' . (($args) ? ('?' . http_build_query($args)) : ''));
929          case 'avatarbynickname':
930                 return common_path($args['nickname'].'/avatar/'.$args['size']);
931          case 'tag':
932             if (isset($args['tag']) && $args['tag']) {
933                         $path = 'tag/' . $args['tag'];
934                         unset($args['tag']);
935                 } else {
936                         $path = 'tags';
937                 }
938                 return common_path($path . (($args) ? ('?' . http_build_query($args)) : ''));
939          case 'tags':
940                 return common_path('tags' . (($args) ? ('?' . http_build_query($args)) : ''));
941          case 'favor':
942                 return common_path('main/favor');
943          case 'disfavor':
944                 return common_path('main/disfavor');
945          case 'showfavorites':
946                 if ($args && isset($args['page'])) {
947                         return common_path($args['nickname'].'/favorites?page=' . $args['page']);
948                 } else {
949                         return common_path($args['nickname'].'/favorites');
950                 }
951          case 'favoritesrss':
952                 return common_path($args['nickname'].'/favorites/rss');
953          case 'showmessage':
954                 return common_path('message/' . $args['message']);
955          case 'newmessage':
956                 return common_path('message/new' . (($args) ? ('?' . http_build_query($args)) : ''));
957          default:
958                 return common_simple_url($action, $args);
959         }
960 }
961
962 function common_simple_url($action, $args=NULL) {
963         global $config;
964         /* XXX: pretty URLs */
965         $extra = '';
966         if ($args) {
967                 foreach ($args as $key => $value) {
968                         $extra .= "&${key}=${value}";
969                 }
970         }
971         return common_path("index.php?action=${action}${extra}");
972 }
973
974 function common_path($relative) {
975         global $config;
976         $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
977         return "http://".$config['site']['server'].'/'.$pathpart.$relative;
978 }
979
980 function common_date_string($dt) {
981         // XXX: do some sexy date formatting
982         // return date(DATE_RFC822, $dt);
983         $t = strtotime($dt);
984         $now = time();
985         $diff = $now - $t;
986
987         if ($now < $t) { # that shouldn't happen!
988                 return common_exact_date($dt);
989         } else if ($diff < 60) {
990                 return _('a few seconds ago');
991         } else if ($diff < 92) {
992                 return _('about a minute ago');
993         } else if ($diff < 3300) {
994                 return sprintf(_('about %d minutes ago'), round($diff/60));
995         } else if ($diff < 5400) {
996                 return _('about an hour ago');
997         } else if ($diff < 22 * 3600) {
998                 return sprintf(_('about %d hours ago'), round($diff/3600));
999         } else if ($diff < 37 * 3600) {
1000                 return _('about a day ago');
1001         } else if ($diff < 24 * 24 * 3600) {
1002                 return sprintf(_('about %d days ago'), round($diff/(24*3600)));
1003         } else if ($diff < 46 * 24 * 3600) {
1004                 return _('about a month ago');
1005         } else if ($diff < 330 * 24 * 3600) {
1006                 return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
1007         } else if ($diff < 480 * 24 * 3600) {
1008                 return _('about a year ago');
1009         } else {
1010                 return common_exact_date($dt);
1011         }
1012 }
1013
1014 function common_exact_date($dt) {
1015     static $_utc;
1016     static $_siteTz;
1017
1018     if (!$_utc) {
1019         $_utc = new DateTimeZone('UTC');
1020         $_siteTz = new DateTimeZone(common_timezone());
1021     }
1022
1023         $dateStr = date('d F Y H:i:s', strtotime($dt));
1024         $d = new DateTime($dateStr, $_utc);
1025         $d->setTimezone($_siteTz);
1026         return $d->format(DATE_RFC850);
1027 }
1028
1029 function common_date_w3dtf($dt) {
1030         $dateStr = date('d F Y H:i:s', strtotime($dt));
1031         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1032         $d->setTimezone(new DateTimeZone(common_timezone()));
1033         return $d->format(DATE_W3C);
1034 }
1035
1036 function common_date_rfc2822($dt) {
1037         $dateStr = date('d F Y H:i:s', strtotime($dt));
1038         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1039         $d->setTimezone(new DateTimeZone(common_timezone()));
1040         return $d->format('r');
1041 }
1042
1043 function common_date_iso8601($dt) {
1044         $dateStr = date('d F Y H:i:s', strtotime($dt));
1045         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1046         $d->setTimezone(new DateTimeZone(common_timezone()));
1047         return $d->format('c');
1048 }
1049
1050 function common_sql_now() {
1051         return strftime('%Y-%m-%d %H:%M:%S', time());
1052 }
1053
1054 function common_redirect($url, $code=307) {
1055         static $status = array(301 => "Moved Permanently",
1056                                                    302 => "Found",
1057                                                    303 => "See Other",
1058                                                    307 => "Temporary Redirect");
1059         header("Status: ${code} $status[$code]");
1060         header("Location: $url");
1061
1062         common_start_xml('a',
1063                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
1064                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
1065         common_element('a', array('href' => $url), $url);
1066         common_end_xml();
1067     exit;
1068 }
1069
1070 function common_save_replies($notice) {
1071         # Alternative reply format
1072         $tname = false;
1073         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $notice->content, $match)) {
1074                 $tname = $match[1];
1075         }
1076         # extract all @messages
1077         $cnt = preg_match_all('/(?:^|\s)@([a-z0-9]{1,64})/', $notice->content, $match);
1078         if (!$cnt && !$tname) {
1079                 return true;
1080         }
1081         # XXX: is there another way to make an array copy?
1082         $names = ($tname) ? array_unique(array_merge(array(strtolower($tname)), $match[1])) : array_unique($match[1]);
1083         $sender = Profile::staticGet($notice->profile_id);
1084         # store replied only for first @ (what user/notice what the reply directed,
1085         # we assume first @ is it)
1086         for ($i=0; $i<count($names); $i++) {
1087                 $nickname = $names[$i];
1088                 $recipient = common_relative_profile($sender, $nickname, $notice->created);
1089                 if (!$recipient) {
1090                         continue;
1091                 }
1092                 if ($i == 0 && ($recipient->id != $sender->id)) { # Don't save reply to self
1093                         $reply_for = $recipient;
1094                         $recipient_notice = $reply_for->getCurrentNotice();
1095                         if ($recipient_notice) {
1096                                 $orig = clone($notice);
1097                                 $notice->reply_to = $recipient_notice->id;
1098                                 $notice->update($orig);
1099                         }
1100                 }
1101                 $reply = new Reply();
1102                 $reply->notice_id = $notice->id;
1103                 $reply->profile_id = $recipient->id;
1104                 $id = $reply->insert();
1105                 if (!$id) {
1106                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1107                         common_log(LOG_ERR, 'DB error inserting reply: ' . $last_error->message);
1108                         common_server_error(sprintf(_('DB error inserting reply: %s'), $last_error->message));
1109                         return;
1110                 }
1111         }
1112 }
1113
1114 function common_broadcast_notice($notice, $remote=false) {
1115
1116         // Check to see if notice should go to Twitter
1117         $flink = Foreign_link::getForeignLink($notice->profile_id, 1); // 1 == Twitter
1118         if (($flink->noticesync & FOREIGN_NOTICE_SEND) == FOREIGN_NOTICE_SEND) {
1119
1120                 // If it's not a Twitter-style reply, or if the user WANTS to send replies...
1121
1122                 if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/', $notice->content) ||
1123                         (($flink->noticesync & FOREIGN_NOTICE_SEND) == FOREIGN_NOTICE_SEND)) {
1124
1125                         $result = common_twitter_broadcast($notice, $flink);
1126
1127                         if (!$result) {
1128                                 common_debug('Unable to send notice: ' . $notice->id . ' to Twitter.', __FILE__);
1129                         }
1130                 }
1131         }
1132
1133         if (common_config('queue', 'enabled')) {
1134                 # Do it later!
1135                 return common_enqueue_notice($notice);
1136         } else {
1137                 return common_real_broadcast($notice, $remote);
1138         }
1139 }
1140
1141 function common_twitter_broadcast($notice, $flink) {
1142         global $config;
1143         $success = true;
1144         $fuser = $flink->getForeignUser();
1145         $twitter_user = $fuser->nickname;
1146         $twitter_password = $flink->credentials;
1147         $uri = 'http://www.twitter.com/statuses/update.json';
1148
1149         // XXX: Hack to get around PHP cURL's use of @ being a a meta character
1150         $statustxt = preg_replace('/^@/', ' @', $notice->content);
1151
1152         $options = array(
1153                 CURLOPT_USERPWD                 => "$twitter_user:$twitter_password",
1154                 CURLOPT_POST                    => true,
1155                 CURLOPT_POSTFIELDS              => array(
1156                                                                         'status'        => $statustxt,
1157                                                                         'source'        => $config['integration']['source']
1158                                                                         ),
1159                 CURLOPT_RETURNTRANSFER  => true,
1160                 CURLOPT_FAILONERROR             => true,
1161                 CURLOPT_HEADER                  => false,
1162                 CURLOPT_FOLLOWLOCATION  => true,
1163                 CURLOPT_USERAGENT               => "Laconica",
1164                 CURLOPT_CONNECTTIMEOUT  => 120,  // XXX: Scary!!!! How long should this be?
1165                 CURLOPT_TIMEOUT                 => 120
1166         );
1167
1168         $ch = curl_init($uri);
1169     curl_setopt_array($ch, $options);
1170     $data = curl_exec($ch);
1171     $errmsg = curl_error($ch);
1172
1173         if ($errmsg) {
1174                 common_debug("cURL error: $errmsg - trying to send notice for $twitter_user.",
1175                         __FILE__);
1176                 $success = false;
1177         }
1178
1179         curl_close($ch);
1180
1181         if (!$data) {
1182                 common_debug("No data returned by Twitter's API trying to send update for $twitter_user",
1183                         __FILE__);
1184                 $success = false;
1185         }
1186
1187         // Twitter should return a status
1188         $status = json_decode($data);
1189
1190         if (!$status->id) {
1191                 common_debug("Unexpected data returned by Twitter API trying to send update for $twitter_user",
1192                         __FILE__);
1193                 $success = false;
1194         }
1195
1196         return $success;
1197 }
1198
1199 # Stick the notice on the queue
1200
1201 function common_enqueue_notice($notice) {
1202         foreach (array('jabber', 'omb', 'sms', 'public') as $transport) {
1203                 $qi = new Queue_item();
1204                 $qi->notice_id = $notice->id;
1205                 $qi->transport = $transport;
1206                 $qi->created = $notice->created;
1207         $result = $qi->insert();
1208                 if (!$result) {
1209                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1210                         common_log(LOG_ERR, 'DB error inserting queue item: ' . $last_error->message);
1211                         return false;
1212                 }
1213                 common_log(LOG_DEBUG, 'complete queueing notice ID = ' . $notice->id . ' for ' . $transport);
1214         }
1215         return $result;
1216 }
1217
1218 function common_dequeue_notice($notice) {
1219         $qi = Queue_item::staticGet($notice->id);
1220         if ($qi) {
1221                 $result = $qi->delete();
1222                 if (!$result) {
1223                     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1224                     common_log(LOG_ERR, 'DB error deleting queue item: ' . $last_error->message);
1225                     return false;
1226                 }
1227                 common_log(LOG_DEBUG, 'complete dequeueing notice ID = ' . $notice->id);
1228                 return $result;
1229         } else {
1230             return false;
1231         }
1232 }
1233
1234 function common_real_broadcast($notice, $remote=false) {
1235         $success = true;
1236         if (!$remote) {
1237                 # Make sure we have the OMB stuff
1238                 require_once(INSTALLDIR.'/lib/omb.php');
1239                 $success = omb_broadcast_remote_subscribers($notice);
1240                 if (!$success) {
1241                         common_log(LOG_ERR, 'Error in OMB broadcast for notice ' . $notice->id);
1242                 }
1243         }
1244         if ($success) {
1245                 require_once(INSTALLDIR.'/lib/jabber.php');
1246                 $success = jabber_broadcast_notice($notice);
1247                 if (!$success) {
1248                         common_log(LOG_ERR, 'Error in jabber broadcast for notice ' . $notice->id);
1249                 }
1250         }
1251         if ($success) {
1252                 require_once(INSTALLDIR.'/lib/mail.php');
1253                 $success = mail_broadcast_notice_sms($notice);
1254                 if (!$success) {
1255                         common_log(LOG_ERR, 'Error in sms broadcast for notice ' . $notice->id);
1256                 }
1257         }
1258         if ($success) {
1259                 $success = jabber_public_notice($notice);
1260                 if (!$success) {
1261                         common_log(LOG_ERR, 'Error in public broadcast for notice ' . $notice->id);
1262                 }
1263         }
1264         // XXX: broadcast notices to other IM
1265         return $success;
1266 }
1267
1268 function common_broadcast_profile($profile) {
1269         // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
1270         require_once(INSTALLDIR.'/lib/omb.php');
1271         omb_broadcast_profile($profile);
1272         // XXX: Other broadcasts...?
1273         return true;
1274 }
1275
1276 function common_profile_url($nickname) {
1277         return common_local_url('showstream', array('nickname' => $nickname));
1278 }
1279
1280 # Don't call if nobody's logged in
1281
1282 function common_notice_form($action=NULL, $content=NULL) {
1283         $user = common_current_user();
1284         assert(!is_null($user));
1285         common_element_start('form', array('id' => 'status_form',
1286                                                                            'method' => 'post',
1287                                                                            'action' => common_local_url('newnotice')));
1288         common_element_start('p');
1289         common_element('label', array('for' => 'status_textarea',
1290                                                                   'id' => 'status_label'),
1291                                    sprintf(_('What\'s up, %s?'), $user->nickname));
1292         common_element('span', array('id' => 'counter', 'class' => 'counter'), '140');
1293         common_element('textarea', array('id' => 'status_textarea',
1294                                                                          'cols' => 60,
1295                                                                          'rows' => 3,
1296                                                                          'name' => 'status_textarea'),
1297                                    ($content) ? $content : '');
1298         if ($action) {
1299                 common_hidden('returnto', $action);
1300         }
1301         common_element('input', array('id' => 'status_submit',
1302                                                                   'name' => 'status_submit',
1303                                                                   'type' => 'submit',
1304                                                                   'value' => _('Send')));
1305         common_element_end('p');
1306         common_element_end('form');
1307 }
1308
1309 # Should make up a reasonable root URL
1310
1311 function common_root_url() {
1312         return common_path('');
1313 }
1314
1315 # returns $bytes bytes of random data as a hexadecimal string
1316 # "good" here is a goal and not a guarantee
1317
1318 function common_good_rand($bytes) {
1319         # XXX: use random.org...?
1320         if (file_exists('/dev/urandom')) {
1321                 return common_urandom($bytes);
1322         } else { # FIXME: this is probably not good enough
1323                 return common_mtrand($bytes);
1324         }
1325 }
1326
1327 function common_urandom($bytes) {
1328         $h = fopen('/dev/urandom', 'rb');
1329         # should not block
1330         $src = fread($h, $bytes);
1331         fclose($h);
1332         $enc = '';
1333         for ($i = 0; $i < $bytes; $i++) {
1334                 $enc .= sprintf("%02x", (ord($src[$i])));
1335         }
1336         return $enc;
1337 }
1338
1339 function common_mtrand($bytes) {
1340         $enc = '';
1341         for ($i = 0; $i < $bytes; $i++) {
1342                 $enc .= sprintf("%02x", mt_rand(0, 255));
1343         }
1344         return $enc;
1345 }
1346
1347 function common_set_returnto($url) {
1348         common_ensure_session();
1349         $_SESSION['returnto'] = $url;
1350 }
1351
1352 function common_get_returnto() {
1353         common_ensure_session();
1354         return $_SESSION['returnto'];
1355 }
1356
1357 function common_timestamp() {
1358         return date('YmdHis');
1359 }
1360
1361 function common_ensure_syslog() {
1362         static $initialized = false;
1363         if (!$initialized) {
1364                 global $config;
1365                 openlog($config['syslog']['appname'], 0, LOG_USER);
1366                 $initialized = true;
1367         }
1368 }
1369
1370 function common_log($priority, $msg, $filename=NULL) {
1371         $logfile = common_config('site', 'logfile');
1372         if ($logfile) {
1373                 $log = fopen($logfile, "a");
1374                 if ($log) {
1375                         static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1376                                                                                           'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1377                         $output = date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1378                         fwrite($log, $output);
1379                         fclose($log);
1380                 }
1381         } else {
1382                 common_ensure_syslog();
1383                 syslog($priority, $msg);
1384         }
1385 }
1386
1387 function common_debug($msg, $filename=NULL) {
1388         if ($filename) {
1389                 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1390         } else {
1391                 common_log(LOG_DEBUG, $msg);
1392         }
1393 }
1394
1395 function common_log_db_error(&$object, $verb, $filename=NULL) {
1396         $objstr = common_log_objstring($object);
1397         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1398         common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1399 }
1400
1401 function common_log_objstring(&$object) {
1402         if (is_null($object)) {
1403                 return "NULL";
1404         }
1405         $arr = $object->toArray();
1406         $fields = array();
1407         foreach ($arr as $k => $v) {
1408                 $fields[] = "$k='$v'";
1409         }
1410         $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1411         return $objstring;
1412 }
1413
1414 function common_valid_http_url($url) {
1415         return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1416 }
1417
1418 function common_valid_tag($tag) {
1419         if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1420                 return (Validate::email($matches[1]) ||
1421                                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1422         }
1423         return false;
1424 }
1425
1426 # Does a little before-after block for next/prev page
1427
1428 function common_pagination($have_before, $have_after, $page, $action, $args=NULL) {
1429
1430         if ($have_before || $have_after) {
1431                 common_element_start('div', array('id' => 'pagination'));
1432                 common_element_start('ul', array('id' => 'nav_pagination'));
1433         }
1434
1435         if ($have_before) {
1436                 $pargs = array('page' => $page-1);
1437                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
1438
1439                 common_element_start('li', 'before');
1440                 common_element('a', array('href' => common_local_url($action, $newargs)),
1441                                            _('« After'));
1442                 common_element_end('li');
1443         }
1444
1445         if ($have_after) {
1446                 $pargs = array('page' => $page+1);
1447                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
1448                 common_element_start('li', 'after');
1449                 common_element('a', array('href' => common_local_url($action, $newargs)),
1450                                                    _('Before »'));
1451                 common_element_end('li');
1452         }
1453
1454         if ($have_before || $have_after) {
1455                 common_element_end('ul');
1456                 common_element_end('div');
1457         }
1458 }
1459
1460 /* Following functions are copied from MediaWiki GlobalFunctions.php
1461  * and written by Evan Prodromou. */
1462
1463 function common_accept_to_prefs($accept, $def = '*/*') {
1464         # No arg means accept anything (per HTTP spec)
1465         if(!$accept) {
1466                 return array($def => 1);
1467         }
1468
1469         $prefs = array();
1470
1471         $parts = explode(',', $accept);
1472
1473         foreach($parts as $part) {
1474                 # FIXME: doesn't deal with params like 'text/html; level=1'
1475                 @list($value, $qpart) = explode(';', $part);
1476                 $match = array();
1477                 if(!isset($qpart)) {
1478                         $prefs[$value] = 1;
1479                 } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1480                         $prefs[$value] = $match[1];
1481                 }
1482         }
1483
1484         return $prefs;
1485 }
1486
1487 function common_mime_type_match($type, $avail) {
1488         if(array_key_exists($type, $avail)) {
1489                 return $type;
1490         } else {
1491                 $parts = explode('/', $type);
1492                 if(array_key_exists($parts[0] . '/*', $avail)) {
1493                         return $parts[0] . '/*';
1494                 } elseif(array_key_exists('*/*', $avail)) {
1495                         return '*/*';
1496                 } else {
1497                         return NULL;
1498                 }
1499         }
1500 }
1501
1502 function common_negotiate_type($cprefs, $sprefs) {
1503         $combine = array();
1504
1505         foreach(array_keys($sprefs) as $type) {
1506                 $parts = explode('/', $type);
1507                 if($parts[1] != '*') {
1508                         $ckey = common_mime_type_match($type, $cprefs);
1509                         if($ckey) {
1510                                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1511                         }
1512                 }
1513         }
1514
1515         foreach(array_keys($cprefs) as $type) {
1516                 $parts = explode('/', $type);
1517                 if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1518                         $skey = common_mime_type_match($type, $sprefs);
1519                         if($skey) {
1520                                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1521                         }
1522                 }
1523         }
1524
1525         $bestq = 0;
1526         $besttype = "text/html";
1527
1528         foreach(array_keys($combine) as $type) {
1529                 if($combine[$type] > $bestq) {
1530                         $besttype = $type;
1531                         $bestq = $combine[$type];
1532                 }
1533         }
1534
1535         return $besttype;
1536 }
1537
1538 function common_config($main, $sub) {
1539         global $config;
1540         return isset($config[$main][$sub]) ? $config[$main][$sub] : false;
1541 }
1542
1543 function common_copy_args($from) {
1544         $to = array();
1545         $strip = get_magic_quotes_gpc();
1546         foreach ($from as $k => $v) {
1547                 $to[$k] = ($strip) ? stripslashes($v) : $v;
1548         }
1549         return $to;
1550 }
1551
1552 // Neutralise the evil effects of magic_quotes_gpc in the current request.
1553 // This is used before handing a request off to OAuthRequest::from_request.
1554 function common_remove_magic_from_request() {
1555         if(get_magic_quotes_gpc()) {
1556                 $_POST=array_map('stripslashes',$_POST);
1557                 $_GET=array_map('stripslashes',$_GET);
1558         }
1559 }
1560
1561 function common_user_uri(&$user) {
1562         return common_local_url('userbyid', array('id' => $user->id));
1563 }
1564
1565 function common_notice_uri(&$notice) {
1566         return common_local_url('shownotice',
1567                 array('notice' => $notice->id));
1568 }
1569
1570 # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1571
1572 function common_confirmation_code($bits) {
1573         # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1574         static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1575         $chars = ceil($bits/5);
1576         $code = '';
1577         for ($i = 0; $i < $chars; $i++) {
1578                 # XXX: convert to string and back
1579                 $num = hexdec(common_good_rand(1));
1580                 # XXX: randomness is too precious to throw away almost
1581                 # 40% of the bits we get!
1582                 $code .= $codechars[$num%32];
1583         }
1584         return $code;
1585 }
1586
1587 # convert markup to HTML
1588
1589 function common_markup_to_html($c) {
1590         $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1591         $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1592         $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1593         return Markdown($c);
1594 }
1595
1596 function common_profile_avatar_url($profile, $size=AVATAR_PROFILE_SIZE) {
1597         $avatar = $profile->getAvatar($size);
1598         if ($avatar) {
1599                 return common_avatar_display_url($avatar);
1600         } else {
1601                 return common_default_avatar($size);
1602         }
1603 }
1604
1605 function common_profile_uri($profile) {
1606         if (!$profile) {
1607                 return NULL;
1608         }
1609         $user = User::staticGet($profile->id);
1610         if ($user) {
1611                 return $user->uri;
1612         }
1613
1614         $remote = Remote_profile::staticGet($profile->id);
1615         if ($remote) {
1616                 return $remote->uri;
1617         }
1618         # XXX: this is a very bad profile!
1619         return NULL;
1620 }
1621
1622 function common_canonical_sms($sms) {
1623         # strip non-digits
1624         preg_replace('/\D/', '', $sms);
1625         return $sms;
1626 }
1627
1628 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
1629     switch ($errno) {
1630      case E_USER_ERROR:
1631                 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline)");
1632                 exit(1);
1633                 break;
1634
1635          case E_USER_WARNING:
1636                 common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1637                 break;
1638
1639      case E_USER_NOTICE:
1640                 common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1641                 break;
1642     }
1643
1644         # FIXME: show error page if we're on the Web
1645     /* Don't execute PHP internal error handler */
1646     return true;
1647 }
1648
1649 function common_session_token() {
1650         common_ensure_session();
1651         if (!array_key_exists('token', $_SESSION)) {
1652                 $_SESSION['token'] = common_good_rand(64);
1653         }
1654         return $_SESSION['token'];
1655 }
1656
1657 function common_disfavor_form($notice) {
1658         common_element_start('form', array('id' => 'disfavor-' . $notice->id,
1659                                                                            'method' => 'post',
1660                                                                            'class' => 'disfavor',
1661                                                                            'action' => common_local_url('disfavor')));
1662         common_hidden('token', common_session_token());
1663         common_hidden('notice', $notice->id);
1664         common_element('input', array('type' => 'submit',
1665                                                                   'id' => 'disfavor-submit-' . $notice->id,
1666                                                                   'name' => 'disfavor-submit-' . $notice->id,
1667                                                                   'class' => 'disfavor',
1668                                                                   'value' => '♥'));
1669         common_element_end('form');
1670 }
1671
1672 function common_favor_form($notice) {
1673         common_element_start('form', array('id' => 'favor-' . $notice->id,
1674                                                                            'method' => 'post',
1675                                                                            'class' => 'favor',
1676                                                                            'action' => common_local_url('favor')));
1677         common_hidden('token', common_session_token());
1678         common_hidden('notice', $notice->id);
1679         common_element('input', array('type' => 'submit',
1680                                                                   'id' => 'favor-submit-' . $notice->id,
1681                                                                   'name' => 'favor-submit-' . $notice->id,
1682                                                                   'class' => 'favor',
1683                                                                   'value' => '♡'));
1684         common_element_end('form');
1685 }
1686
1687 function common_cache_key($extra) {
1688         return 'laconica:' . common_keyize(common_config('site', 'name')) . ':' . $extra;
1689 }
1690
1691 function common_keyize($str) {
1692         $str = strtolower($str);
1693         $str = preg_replace('/\s/', '_', $str);
1694         return $str;
1695 }
1696
1697 function common_message_form($content, $user, $to) {
1698         
1699         common_element_start('form', array('id' => 'message_form',
1700                                                                            'method' => 'post',
1701                                                                            'action' => common_local_url('newmessage')));
1702         
1703         $mutual_users = $user->mutuallySubscribedUsers();
1704         
1705         $mutual = array();
1706         
1707         while ($mutual_users->fetch()) {
1708                 if ($mutual_users->id != $user->id) {
1709                         $mutual[$mutual_users->id] = $mutual_users->nickname;
1710                 }
1711         }
1712         
1713         $mutual_users->free();
1714         unset($mutual_users);
1715         
1716         common_dropdown('to', _('To'), $mutual, NULL, FALSE, $to->id);
1717         
1718         common_element_start('p');
1719         
1720         common_element('textarea', array('id' => 'message_content',
1721                                                                          'cols' => 60,
1722                                                                          'rows' => 3,
1723                                                                          'name' => 'content'),
1724                                    ($content) ? $content : '');
1725         
1726         common_element('input', array('id' => 'message_send',
1727                                                                   'name' => 'message_send',
1728                                                                   'type' => 'submit',
1729                                                                   'value' => _('Send')));
1730         
1731         common_hidden('token', common_session_token());
1732         
1733         common_element_end('p');
1734         common_element_end('form');
1735 }
1736
1737 function common_memcache() {
1738         static $cache = NULL;
1739         if (!common_config('memcached', 'enabled')) {
1740                 return NULL;
1741         } else {
1742                 if (!$cache) {
1743                         $cache = new Memcache();
1744                         $servers = common_config('memcached', 'server');
1745                         if (is_array($servers)) {
1746                                 foreach($servers as $server) {
1747                                         $cache->addServer($server);
1748                                 }
1749                         } else {
1750                                 $cache->addServer($servers);
1751                         }
1752                 }
1753                 return $cache;
1754         }
1755 }