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_show_header($pagetitle) {
71 header('Content-Type: application/xhtml+xml');
73 $xw = new XMLWriter();
74 $xw->openURI('php://output');
76 $xw->startDocument('1.0', 'UTF-8');
77 $xw->writeDTD('html', '-//W3C//DTD XHTML 1.0 Strict//EN',
78 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
80 # FIXME: correct language for interface
82 common_element_start('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
86 common_element_start('head');
87 common_element('title', NULL,
88 $pagetitle . " - " . $config['site']['name']);
89 common_element('link', array('rel' => 'stylesheet',
91 'href' => $config['site']['path'] . 'theme/default/style/html.css',
92 'media' => 'screen, projection, tv'));
93 common_element('link', array('rel' => 'stylesheet',
95 'href' => $config['site']['path'] . 'theme/default/style/layout.css',
96 'media' => 'screen, projection, tv'));
97 common_element('link', array('rel' => 'stylesheet',
99 'href' => $config['site']['path'] . 'theme/default/style/print.css',
100 'media' => 'print'));
101 common_element_end('head');
102 common_element_start('body');
103 common_element_start('div', array('id' => 'wrapper'));
104 common_element_start('div', array('id' => 'content'));
105 common_element_start('div', array('id' => 'header'));
106 common_element('h1', 'title', $pagetitle);
107 common_element('h2', 'subtitle', $config['site']['name']);
108 common_element_end('div');
110 common_element_start('div', array('id' => 'page'));
113 function common_show_footer() {
115 common_element_start('div', 'footer');
117 common_license_block();
118 common_element_end('div');
119 common_element_end('div');
120 common_element_end('div');
121 common_element_end('div');
122 common_element_end('body');
123 common_element_end('html');
128 function common_text($txt) {
133 function common_license_block() {
135 common_element_start('div', 'license');
136 common_element_start('a', array('class' => 'license',
138 href => $config['license']['url']));
139 common_element('img', array('class' => 'license',
140 'src' => $config['license']['image'],
141 'alt' => $config['license']['title']));
142 common_element_end('a');
143 common_text(_t('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
144 common_element('a', array('class' => 'license',
146 href => $config['license']['url']),
147 $config['license']['title']);
148 common_text(_t('. Contributors should be attributed by full name or nickname.'));
149 common_element_end('div');
152 function common_head_menu() {
153 $user = common_current_user();
154 common_element_start('ul', array('id' => 'menu', 'class' => ($user) ? 'five' : 'three'));
155 common_menu_item(common_local_url('doc', array('title' => 'help')),
158 common_menu_item(common_local_url('all', array('nickname' =>
161 common_menu_item(common_local_url('showstream', array('nickname' =>
163 _t('Profile'), $user->fullname || $user->nickname);
164 common_menu_item(common_local_url('profilesettings'),
166 common_menu_item(common_local_url('logout'),
169 common_menu_item(common_local_url('login'),
171 common_menu_item(common_local_url('register'),
174 common_element_end('ul');
177 function common_foot_menu() {
178 common_element_start('ul', 'footmenu menuish');
179 common_menu_item(common_local_url('doc', array('title' => 'about')),
181 common_menu_item(common_local_url('doc', array('title' => 'help')),
183 common_menu_item(common_local_url('doc', array('title' => 'privacy')),
185 common_element_end('ul');
188 function common_menu_item($url, $text, $title=NULL) {
189 $attrs['href'] = $url;
191 $attrs['title'] = $title;
193 common_element_start('li', 'menuitem');
194 common_element('a', $attrs, $text);
195 common_element_end('li');
198 function common_input($id, $label, $value=NULL) {
199 common_element_start('p');
200 common_element('label', array('for' => $id), $label);
201 $attrs = array('name' => $id,
205 $attrs['value'] = htmlspecialchars($value);
207 common_element('input', $attrs);
208 common_element_end('p');
211 function common_password($id, $label) {
212 common_element_start('p');
213 common_element('label', array('for' => $id), $label);
214 $attrs = array('name' => $id,
215 'type' => 'password',
217 common_element('input', $attrs);
218 common_element_end('p');
221 function common_submit($id, $label) {
223 common_element_start('p');
224 common_element_start('label', array('for' => $id));
225 $xw->writeRaw(' ');
226 common_element_end('label');
227 common_element('input', array('type' => 'submit',
231 'class' => 'button'));
232 common_element_end('p');
235 function common_textarea($id, $label, $content=NULL) {
236 common_element_start('p');
237 common_element('label', array('for' => $id), $label);
238 common_element('textarea', array('rows' => 3,
242 'class' => 'width50'),
243 ($content) ? $content : ' ');
244 common_element_end('p');
247 # salted, hashed passwords are stored in the DB
249 function common_munge_password($id, $password) {
250 return md5($id . $password);
253 # check if a username exists and has matching password
254 function common_check_user($nickname, $password) {
255 $user = User::staticGet('nickname', $nickname);
256 if (is_null($user)) {
259 return (0 == strcmp(common_munge_password($password, $user->id),
264 # is the current user logged in?
265 function common_logged_in() {
266 return (!is_null(common_current_user()));
269 function common_have_session() {
270 return (0 != strcmp(session_id(), ''));
273 function common_ensure_session() {
274 if (!common_have_session()) {
279 function common_set_user($nickname) {
280 if (is_null($nickname) && common_have_session()) {
281 unset($_SESSION['userid']);
284 $user = User::staticGet('nickname', $nickname);
286 common_ensure_session();
287 $_SESSION['userid'] = $user->id;
296 # who is the current user?
297 function common_current_user() {
298 static $user = NULL; # FIXME: global memcached
299 if (is_null($user)) {
300 common_ensure_session();
301 $id = $_SESSION['userid'];
303 $user = User::staticGet($id);
309 # get canonical version of nickname for comparison
310 function common_canonical_nickname($nickname) {
311 # XXX: UTF-8 canonicalization (like combining chars)
315 # get canonical version of email for comparison
316 function common_canonical_email($email) {
317 # XXX: canonicalize UTF-8
318 # XXX: lcase the domain part
322 function common_render_content($text) {
326 return htmlspecialchars($text);
329 // where should the avatar go for this user?
331 function common_avatar_filename($user, $extension, $size=NULL) {
335 return $user->id . '-' . $size . $extension;
337 return $user->id . '-original' . $extension;
341 function common_avatar_path($filename) {
343 return $config['avatar']['directory'] . '/' . $filename;
346 function common_avatar_url($filename) {
348 return $config['avatar']['path'] . '/' . $filename;
351 function common_local_url($action, $args=NULL) {
353 /* XXX: pretty URLs */
356 foreach ($args as $key => $value) {
357 $extra .= "&${key}=${value}";
360 $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
361 return "http://".$config['site']['server'].'/'.$pathpart."index.php?action=${action}${extra}";
364 function common_date_string($dt) {
365 // XXX: do some sexy date formatting
366 // return date(DATE_RFC822, $dt);
370 function common_redirect($url, $code=307) {
371 static $status = array(301 => "Moved Permanently",
374 307 => "Temporary Redirect");
375 header("Status: ${code} $status[$code]");
376 header("Location: $url");
377 common_element('a', array('href' => $url), $url);
380 function common_broadcast_notices($id) {
381 // XXX: broadcast notices to remote subscribers
382 // XXX: broadcast notices to SMS
383 // XXX: broadcast notices to Jabber
384 // XXX: broadcast notices to other IM
385 // XXX: use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
389 function common_profile_url($nickname) {
390 return common_local_url('showstream', array('nickname' => $nickname));
393 function common_notice_form() {
394 common_element_start('form', array('id' => 'newnotice', 'method' => 'POST',
395 'action' => common_local_url('newnotice')));
396 common_textarea('noticecontent', _t('What\'s up?'));
397 common_submit('submit', _t('Send'));
398 common_element_end('form');
401 // XXX: set up gettext