]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
get rid of label on checkbox, just include it as contents
[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         global $xw;
97         $xw->endElement();
98 }
99
100 function common_element($tag, $attrs=NULL, $content=NULL) {
101     common_element_start($tag, $attrs);
102         if ($content) {
103                 global $xw;
104                 $xw->text($content);
105         }
106         common_element_end($tag);
107 }
108
109 function common_start_xml($doc=NULL, $public=NULL, $system=NULL) {
110         global $xw;
111         $xw = new XMLWriter();
112         $xw->openURI('php://output');
113         $xw->setIndent(true);
114         $xw->startDocument('1.0', 'UTF-8');
115         if ($doc) {
116                 $xw->writeDTD($doc, $public, $system);
117         }
118 }
119
120 function common_end_xml() {
121         global $xw;
122         $xw->endDocument();
123         $xw->flush();
124 }
125
126 define('PAGE_TYPE_PREFS', 'application/xhtml+xml,text/html;q=0.7,application/xml;q=0.3,text/xml;q=0.2');
127
128 function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=NULL) {
129         global $config, $xw;
130
131         $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : NULL;
132
133         # XXX: allow content negotiation for RDF, RSS, or XRDS
134
135         $type = common_negotiate_type(common_accept_to_prefs($httpaccept),
136                                                                   common_accept_to_prefs(PAGE_TYPE_PREFS));
137
138         if (!$type) {
139                 common_client_error(_t('This page is not available in a media type you accept'), 406);
140                 exit(0);
141         }
142
143         header('Content-Type: '.$type);
144
145         common_start_xml('html',
146                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
147                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
148
149         # FIXME: correct language for interface
150
151         common_element_start('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
152                                                                            'xml:lang' => 'en',
153                                                                            'lang' => 'en'));
154
155         common_element_start('head');
156         common_element('title', NULL,
157                                    $pagetitle . " - " . $config['site']['name']);
158         common_element('link', array('rel' => 'stylesheet',
159                                                                  'type' => 'text/css',
160                                                                  'href' => theme_path('display.css'),
161                                                                  'media' => 'screen, projection, tv'));
162         foreach (array(6,7) as $ver) {
163                 if (file_exists(theme_file('ie'.$ver.'.css'))) {
164                         # Yes, IE people should be put in jail.
165                         $xw->writeComment('[if lte IE '.$ver.']><link rel="stylesheet" type="text/css" '.
166                                                           'href="'.theme_path('ie'.$ver.'.css').' /><![endif]');
167                 }
168         }
169
170         common_element('script', array('type' => 'text/javascript',
171                                                                    'src' => common_path('js/jquery.min.js')),
172                                    ' ');
173
174         if ($callable) {
175                 if ($data) {
176                         call_user_func($callable, $data);
177                 } else {
178                         call_user_func($callable);
179                 }
180         }
181         common_element_end('head');
182         common_element_start('body');
183         common_element_start('div', array('id' => 'wrap'));
184         common_element_start('div', array('id' => 'header'));
185         common_nav_menu();
186         if ((is_string($config['site']['logo']) && (strlen($config['site']['logo']) > 0))
187                 || file_exists(theme_file('logo.png')))
188         {
189                 common_element_start('a', array('href' => common_local_url('public')));
190                 common_element('img', array('src' => ($config['site']['logo']) ?
191                                                                         ($config['site']['logo']) : theme_path('logo.png'),
192                                                                         'alt' => $config['site']['name'],
193                                                                         'id' => 'logo'));
194                 common_element_end('a');
195         } else {
196                 common_element_start('p', array('id' => 'branding'));
197                 common_element('a', array('href' => common_local_url('public')),
198                                            $config['site']['name']);
199                 common_element_end('p');
200         }
201
202         common_element('h1', 'pagetitle', $pagetitle);
203
204         if ($headercall) {
205                 if ($data) {
206                         call_user_func($headercall, $data);
207                 } else {
208                         call_user_func($headercall);
209                 }
210         }
211         common_element_end('div');
212         common_element_start('div', array('id' => 'content'));
213 }
214
215 function common_show_footer() {
216         global $xw, $config;
217         common_element_end('div'); # content div
218         common_foot_menu();
219         common_element_start('div', array('id' => 'footer'));
220         common_element_start('p', 'laconica');
221         common_text(_t('This site is running the '));
222         common_element('a', array('class' => 'software',
223                                                           href => 'http://laconi.ca/'),
224                                    'Laconica');
225         common_text(_t('microblogging tool, version ' . LACONICA_VERSION . ', available under the '));
226         common_element('a', array(href => 'http://www.fsf.org/licensing/licenses/agpl-3.0.html'),
227                                    'GNU Affero General Public License');
228         common_text(_t('.'));
229         common_element_end('p');
230         common_element('img', array('id' => 'cc',
231                                                                 'src' => $config['license']['image'],
232                                                                 'alt' => $config['license']['title']));
233         common_element_start('p');
234         common_text(_t('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
235         common_element('a', array('class' => 'license',
236                                                           'rel' => 'license',
237                                                           href => $config['license']['url']),
238                                    $config['license']['title']);
239         common_text(_t('. Contributors should be attributed by full name or nickname.'));
240         common_element_end('p');
241         common_element_end('div');
242         common_element_end('div');
243         common_element_end('body');
244         common_element_end('html');
245         common_end_xml();
246 }
247
248 function common_text($txt) {
249         global $xw;
250         $xw->text($txt);
251 }
252
253 function common_raw($xml) {
254         global $xw;
255         $xw->writeRaw($xml);
256 }
257
258 function common_nav_menu() {
259         $user = common_current_user();
260         common_element_start('ul', array('id' => 'nav'));
261         if ($user) {
262                 common_menu_item(common_local_url('all', array('nickname' => $user->nickname)),
263                                                  _t('Home'));
264         }
265         common_menu_item(common_local_url('public'), _t('Public'));
266         common_menu_item(common_local_url('doc', array('title' => 'help')),
267                                          _t('Help'));
268         if ($user) {
269                 common_menu_item(common_local_url('profilesettings'),
270                                                  _t('Settings'));
271                 common_menu_item(common_local_url('logout'),
272                                                  _t('Logout'));
273         } else {
274                 common_menu_item(common_local_url('login'), _t('Login'));
275                 common_menu_item(common_local_url('register'), _t('Register'));
276                 common_menu_item(common_local_url('openidlogin'), _t('OpenID'));
277         }
278         common_element_end('ul');
279 }
280
281 function common_foot_menu() {
282         common_element_start('ul', array('id' => 'nav_sub'));
283         common_menu_item(common_local_url('doc', array('title' => 'about')),
284                                          _t('About'));
285         common_menu_item(common_local_url('doc', array('title' => 'privacy')),
286                                          _t('Privacy'));
287         common_menu_item(common_local_url('doc', array('title' => 'source')),
288                                          _t('Source'));
289         common_element_end('ul');
290 }
291
292 function common_menu_item($url, $text, $title=NULL, $is_selected=false) {
293         $lattrs = array();
294         if ($is_selected) {
295                 $lattrs['class'] = 'current';
296         }
297         common_element_start('li', $lattrs);
298         $attrs['href'] = $url;
299         if ($title) {
300                 $attrs['title'] = $title;
301         }
302         common_element('a', $attrs, $text);
303         common_element_end('li');
304 }
305
306 function common_input($id, $label, $value=NULL,$instructions=NULL) {
307         common_element_start('p');
308         common_element('label', array('for' => $id), $label);
309         $attrs = array('name' => $id,
310                                    'type' => 'text',
311                                    'id' => $id);
312         if ($value) {
313                 $attrs['value'] = htmlspecialchars($value);
314         }
315         common_element('input', $attrs);
316         if ($instructions) {
317                 common_element('span', 'input_instructions', $instructions);
318         }
319         common_element_end('p');
320 }
321
322 function common_checkbox($id, $label, $instructions=NULL, $value='true')
323 {
324         common_element_start('p');
325         $attrs = array('name' => $id,
326                                    'type' => 'checkbox',
327                                    'id' => $id,
328                                    'value' => $value);
329         if ($value) {
330                 $attrs['value'] = htmlspecialchars($value);
331         }
332         common_element('input', $attrs, $label);
333         if ($instructions) {
334                 common_element('span', 'input_instructions', $instructions);
335         }
336         common_element_end('p');
337 }
338
339 function common_hidden($id, $value) {
340         common_element('input', array('name' => $id,
341                                                                   'type' => 'hidden',
342                                                                   'id' => $id,
343                                                                   'value' => $value));
344 }
345
346 function common_password($id, $label, $instructions=NULL) {
347         common_element_start('p');
348         common_element('label', array('for' => $id), $label);
349         $attrs = array('name' => $id,
350                                    'type' => 'password',
351                                    'id' => $id);
352         common_element('input', $attrs);
353         if ($instructions) {
354                 common_element('span', 'input_instructions', $instructions);
355         }
356         common_element_end('p');
357 }
358
359 function common_submit($id, $label) {
360         global $xw;
361         common_element_start('p');
362         common_element('input', array('type' => 'submit',
363                                                                   'id' => $id,
364                                                                   'name' => $id,
365                                                                   'class' => 'submit',
366                                                                   'value' => $label));
367         common_element_end('p');
368 }
369
370 function common_textarea($id, $label, $content=NULL, $instructions=NULL) {
371         common_element_start('p');
372         common_element('label', array('for' => $id), $label);
373         common_element('textarea', array('rows' => 3,
374                                                                          'cols' => 40,
375                                                                          'name' => $id,
376                                                                          'id' => $id),
377                                    ($content) ? $content : ' ');
378         if ($instructions) {
379                 common_element('span', 'input_instructions', $instructions);
380         }
381         common_element_end('p');
382 }
383
384 # salted, hashed passwords are stored in the DB
385
386 function common_munge_password($password, $id) {
387         return md5($password . $id);
388 }
389
390 # check if a username exists and has matching password
391 function common_check_user($nickname, $password) {
392         $user = User::staticGet('nickname', $nickname);
393         if (is_null($user)) {
394                 return false;
395         } else {
396                 return (0 == strcmp(common_munge_password($password, $user->id),
397                                                         $user->password));
398         }
399 }
400
401 # is the current user logged in?
402 function common_logged_in() {
403         return (!is_null(common_current_user()));
404 }
405
406 function common_have_session() {
407         return (0 != strcmp(session_id(), ''));
408 }
409
410 function common_ensure_session() {
411         if (!common_have_session()) {
412                 @session_start();
413         }
414 }
415
416 function common_set_user($nickname) {
417         if (is_null($nickname) && common_have_session()) {
418                 unset($_SESSION['userid']);
419                 return true;
420         } else {
421                 $user = User::staticGet('nickname', $nickname);
422                 if ($user) {
423                         common_ensure_session();
424                         $_SESSION['userid'] = $user->id;
425                         return true;
426                 } else {
427                         return false;
428                 }
429         }
430         return false;
431 }
432
433 function common_set_cookie($key, $value, $expiration=0) {
434         $path = common_config('site', 'path');
435         $server = common_config('site', 'server');
436
437         if ($path && ($path != '/')) {
438                 $cookiepath = '/' . $path . '/';
439         } else {
440                 $cookiepath = '/';
441         }
442         return setcookie($key,
443                          $value,
444                                  $expiration,
445                                          $cookiepath,
446                                      $server);
447 }
448
449 define('REMEMBERME', 'rememberme');
450 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60);
451
452 function common_rememberme() {
453         $user = common_current_user();
454         if (!$user) {
455                 return false;
456         }
457         $rm = new Remember_me();
458         $rm->code = common_good_rand(16);
459         $rm->user_id = $user->id;
460         $result = $rm->insert();
461         if (!$result) {
462                 common_log_db_error($rm, 'INSERT', __FILE__);
463                 return false;
464         }
465         common_set_cookie(REMEMBERME,
466                                           implode(':', array($rm->user_id, $rm->code)),
467                                           time() + REMEMBERME_EXPIRY);
468 }
469
470 function common_remembered_user() {
471         $user = NULL;
472         # Try to remember
473         $packed = $_COOKIE[REMEMBERME];
474         if ($packed) {
475                 list($id, $code) = explode(':', $packed);
476                 if ($id && $code) {
477                         $rm = Remember_me::staticGet($code);
478                         if ($rm && ($rm->user_id == $id)) {
479                                 $user = User::staticGet($rm->user_id);
480                                 if ($user) {
481                                         # successful!
482                                         $result = $rm->delete();
483                                         if (!$result) {
484                                                 common_log_db_error($rm, 'DELETE', __FILE__);
485                                                 $user = NULL;
486                                         } else {
487                                                 common_set_user($user->nickname);
488                                                 common_real_login(false);
489                                                 # We issue a new cookie, so they can log in
490                                                 # automatically again after this session
491                                                 common_rememberme();
492                                         }
493                                 }
494                         }
495                 }
496         }
497         return $user;
498 }
499
500 # must be called with a valid user!
501
502 function common_forgetme() {
503         common_set_cookie(REMEMBERME, '', 0);
504 }
505
506 # who is the current user?
507 function common_current_user() {
508         if ($_REQUEST[session_name()]) {
509                 common_ensure_session();
510                 $id = $_SESSION['userid'];
511                 if ($id) {
512                         # note: this should cache
513                         $user = User::staticGet($id);
514                         return $user;
515                 }
516         }
517         # that didn't work; try to remember
518         $user = common_remembered_user();
519         return $user;
520 }
521
522 # Logins that are 'remembered' aren't 'real' -- they're subject to
523 # cookie-stealing. So, we don't let them do certain things. New reg,
524 # OpenID, and password logins _are_ real.
525
526 function common_real_login($real=true) {
527         common_ensure_session();
528         $_SESSION['real_login'] = $real;
529 }
530
531 function common_is_real_login() {
532         return common_logged_in() && $_SESSION['real_login'];
533 }
534
535 # get canonical version of nickname for comparison
536 function common_canonical_nickname($nickname) {
537         # XXX: UTF-8 canonicalization (like combining chars)
538         return strtolower($nickname);
539 }
540
541 # get canonical version of email for comparison
542 function common_canonical_email($email) {
543         # XXX: canonicalize UTF-8
544         # XXX: lcase the domain part
545         return $email;
546 }
547
548 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$_+!*();/?:~-]))');
549
550 function common_render_content($text, $notice) {
551         $r = htmlspecialchars($text);
552         $id = $notice->profile_id;
553         $r = preg_replace('@https?://\S+@', '<a href="\0" class="extlink">\0</a>', $r);
554         $r = preg_replace('/(^|\s+)@([a-z0-9]{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
555         # XXX: # tags
556         # XXX: machine tags
557         return $r;
558 }
559
560 function common_at_link($sender_id, $nickname) {
561         # Try to find profiles this profile is subscribed to that have this nickname
562         $recipient = new Profile();
563         # XXX: chokety and bad
564         $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender_id.' and subscribed = id)', 'AND');
565         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
566         if ($recipient->find(TRUE)) {
567                 return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink tolistenee">'.$nickname.'</a>';
568         }
569         # Try to find profiles that listen to this profile and that have this nickname
570         $recipient = new Profile();
571         # XXX: chokety and bad
572         $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender_id.' and subscriber = id)', 'AND');
573         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
574         if ($recipient->find(TRUE)) {
575                 return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink tolistener">'.$nickname.'</a>';
576         }
577         # If this is a local user, try to find a local user with that nickname.
578         $sender = User::staticGet($sender_id);
579         if ($sender) {
580                 $recipient_user = User::staticGet('nickname', $nickname);
581                 if ($recipient_user) {
582                         return '<a href="'.htmlspecialchars(common_profile_url($nickname)).'" class="atlink usertouser">'.$nickname.'</a>';
583                 }
584         }
585         # Otherwise, no links. @messages from local users to remote users,
586         # or from remote users to other remote users, are just
587         # outside our ability to make intelligent guesses about
588         return $nickname;
589 }
590
591 // where should the avatar go for this user?
592
593 function common_avatar_filename($id, $extension, $size=NULL, $extra=NULL) {
594         global $config;
595
596         if ($size) {
597                 return $id . '-' . $size . (($extra) ? ('-' . $extra) : '') . $extension;
598         } else {
599                 return $id . '-original' . (($extra) ? ('-' . $extra) : '') . $extension;
600         }
601 }
602
603 function common_avatar_path($filename) {
604         global $config;
605         return INSTALLDIR . '/avatar/' . $filename;
606 }
607
608 function common_avatar_url($filename) {
609         return common_path('avatar/'.$filename);
610 }
611
612 function common_default_avatar($size) {
613         static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
614                                                           AVATAR_STREAM_SIZE => 'stream',
615                                                           AVATAR_MINI_SIZE => 'mini');
616         return theme_path('default-avatar-'.$sizenames[$size].'.png');
617 }
618
619 function common_local_url($action, $args=NULL) {
620         global $config;
621         if ($config['site']['fancy']) {
622                 return common_fancy_url($action, $args);
623         } else {
624                 return common_simple_url($action, $args);
625         }
626 }
627
628 function common_fancy_url($action, $args=NULL) {
629         switch (strtolower($action)) {
630          case 'public':
631                 if ($args && $args['page']) {
632                         return common_path('?page=' . $args['page']);
633                 } else {
634                         return common_path('');
635                 }
636          case 'publicrss':
637                 return common_path('rss');
638          case 'publicxrds':
639                 return common_path('xrds');
640          case 'doc':
641                 return common_path('doc/'.$args['title']);
642          case 'login':
643          case 'logout':
644          case 'register':
645          case 'subscribe':
646          case 'unsubscribe':
647                 return common_path('main/'.$action);
648          case 'openidlogin':
649                 return common_path('main/openid');
650          case 'avatar':
651          case 'password':
652                 return common_path('settings/'.$action);
653          case 'profilesettings':
654                 return common_path('settings/profile');
655          case 'openidsettings':
656                 return common_path('settings/openid');
657          case 'newnotice':
658                 return common_path('notice/new');
659          case 'shownotice':
660                 return common_path('notice/'.$args['notice']);
661          case 'xrds':
662          case 'foaf':
663                 return common_path($args['nickname'].'/'.$action);
664          case 'subscriptions':
665          case 'subscribers':
666          case 'all':
667                 if ($args && $args['page']) {
668                         return common_path($args['nickname'].'/'.$action.'?page=' . $args['page']);
669                 } else {
670                         return common_path($args['nickname'].'/'.$action);
671                 }
672          case 'allrss':
673                 return common_path($args['nickname'].'/all/rss');
674          case 'userrss':
675                 return common_path($args['nickname'].'/rss');
676          case 'showstream':
677                 if ($args && $args['page']) {
678                         return common_path($args['nickname'].'?page=' . $args['page']);
679                 } else {
680                         return common_path($args['nickname']);
681                 }
682          case 'confirmaddress':
683                 return common_path('main/confirmaddress/'.$args['code']);
684          case 'userbyid':
685                 return common_path('user/'.$args['id']);
686          case 'recoverpassword':
687             $path = 'main/recoverpassword';
688             if ($args['code']) {
689                 $path .= '/' . $args['code'];
690                 }
691             return common_path($path);
692          default:
693                 return common_simple_url($action, $args);
694         }
695 }
696
697 function common_simple_url($action, $args=NULL) {
698         global $config;
699         /* XXX: pretty URLs */
700         $extra = '';
701         if ($args) {
702                 foreach ($args as $key => $value) {
703                         $extra .= "&${key}=${value}";
704                 }
705         }
706         return common_path("index.php?action=${action}${extra}");
707 }
708
709 function common_path($relative) {
710         global $config;
711         $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
712         return "http://".$config['site']['server'].'/'.$pathpart.$relative;
713 }
714
715 function common_date_string($dt) {
716         // XXX: do some sexy date formatting
717         // return date(DATE_RFC822, $dt);
718         return $dt;
719 }
720
721 function common_date_w3dtf($dt) {
722         $t = strtotime($dt);
723         return date(DATE_W3C, $t);
724 }
725
726 function common_redirect($url, $code=307) {
727         static $status = array(301 => "Moved Permanently",
728                                                    302 => "Found",
729                                                    303 => "See Other",
730                                                    307 => "Temporary Redirect");
731         header("Status: ${code} $status[$code]");
732         header("Location: $url");
733
734         common_start_xml('a',
735                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
736                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
737         common_element('a', array('href' => $url), $url);
738         common_end_xml();
739 }
740
741 function common_broadcast_notice($notice, $remote=false) {
742         // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
743         if (!$remote) {
744                 # Make sure we have the OMB stuff
745                 require_once(INSTALLDIR.'/lib/omb.php');
746                 omb_broadcast_remote_subscribers($notice);
747         }
748         require_once(INSTALLDIR.'/lib/jabber.php');
749         jabber_broadcast_notice($notice);
750         // XXX: broadcast notices to SMS
751         // XXX: broadcast notices to other IM
752         return true;
753 }
754
755 function common_broadcast_profile($profile) {
756         // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
757         require_once(INSTALLDIR.'/lib/omb.php');
758         omb_broadcast_profile($profile);
759         // XXX: Other broadcasts...?
760         return true;
761 }
762
763 function common_profile_url($nickname) {
764         return common_local_url('showstream', array('nickname' => $nickname));
765 }
766
767 # Don't call if nobody's logged in
768
769 function common_notice_form($action=NULL) {
770         $user = common_current_user();
771         assert(!is_null($user));
772         common_element_start('form', array('id' => 'status_form',
773                                                                            'method' => 'POST',
774                                                                            'action' => common_local_url('newnotice')));
775         common_element_start('p');
776         common_element('label', array('for' => 'status_update',
777                                                                   'id' => 'status_label'),
778                                    _t('What\'s up, ').$user->nickname.'?');
779         common_element('textarea', array('id' => 'status_textarea',
780                                                                          'name' => 'status_textarea'),
781                                    ' ');
782         if ($action) {
783                 common_hidden('returnto', $action);
784         }
785         common_element('input', array('id' => 'status_submit',
786                                                                   'name' => 'status_submit',
787                                                                   'type' => 'submit',
788                                                                   'value' => _t('Send')));
789         common_element_end('p');
790         common_element_end('form');
791 }
792
793 function common_mint_tag($extra) {
794         global $config;
795         return
796           'tag:'.$config['tag']['authority'].','.
797           $config['tag']['date'].':'.$config['tag']['prefix'].$extra;
798 }
799
800 # Should make up a reasonable root URL
801
802 function common_root_url() {
803         return common_path('');
804 }
805
806 # returns $bytes bytes of random data as a hexadecimal string
807 # "good" here is a goal and not a guarantee
808
809 function common_good_rand($bytes) {
810         # XXX: use random.org...?
811         if (file_exists('/dev/urandom')) {
812                 return common_urandom($bytes);
813         } else { # FIXME: this is probably not good enough
814                 return common_mtrand($bytes);
815         }
816 }
817
818 function common_urandom($bytes) {
819         $h = fopen('/dev/urandom', 'rb');
820         # should not block
821         $src = fread($h, $bytes);
822         fclose($h);
823         $enc = '';
824         for ($i = 0; $i < $bytes; $i++) {
825                 $enc .= sprintf("%02x", (ord($src[$i])));
826         }
827         return $enc;
828 }
829
830 function common_mtrand($bytes) {
831         $enc = '';
832         for ($i = 0; $i < $bytes; $i++) {
833                 $enc .= sprintf("%02x", mt_rand(0, 255));
834         }
835         return $enc;
836 }
837
838 function common_set_returnto($url) {
839         common_ensure_session();
840         $_SESSION['returnto'] = $url;
841 }
842
843 function common_get_returnto() {
844         common_ensure_session();
845         return $_SESSION['returnto'];
846 }
847
848 function common_timestamp() {
849         return date('YmdHis');
850 }
851
852 // XXX: set up gettext
853
854 function _t($str) {
855         return $str;
856 }
857
858 function common_ensure_syslog() {
859         static $initialized = false;
860         if (!$initialized) {
861                 global $config;
862                 define_syslog_variables();
863                 openlog($config['syslog']['appname'], 0, LOG_USER);
864                 $initialized = true;
865         }
866 }
867
868 function common_log($priority, $msg, $filename=NULL) {
869         common_ensure_syslog();
870         syslog($priority, $msg);
871 }
872
873 function common_debug($msg, $filename=NULL) {
874         if ($filename) {
875                 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
876         } else {
877                 common_log(LOG_DEBUG, $msg);
878         }
879 }
880
881 function common_log_db_error(&$object, $verb, $filename=NULL) {
882         $objstr = common_log_objstring($object);
883         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
884         common_log(LOG_ERROR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
885 }
886
887 function common_log_objstring(&$object) {
888         if (is_null($object)) {
889                 return "NULL";
890         }
891         $arr = $object->toArray();
892         $fields = array();
893         foreach ($arr as $k => $v) {
894                 $fields[] = "$k='$v'";
895         }
896         $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
897         return $objstring;
898 }
899
900 function common_valid_http_url($url) {
901         return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
902 }
903
904 function common_valid_tag($tag) {
905         if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
906                 return (Validate::email($matches[1]) ||
907                                 preg_match('/^([\w-\.]+)$/', $matches[1]));
908         }
909         return false;
910 }
911
912 # Does a little before-after block for next/prev page
913
914 function common_pagination($have_before, $have_after, $page, $action, $args=NULL) {
915
916         if ($have_before || $have_after) {
917                 common_element_start('div', array('id' => 'pagination'));
918                 common_element_start('ul', array('id' => 'nav_pagination'));
919         }
920
921         if ($have_before) {
922                 $pargs = array('page' => $page-1);
923                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
924
925                 common_element_start('li', 'before');
926                 common_element('a', array('href' => common_local_url($action, $newargs)),
927                                            _t('« After'));
928                 common_element_end('li');
929         }
930
931         if ($have_after) {
932                 $pargs = array('page' => $page+1);
933                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
934                 common_element_start('li', 'after');
935                 common_element('a', array('href' => common_local_url($action, $newargs)),
936                                                    _t('Before »'));
937                 common_element_end('li');
938         }
939
940         if ($have_before || $have_after) {
941                 common_element_end('ul');
942                 common_element_end('div');
943         }
944 }
945
946 /* Following functions are copied from MediaWiki GlobalFunctions.php
947  * and written by Evan Prodromou. */
948
949 function common_accept_to_prefs($accept, $def = '*/*') {
950         # No arg means accept anything (per HTTP spec)
951         if(!$accept) {
952                 return array($def => 1);
953         }
954
955         $prefs = array();
956
957         $parts = explode(',', $accept);
958
959         foreach($parts as $part) {
960                 # FIXME: doesn't deal with params like 'text/html; level=1'
961                 @list($value, $qpart) = explode(';', $part);
962                 $match = array();
963                 if(!isset($qpart)) {
964                         $prefs[$value] = 1;
965                 } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
966                         $prefs[$value] = $match[1];
967                 }
968         }
969
970         return $prefs;
971 }
972
973 function common_mime_type_match($type, $avail) {
974         if(array_key_exists($type, $avail)) {
975                 return $type;
976         } else {
977                 $parts = explode('/', $type);
978                 if(array_key_exists($parts[0] . '/*', $avail)) {
979                         return $parts[0] . '/*';
980                 } elseif(array_key_exists('*/*', $avail)) {
981                         return '*/*';
982                 } else {
983                         return NULL;
984                 }
985         }
986 }
987
988 function common_negotiate_type($cprefs, $sprefs) {
989         $combine = array();
990
991         foreach(array_keys($sprefs) as $type) {
992                 $parts = explode('/', $type);
993                 if($parts[1] != '*') {
994                         $ckey = common_mime_type_match($type, $cprefs);
995                         if($ckey) {
996                                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
997                         }
998                 }
999         }
1000
1001         foreach(array_keys($cprefs) as $type) {
1002                 $parts = explode('/', $type);
1003                 if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1004                         $skey = common_mime_type_match($type, $sprefs);
1005                         if($skey) {
1006                                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1007                         }
1008                 }
1009         }
1010
1011         $bestq = 0;
1012         $besttype = NULL;
1013
1014         foreach(array_keys($combine) as $type) {
1015                 if($combine[$type] > $bestq) {
1016                         $besttype = $type;
1017                         $bestq = $combine[$type];
1018                 }
1019         }
1020
1021         return $besttype;
1022 }
1023
1024 function common_config($main, $sub) {
1025         global $config;
1026         return $config[$main][$sub];
1027 }
1028
1029 function common_copy_args($from) {
1030         $to = array();
1031         $strip = get_magic_quotes_gpc();
1032         foreach ($from as $k => $v) {
1033                 $to[$k] = ($strip) ? stripslashes($v) : $v;
1034         }
1035         return $to;
1036 }
1037
1038 function common_user_uri(&$user) {
1039         return common_local_url('userbyid', array('id' => $user->id));
1040 }
1041
1042 function common_notice_uri(&$notice) {
1043         return common_local_url('shownotice',
1044                 array('notice' => $notice->id));
1045 }
1046
1047 # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1048
1049 function common_confirmation_code($bits) {
1050         # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1051         static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1052         $chars = ceil($bits/5);
1053         $code = '';
1054         for ($i = 0; $i < $chars; $i++) {
1055                 # XXX: convert to string and back
1056                 $num = hexdec(common_good_rand(1));
1057                 $code .= $codechars[$num%32];
1058         }
1059         return $code;
1060 }