3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, Inc.
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.
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.
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/>.
20 /* XXX: break up into separate modules (HTTP, HTML, user, files) */
24 function common_server_error($msg) {
25 header('Status: 500 Server Error');
26 header('Content-type: text/plain');
33 function common_user_error($msg, $code=200) {
34 common_show_header('Error');
35 common_element('div', array('class' => 'error'), $msg);
41 # Start an HTML element
42 function common_element_start($tag, $attrs=NULL) {
44 $xw->startElement($tag);
45 if (is_array($attrs)) {
46 foreach ($attrs as $name => $value) {
47 $xw->writeAttribute($name, $value);
49 } else if (is_string($attrs)) {
50 $xw->writeAttribute('class', $attrs);
54 function common_element_end($tag) {
59 function common_element($tag, $attrs=NULL, $content=NULL) {
60 common_element_start($tag, $attrs);
65 common_element_end($tag);
68 function common_start_xml($doc=NULL, $public=NULL, $system=NULL) {
70 $xw = new XMLWriter();
71 $xw->openURI('php://output');
73 $xw->startDocument('1.0', 'UTF-8');
75 $xw->writeDTD($doc, $public, $system);
79 function common_end_xml() {
85 function common_show_header($pagetitle, $callable=NULL, $data=NULL) {
88 header('Content-Type: application/xhtml+xml');
90 common_start_xml('html',
91 '-//W3C//DTD XHTML 1.0 Strict//EN',
92 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
94 # FIXME: correct language for interface
96 common_element_start('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
100 common_element_start('head');
101 common_element('title', NULL,
102 $pagetitle . " - " . $config['site']['name']);
103 common_element('link', array('rel' => 'stylesheet',
104 'type' => 'text/css',
105 'href' => $config['site']['path'] . 'theme/default/style/html.css',
106 'media' => 'screen, projection, tv'));
107 common_element('link', array('rel' => 'stylesheet',
108 'type' => 'text/css',
109 'href' => $config['site']['path'] . 'theme/default/style/layout.css',
110 'media' => 'screen, projection, tv'));
111 common_element('link', array('rel' => 'stylesheet',
112 'type' => 'text/css',
113 'href' => $config['site']['path'] . 'theme/default/style/print.css',
114 'media' => 'print'));
117 call_user_func($callable, $data);
119 call_user_func($callable);
122 common_element_end('head');
123 common_element_start('body');
124 common_element_start('div', array('id' => 'wrapper'));
125 common_element_start('div', array('id' => 'content'));
126 common_element_start('div', array('id' => 'header'));
127 common_element('h1', 'title', $pagetitle);
128 common_element('h2', 'subtitle', $config['site']['name']);
129 common_element_end('div');
131 common_element_start('div', array('id' => 'page'));
134 function common_show_footer() {
136 common_element_start('div', 'footer');
138 common_license_block();
139 common_element_end('div');
140 common_element_end('div');
141 common_element_end('div');
142 common_element_end('div');
143 common_element_end('body');
144 common_element_end('html');
148 function common_text($txt) {
153 function common_license_block() {
155 common_element_start('p', 'license');
156 common_element_start('a', array('class' => 'license floatLeft',
158 href => $config['license']['url']));
159 common_element('img', array('class' => 'license',
160 'src' => $config['license']['image'],
161 'alt' => $config['license']['title']));
162 common_element_end('a');
163 common_element_start('span', 'floatRight');
164 common_text(_t('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
165 common_element('a', array('class' => 'license',
167 href => $config['license']['url']),
168 $config['license']['title']);
169 common_text(_t('. Contributors should be attributed by full name or nickname.'));
170 common_element_end('span');
171 common_element_end('p');
174 function common_head_menu() {
175 $user = common_current_user();
176 common_element_start('ul', array('id' => 'menu', 'class' => ($user) ? 'five' : 'three'));
177 common_menu_item(common_local_url('public'), _t('Public'));
179 common_menu_item(common_local_url('all', array('nickname' =>
182 common_menu_item(common_local_url('showstream', array('nickname' =>
184 _t('Profile'), $user->fullname || $user->nickname);
185 common_menu_item(common_local_url('profilesettings'),
187 common_menu_item(common_local_url('logout'),
190 common_menu_item(common_local_url('login'),
192 common_menu_item(common_local_url('register'),
195 common_element_end('ul');
198 function common_foot_menu() {
199 common_element_start('ul', 'footmenu menuish');
200 common_menu_item(common_local_url('doc', array('title' => 'about')),
202 common_menu_item(common_local_url('doc', array('title' => 'help')),
204 common_menu_item(common_local_url('doc', array('title' => 'privacy')),
206 common_menu_item(common_local_url('doc', array('title' => 'source')),
208 common_element_end('ul');
211 function common_menu_item($url, $text, $title=NULL) {
212 $attrs['href'] = $url;
214 $attrs['title'] = $title;
216 common_element_start('li', 'menuitem');
217 common_element('a', $attrs, $text);
218 common_element_end('li');
221 function common_input($id, $label, $value=NULL) {
222 common_element_start('p');
223 common_element('label', array('for' => $id), $label);
224 $attrs = array('name' => $id,
228 $attrs['value'] = htmlspecialchars($value);
230 common_element('input', $attrs);
231 common_element_end('p');
234 function common_password($id, $label) {
235 common_element_start('p');
236 common_element('label', array('for' => $id), $label);
237 $attrs = array('name' => $id,
238 'type' => 'password',
240 common_element('input', $attrs);
241 common_element_end('p');
244 function common_submit($id, $label) {
246 common_element_start('p');
247 common_element_start('label', array('for' => $id));
248 $xw->writeRaw(' ');
249 common_element_end('label');
250 common_element('input', array('type' => 'submit',
254 'class' => 'button'));
255 common_element_end('p');
258 function common_textarea($id, $label, $content=NULL) {
259 common_element_start('p');
260 common_element('label', array('for' => $id), $label);
261 common_element('textarea', array('rows' => 3,
265 'class' => 'width50'),
266 ($content) ? $content : ' ');
267 common_element_end('p');
270 # salted, hashed passwords are stored in the DB
272 function common_munge_password($id, $password) {
273 return md5($id . $password);
276 # check if a username exists and has matching password
277 function common_check_user($nickname, $password) {
278 $user = User::staticGet('nickname', $nickname);
279 if (is_null($user)) {
282 return (0 == strcmp(common_munge_password($password, $user->id),
287 # is the current user logged in?
288 function common_logged_in() {
289 return (!is_null(common_current_user()));
292 function common_have_session() {
293 return (0 != strcmp(session_id(), ''));
296 function common_ensure_session() {
297 if (!common_have_session()) {
302 function common_set_user($nickname) {
303 if (is_null($nickname) && common_have_session()) {
304 unset($_SESSION['userid']);
307 $user = User::staticGet('nickname', $nickname);
309 common_ensure_session();
310 $_SESSION['userid'] = $user->id;
319 # who is the current user?
320 function common_current_user() {
321 static $user = NULL; # FIXME: global memcached
322 if (is_null($user)) {
323 common_ensure_session();
324 $id = $_SESSION['userid'];
326 $user = User::staticGet($id);
332 # get canonical version of nickname for comparison
333 function common_canonical_nickname($nickname) {
334 # XXX: UTF-8 canonicalization (like combining chars)
338 # get canonical version of email for comparison
339 function common_canonical_email($email) {
340 # XXX: canonicalize UTF-8
341 # XXX: lcase the domain part
345 function common_render_content($text) {
349 return htmlspecialchars($text);
352 // where should the avatar go for this user?
354 function common_avatar_filename($user, $extension, $size=NULL, $extra=NULL) {
358 return $user->id . '-' . $size . (($extra) ? ('-' . $extra) : '') . $extension;
360 return $user->id . '-original' . (($extra) ? ('-' . $extra) : '') . $extension;
364 function common_avatar_path($filename) {
366 return $config['avatar']['directory'] . '/' . $filename;
369 function common_avatar_url($filename) {
371 return "http://".$config['site']['server'].$config['avatar']['path'].'/'.$filename;
374 function common_default_avatar($size) {
375 static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
376 AVATAR_STREAM_SIZE => 'stream',
377 AVATAR_MINI_SIZE => 'mini');
379 return "http://".$config['site']['server'].$config['site']['path'].'/'.$config['avatar']['default'][$sizenames[$size]];
382 function common_local_url($action, $args=NULL) {
384 /* XXX: pretty URLs */
387 foreach ($args as $key => $value) {
388 $extra .= "&${key}=${value}";
391 $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
392 return "http://".$config['site']['server'].'/'.$pathpart."index.php?action=${action}${extra}";
395 function common_date_string($dt) {
396 // XXX: do some sexy date formatting
397 // return date(DATE_RFC822, $dt);
401 function common_date_w3dtf($dt) {
403 return date(DATE_W3C, $t);
406 function common_redirect($url, $code=307) {
407 static $status = array(301 => "Moved Permanently",
410 307 => "Temporary Redirect");
411 header("Status: ${code} $status[$code]");
412 header("Location: $url");
413 common_element('a', array('href' => $url), $url);
416 function common_broadcast_notice($notice) {
417 // XXX: broadcast notices to remote subscribers
418 // XXX: broadcast notices to SMS
419 // XXX: broadcast notices to Jabber
420 // XXX: broadcast notices to other IM
421 // XXX: use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
425 function common_profile_url($nickname) {
426 return common_local_url('showstream', array('nickname' => $nickname));
429 function common_notice_form() {
430 common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
431 'action' => common_local_url('newnotice')));
432 common_textarea('noticecontent', _t('What\'s up?'));
433 common_submit('submit', _t('Send'));
434 common_element_end('form');
437 function common_mint_tag($extra) {
440 'tag:'.$config['tag']['authority'].','.
441 $config['tag']['date'].':'.$config['tag']['prefix'].$extra;
444 # Should make up a reasonable root URL
446 function common_root_url() {
448 $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
449 return "http://".$config['site']['server'].'/'.$pathpart;
452 # returns $bytes bytes of random data as a hexadecimal string
453 # "good" here is a goal and not a guarantee
455 function common_good_rand($bytes) {
456 # XXX: use random.org...?
457 if (file_exists('/dev/urandom')) {
458 return common_urandom($bytes);
459 } else { # FIXME: this is probably not good enough
460 return common_mtrand($bytes);
464 function common_urandom($bytes) {
465 $h = fopen('/dev/urandom', 'rb');
467 $src = fread($h, $bytes);
470 for ($i = 0; $i < $bytes; $i++) {
471 $enc .= sprintf("%02x", (ord($src[$i])));
476 function common_mtrand($bytes) {
478 for ($i = 0; $i < $bytes; $i++) {
479 $enc .= sprintf("%02x", mt_rand(0, 255));
484 function common_timestamp() {
485 return date('YmdHis');
488 // XXX: set up gettext