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('div', 'license');
156 common_element_start('a', array('class' => 'license',
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_text(_t('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
164 common_element('a', array('class' => 'license',
166 href => $config['license']['url']),
167 $config['license']['title']);
168 common_text(_t('. Contributors should be attributed by full name or nickname.'));
169 common_element_end('div');
172 function common_head_menu() {
173 $user = common_current_user();
174 common_element_start('ul', array('id' => 'menu', 'class' => ($user) ? 'five' : 'three'));
175 common_menu_item(common_local_url('public'), _t('Public'));
177 common_menu_item(common_local_url('all', array('nickname' =>
180 common_menu_item(common_local_url('showstream', array('nickname' =>
182 _t('Profile'), $user->fullname || $user->nickname);
183 common_menu_item(common_local_url('profilesettings'),
185 common_menu_item(common_local_url('logout'),
188 common_menu_item(common_local_url('login'),
190 common_menu_item(common_local_url('register'),
193 common_element_end('ul');
196 function common_foot_menu() {
197 common_element_start('ul', 'footmenu menuish');
198 common_menu_item(common_local_url('doc', array('title' => 'about')),
200 common_menu_item(common_local_url('doc', array('title' => 'help')),
202 common_menu_item(common_local_url('doc', array('title' => 'privacy')),
204 common_menu_item(common_local_url('doc', array('title' => 'source')),
206 common_element_end('ul');
209 function common_menu_item($url, $text, $title=NULL) {
210 $attrs['href'] = $url;
212 $attrs['title'] = $title;
214 common_element_start('li', 'menuitem');
215 common_element('a', $attrs, $text);
216 common_element_end('li');
219 function common_input($id, $label, $value=NULL) {
220 common_element_start('p');
221 common_element('label', array('for' => $id), $label);
222 $attrs = array('name' => $id,
226 $attrs['value'] = htmlspecialchars($value);
228 common_element('input', $attrs);
229 common_element_end('p');
232 function common_password($id, $label) {
233 common_element_start('p');
234 common_element('label', array('for' => $id), $label);
235 $attrs = array('name' => $id,
236 'type' => 'password',
238 common_element('input', $attrs);
239 common_element_end('p');
242 function common_submit($id, $label) {
244 common_element_start('p');
245 common_element_start('label', array('for' => $id));
246 $xw->writeRaw(' ');
247 common_element_end('label');
248 common_element('input', array('type' => 'submit',
252 'class' => 'button'));
253 common_element_end('p');
256 function common_textarea($id, $label, $content=NULL) {
257 common_element_start('p');
258 common_element('label', array('for' => $id), $label);
259 common_element('textarea', array('rows' => 3,
263 'class' => 'width50'),
264 ($content) ? $content : ' ');
265 common_element_end('p');
268 # salted, hashed passwords are stored in the DB
270 function common_munge_password($id, $password) {
271 return md5($id . $password);
274 # check if a username exists and has matching password
275 function common_check_user($nickname, $password) {
276 $user = User::staticGet('nickname', $nickname);
277 if (is_null($user)) {
280 return (0 == strcmp(common_munge_password($password, $user->id),
285 # is the current user logged in?
286 function common_logged_in() {
287 return (!is_null(common_current_user()));
290 function common_have_session() {
291 return (0 != strcmp(session_id(), ''));
294 function common_ensure_session() {
295 if (!common_have_session()) {
300 function common_set_user($nickname) {
301 if (is_null($nickname) && common_have_session()) {
302 unset($_SESSION['userid']);
305 $user = User::staticGet('nickname', $nickname);
307 common_ensure_session();
308 $_SESSION['userid'] = $user->id;
317 # who is the current user?
318 function common_current_user() {
319 static $user = NULL; # FIXME: global memcached
320 if (is_null($user)) {
321 common_ensure_session();
322 $id = $_SESSION['userid'];
324 $user = User::staticGet($id);
330 # get canonical version of nickname for comparison
331 function common_canonical_nickname($nickname) {
332 # XXX: UTF-8 canonicalization (like combining chars)
336 # get canonical version of email for comparison
337 function common_canonical_email($email) {
338 # XXX: canonicalize UTF-8
339 # XXX: lcase the domain part
343 function common_render_content($text) {
347 return htmlspecialchars($text);
350 // where should the avatar go for this user?
352 function common_avatar_filename($user, $extension, $size=NULL) {
356 return $user->id . '-' . $size . $extension;
358 return $user->id . '-original' . $extension;
362 function common_avatar_path($filename) {
364 return $config['avatar']['directory'] . '/' . $filename;
367 function common_avatar_url($filename) {
369 return "http://".$config['site']['server'].$config['avatar']['path'].'/'.$filename;
372 function common_default_avatar($size) {
373 static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
374 AVATAR_STREAM_SIZE => 'stream',
375 AVATAR_MINI_SIZE => 'mini');
377 return "http://".$config['site']['server'].$config['site']['path'].'/'.$config['avatar']['default'][$sizenames[$size]];
380 function common_local_url($action, $args=NULL) {
382 /* XXX: pretty URLs */
385 foreach ($args as $key => $value) {
386 $extra .= "&${key}=${value}";
389 $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
390 return "http://".$config['site']['server'].'/'.$pathpart."index.php?action=${action}${extra}";
393 function common_date_string($dt) {
394 // XXX: do some sexy date formatting
395 // return date(DATE_RFC822, $dt);
399 function common_date_w3dtf($dt) {
401 return date(DATE_W3C, $t);
404 function common_redirect($url, $code=307) {
405 static $status = array(301 => "Moved Permanently",
408 307 => "Temporary Redirect");
409 header("Status: ${code} $status[$code]");
410 header("Location: $url");
411 common_element('a', array('href' => $url), $url);
414 function common_broadcast_notice($notice) {
415 // XXX: broadcast notices to remote subscribers
416 // XXX: broadcast notices to SMS
417 // XXX: broadcast notices to Jabber
418 // XXX: broadcast notices to other IM
419 // XXX: use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
423 function common_profile_url($nickname) {
424 return common_local_url('showstream', array('nickname' => $nickname));
427 function common_notice_form() {
428 common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
429 'action' => common_local_url('newnotice')));
430 common_textarea('noticecontent', _t('What\'s up?'));
431 common_submit('submit', _t('Send'));
432 common_element_end('form');
435 function common_mint_tag($extra) {
438 'tag:'.$config['tag']['authority'].','.
439 $config['tag']['date'].':'.$config['tag']['prefix'].$extra;
442 // XXX: set up gettext