]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
fixup textarea again
[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) {
25         header('Status: 500 Server Error');
26         header('Content-type: text/plain');
27
28         print $msg;
29         exit();
30 }
31
32 # Show a user error
33 function common_user_error($msg, $code=200) {
34         common_show_header('Error');
35         common_element('div', array('class' => 'error'), $msg);
36         common_show_footer();
37 }
38
39 $xw = null;
40
41 # Start an HTML element
42 function common_element_start($tag, $attrs=NULL) {
43         global $xw;
44         $xw->startElement($tag);
45         if (is_array($attrs)) {
46                 foreach ($attrs as $name => $value) {
47                         $xw->writeAttribute($name, $value);
48                 }
49         } else if (is_string($attrs)) {
50                 $xw->writeAttribute('class', $attrs);
51         }
52 }
53
54 function common_element_end($tag) {
55         global $xw;
56         $xw->endElement();
57 }
58
59 function common_element($tag, $attrs=NULL, $content=NULL) {
60     common_element_start($tag, $attrs);
61         if ($content) {
62                 global $xw;
63                 $xw->text($content);
64         }
65         common_element_end($tag);
66 }
67
68 function common_show_header($pagetitle) {
69         global $config, $xw;
70
71         header('Content-Type: application/xhtml+xml');
72
73         $xw = new XMLWriter();
74         $xw->openURI('php://output');
75         $xw->setIndent(true);
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');
79
80         # FIXME: correct language for interface
81
82         common_element_start('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
83                                                                            'xml:lang' => 'en',
84                                                                            'lang' => 'en'));
85
86         common_element_start('head');
87         common_element('title', NULL,
88                                    $pagetitle . " - " . $config['site']['name']);
89         common_element('link', array('rel' => 'stylesheet',
90                                                                  'type' => 'text/css',
91                                                                  'href' => $config['site']['path'] . 'theme/default/style/html.css',
92                                                                  'media' => 'screen, projection, tv'));
93         common_element('link', array('rel' => 'stylesheet',
94                                                                  'type' => 'text/css',
95                                                                  'href' => $config['site']['path'] . 'theme/default/style/layout.css',
96                                                                  'media' => 'screen, projection, tv'));
97         common_element('link', array('rel' => 'stylesheet',
98                                                                  'type' => 'text/css',
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');
109         common_head_menu();
110         common_element_start('div', array('id' => 'page'));
111 }
112
113 function common_show_footer() {
114         global $xw, $config;
115         common_element_start('div', 'footer');
116         common_foot_menu();
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');
124         $xw->endDocument();
125         $xw->flush();
126 }
127
128 function common_text($txt) {
129         global $xw;
130         $xw->text($txt);
131 }
132
133 function common_license_block() {
134         global $config, $xw;
135         common_element_start('div', 'license');
136         common_element_start('a', array('class' => 'license',
137                                                                         'rel' => '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',
145                                                           'rel' => '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');
150 }
151
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')),
156                                          _t('Help'));
157         if ($user) {
158                 common_menu_item(common_local_url('all', array('nickname' =>
159                                                                                                            $user->nickname)),
160                                                  _t('Home'));
161                 common_menu_item(common_local_url('showstream', array('nickname' =>
162                                                                                                                           $user->nickname)),
163                                                  _t('Profile'),  $user->fullname || $user->nickname);
164                 common_menu_item(common_local_url('profilesettings'),
165                                                  _t('Settings'));
166                 common_menu_item(common_local_url('logout'),
167                                                  _t('Logout'));
168         } else {
169                 common_menu_item(common_local_url('login'),
170                                                  _t('Login'));
171                 common_menu_item(common_local_url('register'),
172                                                  _t('Register'));
173         }
174         common_element_end('ul');
175 }
176
177 function common_foot_menu() {
178         common_element_start('ul', 'footmenu menuish');
179         common_menu_item(common_local_url('doc', array('title' => 'about')),
180                                          _t('About'));
181         common_menu_item(common_local_url('doc', array('title' => 'help')),
182                                          _t('Help'));
183         common_menu_item(common_local_url('doc', array('title' => 'privacy')),
184                                          _t('Privacy'));
185         common_element_end('ul');
186 }
187
188 function common_menu_item($url, $text, $title=NULL) {
189         $attrs['href'] = $url;
190         if ($title) {
191                 $attrs['title'] = $title;
192         }
193         common_element_start('li', 'menuitem');
194         common_element('a', $attrs, $text);
195         common_element_end('li');
196 }
197
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,
202                                    'type' => 'text',
203                                    'id' => $id);
204         if ($value) {
205                 $attrs['value'] = htmlspecialchars($value);
206         }
207         common_element('input', $attrs);
208         common_element_end('p');
209 }
210
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',
216                                    'id' => $id);
217         common_element('input', $attrs);
218         common_element_end('p');
219 }
220
221 function common_submit($id, $label) {
222         global $xw;
223         common_element_start('p');
224         common_element_start('label', array('for' => $id));
225         $xw->writeRaw('&nbsp;');
226         common_element_end('label');
227         common_element('input', array('type' => 'submit',
228                                                                   'id' => $id,
229                                                                   'name' => $id,
230                                                                   'value' => $label,
231                                                                   'class' => 'button'));
232         common_element_end('p');
233 }
234
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,
239                                                                          'cols' => 40,
240                                                                          'name' => $id,
241                                                                          'id' => $id, 
242                                                                          'class' => 'width50'),
243                                    ($content) ? $content : ' ');
244         common_element_end('p');
245 }
246
247 # salted, hashed passwords are stored in the DB
248
249 function common_munge_password($id, $password) {
250         return md5($id . $password);
251 }
252
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)) {
257                 return false;
258         } else {
259                 return (0 == strcmp(common_munge_password($password, $user->id),
260                                                         $user->password));
261         }
262 }
263
264 # is the current user logged in?
265 function common_logged_in() {
266         return (!is_null(common_current_user()));
267 }
268
269 function common_have_session() {
270         return (0 != strcmp(session_id(), ''));
271 }
272
273 function common_ensure_session() {
274         if (!common_have_session()) {
275                 @session_start();
276         }
277 }
278
279 function common_set_user($nickname) {
280         if (is_null($nickname) && common_have_session()) {
281                 unset($_SESSION['userid']);
282                 return true;
283         } else {
284                 $user = User::staticGet('nickname', $nickname);
285                 if ($user) {
286                         common_ensure_session();
287                         $_SESSION['userid'] = $user->id;
288                         return true;
289                 } else {
290                         return false;
291                 }
292         }
293         return false;
294 }
295
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'];
302                 if ($id) {
303                         $user = User::staticGet($id);
304                 }
305         }
306         return $user;
307 }
308
309 # get canonical version of nickname for comparison
310 function common_canonical_nickname($nickname) {
311         # XXX: UTF-8 canonicalization (like combining chars)
312         return $nickname;
313 }
314
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
319         return $email;
320 }
321
322 function common_render_content($text) {
323         # XXX: @ messages
324         # XXX: # tags
325         # XXX: machine tags
326         return htmlspecialchars($text);
327 }
328
329 // where should the avatar go for this user?
330
331 function common_avatar_filename($user, $extension, $size=NULL) {
332         global $config;
333
334         if ($size) {
335                 return $user->id . '-' . $size . $extension;
336         } else {
337                 return $user->id . '-original' . $extension;
338         }
339 }
340
341 function common_avatar_path($filename) {
342         global $config;
343         return $config['avatar']['directory'] . '/' . $filename;
344 }
345
346 function common_avatar_url($filename) {
347         global $config;
348         return $config['avatar']['path'] . '/' . $filename;
349 }
350
351 function common_local_url($action, $args=NULL) {
352         global $config;
353         /* XXX: pretty URLs */
354         $extra = '';
355         if ($args) {
356                 foreach ($args as $key => $value) {
357                         $extra .= "&${key}=${value}";
358                 }
359         }
360         $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
361         return "http://".$config['site']['server'].'/'.$pathpart."index.php?action=${action}${extra}";
362 }
363
364 function common_date_string($dt) {
365         // XXX: do some sexy date formatting
366         // return date(DATE_RFC822, $dt);
367         return $dt;
368 }
369
370 function common_redirect($url, $code=307) {
371         static $status = array(301 => "Moved Permanently",
372                                                    302 => "Found",
373                                                    303 => "See Other",
374                                                    307 => "Temporary Redirect");
375         header("Status: ${code} $status[$code]");
376         header("Location: $url");
377         common_element('a', array('href' => $url), $url);
378 }
379
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
386         return true;
387 }
388
389 function common_profile_url($nickname) {
390         return common_local_url('showstream', array('nickname' => $nickname));
391 }
392
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');
399 }
400
401 // XXX: set up gettext
402
403 function _t($str) {
404         return $str;
405 }