]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
c64cd5979404fa01fe02809e11b8315d9ed0842f
[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 function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=NULL) {
127         global $config, $xw;
128
129         header('Content-Type: application/xhtml+xml');
130
131         common_start_xml('html',
132                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
133                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
134
135         # FIXME: correct language for interface
136
137         common_element_start('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
138                                                                            'xml:lang' => 'en',
139                                                                            'lang' => 'en'));
140
141         common_element_start('head');
142         common_element('title', NULL,
143                                    $pagetitle . " - " . $config['site']['name']);
144         common_element('link', array('rel' => 'stylesheet',
145                                                                  'type' => 'text/css',
146                                                                  'href' => theme_path('display.css'),
147                                                                  'media' => 'screen, projection, tv'));
148         foreach (array(6,7) as $ver) {
149                 if (file_exists(theme_file('ie'.$ver.'.css'))) {
150                         # Yes, IE people should be put in jail.
151                         $xw->writeComment('[if lte IE '.$ver.']><link rel="stylesheet" type="text/css" '.
152                                                           'href="'.theme_path('ie'.$ver.'.css').' /><![endif]');
153                 }
154         }
155         if ($callable) {
156                 if ($data) {
157                         call_user_func($callable, $data);
158                 } else {
159                         call_user_func($callable);
160                 }
161         }
162         common_element_end('head');
163         common_element_start('body');
164         common_element_start('div', array('id' => 'wrap'));
165         common_element_start('div', array('id' => 'header'));
166         common_nav_menu();
167         common_element_start('a', array('href' => common_local_url('public')));
168         common_element('img', array('src' => ($config['site']['logo']) ? 
169                                                                 ($config['site']['logo']) : theme_path('logo.png'),
170                                                                 'alt' => $config['site']['name'],
171                                                                 'id' => 'logo'));
172         common_element_end('a');
173         if ($headercall) {
174                 if ($data) {
175                         call_user_func($headercall, $data);
176                 } else {
177                         call_user_func($headercall);
178                 }
179         }
180         common_element_end('div');
181         common_element_start('div', array('id' => 'content'));
182 }
183
184 function common_show_footer() {
185         global $xw, $config;
186         common_element_end('div'); # content div
187         common_foot_menu();
188         common_element_start('div', array('id' => 'footer'));
189         common_element('img', array('id' => 'cc',
190                                                                 'src' => $config['license']['image'],
191                                                                 'alt' => $config['license']['title']));
192         common_element_start('p');
193         common_text(_t('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
194         common_element('a', array('class' => 'license',
195                                                           'rel' => 'license',
196                                                           href => $config['license']['url']),
197                                    $config['license']['title']);
198         common_text(_t('. Contributors should be attributed by full name or nickname.'));
199         common_element_end('p');
200         common_element_end('div');
201         common_element_end('div');
202         common_element_end('body');
203         common_element_end('html');
204         common_end_xml();
205 }
206
207 function common_text($txt) {
208         global $xw;
209         $xw->text($txt);
210 }
211
212 function common_raw($xml) {
213         global $xw;
214         $xw->writeRaw($xml);
215 }
216
217 function common_nav_menu() {
218         $user = common_current_user();
219         common_element_start('ul', array('id' => 'nav'));
220         if ($user) {
221                 common_menu_item(common_local_url('all', array('nickname' => $user->nickname)),
222                                                  _t('Home'));
223         }
224         common_menu_item(common_local_url('public'), _t('Public'));
225         common_menu_item(common_local_url('doc', array('title' => 'help')),
226                                          _t('Help'));
227         if ($user) {
228                 common_menu_item(common_local_url('profilesettings'),
229                                                  _t('Settings'));
230                 common_menu_item(common_local_url('logout'),
231                                                  _t('Logout'));
232         } else {
233                 common_menu_item(common_local_url('login'), _t('Login'));
234                 common_menu_item(common_local_url('register'), _t('Register'));
235         }
236         common_element_end('ul');
237 }
238
239 function common_foot_menu() {
240         common_element_start('ul', array('id' => 'nav_sub'));
241         common_menu_item(common_local_url('doc', array('title' => 'about')),
242                                          _t('About'));
243         common_menu_item(common_local_url('doc', array('title' => 'privacy')),
244                                          _t('Privacy'));
245         common_menu_item(common_local_url('doc', array('title' => 'source')),
246                                          _t('Source'));
247         common_element_end('ul');
248 }
249
250 function common_menu_item($url, $text, $title=NULL, $is_selected=false) {
251         $lattrs = array();
252         if ($is_selected) {
253                 $lattrs['class'] = 'current';
254         }
255         common_element_start('li', $lattrs);
256         $attrs['href'] = $url;
257         if ($title) {
258                 $attrs['title'] = $title;
259         }
260         common_element('a', $attrs, $text);
261         common_element_end('li');
262 }
263
264 function common_input($id, $label, $value=NULL,$instructions=NULL) {
265         common_element_start('p');
266         common_element('label', array('for' => $id), $label);
267         $attrs = array('name' => $id,
268                                    'type' => 'text',
269                                    'id' => $id);
270         if ($value) {
271                 $attrs['value'] = htmlspecialchars($value);
272         }
273         common_element('input', $attrs);
274         if ($instructions) {
275                 common_element('span', 'input_instructions', $instructions);
276         }
277         common_element_end('p');
278 }
279
280 function common_hidden($id, $value) {
281         common_element('input', array('name' => $id,
282                                                                   'type' => 'hidden',
283                                                                   'id' => $id,
284                                                                   'value' => $value));
285 }
286
287 function common_password($id, $label, $instructions=NULL) {
288         common_element_start('p');
289         common_element('label', array('for' => $id), $label);
290         $attrs = array('name' => $id,
291                                    'type' => 'password',
292                                    'id' => $id);
293         common_element('input', $attrs);
294         if ($instructions) {
295                 common_element('span', 'input_instructions', $instructions);
296         }
297         common_element_end('p');
298 }
299
300 function common_submit($id, $label) {
301         global $xw;
302         common_element_start('p');
303         common_element('input', array('type' => 'submit',
304                                                                   'id' => $id,
305                                                                   'name' => $id,
306                                                                   'value' => $label));
307         common_element_end('p');
308 }
309
310 function common_textarea($id, $label, $content=NULL, $instructions=NULL) {
311         common_element_start('p');
312         common_element('label', array('for' => $id), $label);
313         common_element('textarea', array('rows' => 3,
314                                                                          'cols' => 40,
315                                                                          'name' => $id,
316                                                                          'id' => $id),
317                                    ($content) ? $content : ' ');
318         if ($instructions) {
319                 common_element('span', 'input_instructions', $instructions);
320         }
321         common_element_end('p');
322 }
323
324 # salted, hashed passwords are stored in the DB
325
326 function common_munge_password($id, $password) {
327         return md5($id . $password);
328 }
329
330 # check if a username exists and has matching password
331 function common_check_user($nickname, $password) {
332         $user = User::staticGet('nickname', $nickname);
333         if (is_null($user)) {
334                 return false;
335         } else {
336                 return (0 == strcmp(common_munge_password($password, $user->id),
337                                                         $user->password));
338         }
339 }
340
341 # is the current user logged in?
342 function common_logged_in() {
343         return (!is_null(common_current_user()));
344 }
345
346 function common_have_session() {
347         return (0 != strcmp(session_id(), ''));
348 }
349
350 function common_ensure_session() {
351         if (!common_have_session()) {
352                 @session_start();
353         }
354 }
355
356 function common_set_user($nickname) {
357         if (is_null($nickname) && common_have_session()) {
358                 unset($_SESSION['userid']);
359                 return true;
360         } else {
361                 $user = User::staticGet('nickname', $nickname);
362                 if ($user) {
363                         common_ensure_session();
364                         $_SESSION['userid'] = $user->id;
365                         return true;
366                 } else {
367                         return false;
368                 }
369         }
370         return false;
371 }
372
373 # who is the current user?
374 function common_current_user() {
375         static $user = NULL; # FIXME: global memcached
376         if (is_null($user)) {
377                 common_ensure_session();
378                 $id = $_SESSION['userid'];
379                 if ($id) {
380                         $user = User::staticGet($id);
381                 }
382         }
383         return $user;
384 }
385
386 # get canonical version of nickname for comparison
387 function common_canonical_nickname($nickname) {
388         # XXX: UTF-8 canonicalization (like combining chars)
389         return strtolower($nickname);
390 }
391
392 # get canonical version of email for comparison
393 function common_canonical_email($email) {
394         # XXX: canonicalize UTF-8
395         # XXX: lcase the domain part
396         return $email;
397 }
398
399 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$_+!*();/?:~-]))');
400
401 function common_render_content($text, $notice) {
402         $r = htmlspecialchars($text);
403         $id = $notice->profile_id;
404         $r = preg_replace('@https?://\S+@', '<a href="\0" class="extlink">\0</a>', $r);
405         $r = preg_replace('/(^|\b)@([\w-]+)($|\b)/e', "'\\1@'.common_at_link($id, '\\2').'\\3'", $r);
406         # XXX: # tags
407         # XXX: machine tags
408         return $r;
409 }
410
411 function common_at_link($sender_id, $nickname) {
412         # Try to find profiles this profile is subscribed to that have this nickname
413         $recipient = new Profile();
414         # XXX: chokety and bad
415         $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender_id.' and subscribed = id)', 'AND');
416         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
417         if ($recipient->find(TRUE)) {
418                 return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink tolistenee">'.$nickname.'</a>';
419         }
420         # Try to find profiles that listen to this profile and that have this nickname
421         $recipient = new Profile();
422         # XXX: chokety and bad
423         $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender_id.' and subscriber = id)', 'AND');
424         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
425         if ($recipient->find(TRUE)) {
426                 return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink tolistener">'.$nickname.'</a>';
427         }
428         # If this is a local user, try to find a local user with that nickname.
429         $sender = User::staticGet($sender_id);
430         if ($sender) {
431                 $recipient_user = User::staticGet('nickname', $nickname);
432                 if ($recipient_user) {
433                         $recipient = $recipient->getProfile();
434                         return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink usertouser">'.$nickname.'</a>';
435                 }
436         }
437         # Otherwise, no links. @messages from local users to remote users,
438         # or from remote users to other remote users, are just
439         # outside our ability to make intelligent guesses about
440         return $nickname;
441 }
442
443 // where should the avatar go for this user?
444
445 function common_avatar_filename($id, $extension, $size=NULL, $extra=NULL) {
446         global $config;
447
448         if ($size) {
449                 return $id . '-' . $size . (($extra) ? ('-' . $extra) : '') . $extension;
450         } else {
451                 return $id . '-original' . (($extra) ? ('-' . $extra) : '') . $extension;
452         }
453 }
454
455 function common_avatar_path($filename) {
456         global $config;
457         return INSTALLDIR . '/avatar/' . $filename;
458 }
459
460 function common_avatar_url($filename) {
461         return common_path('avatar/'.$filename);
462 }
463
464 function common_default_avatar($size) {
465         static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
466                                                           AVATAR_STREAM_SIZE => 'stream',
467                                                           AVATAR_MINI_SIZE => 'mini');
468         return theme_path('default-avatar-'.$sizenames[$size].'.png');
469 }
470
471 function common_local_url($action, $args=NULL) {
472         global $config;
473         if ($config['site']['fancy']) {
474                 return common_fancy_url($action, $args);
475         } else {
476                 return common_simple_url($action, $args);
477         }
478 }
479
480 function common_fancy_url($action, $args=NULL) {
481         switch (strtolower($action)) {
482          case 'public':
483                 return common_path('');
484          case 'publicrss':
485                 return common_path('rss');
486          case 'doc':
487                 return common_path('doc/'.$args['title']);
488          case 'login':
489          case 'logout':
490          case 'register':
491          case 'subscribe':
492          case 'unsubscribe':
493                 return common_path('main/'.$action);
494          case 'avatar':
495          case 'password':
496                 return common_path('settings/'.$action);
497          case 'profilesettings':
498                 return common_path('settings/profile');
499          case 'newnotice':
500                 return common_path('notice/new');
501          case 'shownotice':
502                 return common_path('notice/'.$args['notice']);
503          case 'subscriptions':
504          case 'subscribed':
505          case 'xrds':           
506          case 'all':
507          case 'foaf':
508                 return common_path($args['nickname'].'/'.$action);
509          case 'allrss':
510                 return common_path($args['nickname'].'/all/rss');
511          case 'userrss':
512                 return common_path($args['nickname'].'/rss');
513          case 'showstream':
514                 return common_path($args['nickname']);
515          default:
516                 return common_simple_url($action, $args);
517         }
518 }
519
520 function common_simple_url($action, $args=NULL) {
521         global $config;
522         /* XXX: pretty URLs */
523         $extra = '';
524         if ($args) {
525                 foreach ($args as $key => $value) {
526                         $extra .= "&${key}=${value}";
527                 }
528         }
529         return common_path("index.php?action=${action}${extra}");
530 }
531
532 function common_path($relative) {
533         global $config;
534         $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
535         return "http://".$config['site']['server'].'/'.$pathpart.$relative;
536 }
537
538 function common_date_string($dt) {
539         // XXX: do some sexy date formatting
540         // return date(DATE_RFC822, $dt);
541         return $dt;
542 }
543
544 function common_date_w3dtf($dt) {
545         $t = strtotime($dt);
546         return date(DATE_W3C, $t);
547 }
548
549 function common_redirect($url, $code=307) {
550         static $status = array(301 => "Moved Permanently",
551                                                    302 => "Found",
552                                                    303 => "See Other",
553                                                    307 => "Temporary Redirect");
554         header("Status: ${code} $status[$code]");
555         header("Location: $url");
556         common_element('a', array('href' => $url), $url);
557 }
558
559 function common_broadcast_notice($notice, $remote=false) {
560         // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
561         if (!$remote) {
562                 # Make sure we have the OMB stuff
563                 require_once(INSTALLDIR.'/lib/omb.php');
564                 omb_broadcast_remote_subscribers($notice);
565         }
566         // XXX: broadcast notices to Jabber
567         // XXX: broadcast notices to SMS
568         // XXX: broadcast notices to other IM
569         return true;
570 }
571
572
573 function common_profile_url($nickname) {
574         return common_local_url('showstream', array('nickname' => $nickname));
575 }
576
577 # Don't call if nobody's logged in
578
579 function common_notice_form() {
580         $user = common_current_user();
581         assert(!is_null($user));
582         common_element_start('form', array('id' => 'status_form',
583                                                                            'method' => 'POST',
584                                                                            'action' => common_local_url('newnotice')));
585         common_element_start('p');
586         common_element('label', array('for' => 'status_update',
587                                                                   'id' => 'status_label'),
588                                    _t('What\'s up, ').$user->nickname.'?');
589         common_element('textarea', array('id' => 'status_textarea',
590                                                                          'name' => 'status_textarea'));
591         common_element('input', array('id' => 'status_submit',
592                                                                   'name' => 'status_submit',
593                                                                   'type' => 'submit',
594                                                                   'value' => _t('Send')));
595         common_element_end('p');
596         common_element_end('form');
597 }
598
599 function common_mint_tag($extra) {
600         global $config;
601         return
602           'tag:'.$config['tag']['authority'].','.
603           $config['tag']['date'].':'.$config['tag']['prefix'].$extra;
604 }
605
606 # Should make up a reasonable root URL
607
608 function common_root_url() {
609         return common_path('');
610 }
611
612 # returns $bytes bytes of random data as a hexadecimal string
613 # "good" here is a goal and not a guarantee
614
615 function common_good_rand($bytes) {
616         # XXX: use random.org...?
617         if (file_exists('/dev/urandom')) {
618                 return common_urandom($bytes);
619         } else { # FIXME: this is probably not good enough
620                 return common_mtrand($bytes);
621         }
622 }
623
624 function common_urandom($bytes) {
625         $h = fopen('/dev/urandom', 'rb');
626         # should not block
627         $src = fread($h, $bytes);
628         fclose($h);
629         $enc = '';
630         for ($i = 0; $i < $bytes; $i++) {
631                 $enc .= sprintf("%02x", (ord($src[$i])));
632         }
633         return $enc;
634 }
635
636 function common_mtrand($bytes) {
637         $enc = '';
638         for ($i = 0; $i < $bytes; $i++) {
639                 $enc .= sprintf("%02x", mt_rand(0, 255));
640         }
641         return $enc;
642 }
643
644 function common_set_returnto($url) {
645         common_ensure_session();
646         $_SESSION['returnto'] = $url;
647 }
648
649 function common_get_returnto() {
650         common_ensure_session();
651         return $_SESSION['returnto'];
652 }
653
654 function common_timestamp() {
655         return date('YmdHis');
656 }
657
658 // XXX: set up gettext
659
660 function _t($str) {
661         return $str;
662 }
663
664 function common_ensure_syslog() {
665         static $initialized = false;
666         if (!$initialized) {
667                 global $config;
668                 define_syslog_variables();
669                 openlog($config['syslog']['appname'], 0, LOG_USER);
670                 $initialized = true;
671         }
672 }
673
674 function common_log($priority, $msg, $filename=NULL) {
675         common_ensure_syslog();
676         syslog($priority, $msg);
677 }
678
679 function common_debug($msg, $filename=NULL) {
680         if ($filename) {
681                 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
682         } else {
683                 common_log(LOG_DEBUG, $msg);
684         }
685 }
686
687 function common_valid_http_url($url) {
688         return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
689 }
690
691 function common_valid_tag($tag) {
692         if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
693                 return (Validate::email($matches[1]) ||
694                                 preg_match('/^([\w-\.]+)$/', $matches[1]));
695         }
696         return false;
697 }
698
699 # Does a little before-after block for next/prev page
700
701 function common_pagination($have_before, $have_after, $page, $action, $args=NULL) {             
702         
703         if ($have_before || $have_after) {
704                 common_element_start('div', array('id' => 'pagination'));
705                 common_element_start('ul', array('id' => 'nav_pagination'));
706         }
707         
708         if ($have_before) {
709                 $pargs = array('page' => $page-1);
710                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
711                                                                                  
712                 common_element_start('li', 'before');
713                 common_element('a', array('href' => common_local_url($action, $newargs)),
714                                            _t('« Before'));
715                 common_element_end('li');
716         }
717
718         if ($have_after) {
719                 $pargs = array('page' => $page+1);
720                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
721                 common_element_start('li', 'after');
722                 common_element('a', array('href' => common_local_url($action, $newargs)),
723                                                    _t('After »'));
724                 common_element_end('li');
725         }
726         
727         if ($have_before || $have_after) {
728                 common_element_end('ul');
729                 common_element_end('div');
730         }
731 }