]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
add some transaction voodoo to the insert for rememberme cookies
[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         static $empty_tag = array('base', 'meta', 'link', 'hr',
97                                                           'br', 'param', 'img', 'area',
98                                                           'input', 'col');
99         global $xw;
100         # XXX: check namespace
101         if (in_array($tag, $empty_tag)) {
102                 $xw->endElement();
103         } else {
104                 $xw->fullEndElement();
105         }
106 }
107
108 function common_element($tag, $attrs=NULL, $content=NULL) {
109         common_element_start($tag, $attrs);
110         global $xw;
111         if (!is_null($content)) {
112                 $xw->text($content);
113         }
114         common_element_end($tag);
115 }
116
117 function common_start_xml($doc=NULL, $public=NULL, $system=NULL, $indent=true) {
118         global $xw;
119         $xw = new XMLWriter();
120         $xw->openURI('php://output');
121         $xw->setIndent($indent);
122         $xw->startDocument('1.0', 'UTF-8');
123         if ($doc) {
124                 $xw->writeDTD($doc, $public, $system);
125         }
126 }
127
128 function common_end_xml() {
129         global $xw;
130         $xw->endDocument();
131         $xw->flush();
132 }
133
134 function common_init_language() {
135         mb_internal_encoding('UTF-8');
136         $language = common_language();
137         # So we don't have to make people install the gettext locales
138         putenv('LANGUAGE='.$language);
139         putenv('LANG='.$language);
140         $locale_set = setlocale(LC_ALL, $language . ".utf8",
141                                                         $language . ".UTF8",
142                                                         $language . ".utf-8",
143                                                         $language . ".UTF-8",
144                                                         $language);
145         bindtextdomain("laconica", common_config('site','locale_path'));
146         bind_textdomain_codeset("laconica", "UTF-8");
147         textdomain("laconica");
148         setlocale(LC_CTYPE, 'C');
149         if(!$locale_set) {
150                 common_log(LOG_INFO,'Language requested:'.$language.' - locale could not be set:',__FILE__);
151         }
152 }
153
154 define('PAGE_TYPE_PREFS', 'text/html,application/xhtml+xml,application/xml;q=0.3,text/xml;q=0.2');
155
156 function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=NULL) {
157
158         global $config, $xw;
159
160         common_start_html();
161
162         common_element_start('head');
163         common_element('title', NULL,
164                                    $pagetitle . " - " . $config['site']['name']);
165         common_element('link', array('rel' => 'stylesheet',
166                                                                  'type' => 'text/css',
167                                                                  'href' => theme_path('display.css') . '?version=' . LACONICA_VERSION,
168                                                                  'media' => 'screen, projection, tv'));
169         foreach (array(6,7) as $ver) {
170                 if (file_exists(theme_file('ie'.$ver.'.css'))) {
171                         # Yes, IE people should be put in jail.
172                         $xw->writeComment('[if lte IE '.$ver.']><link rel="stylesheet" type="text/css" '.
173                                                           'href="'.theme_path('ie'.$ver.'.css').'?version='.LACONICA_VERSION.'" /><![endif]');
174                 }
175         }
176
177         common_element('script', array('type' => 'text/javascript',
178                                                                    'src' => common_path('js/jquery.min.js')),
179                                    ' ');
180         common_element('script', array('type' => 'text/javascript',
181                                                                    'src' => common_path('js/jquery.form.js')),
182                                    ' ');
183         common_element('script', array('type' => 'text/javascript',
184                                                                    'src' => common_path('js/xbImportNode.js')),
185                                    ' ');
186         common_element('script', array('type' => 'text/javascript',
187                                                                    'src' => common_path('js/util.js?version='.LACONICA_VERSION)),
188                                    ' ');
189         common_element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
190                                         'href' =>  common_local_url('opensearch', array('type' => 'people')),
191                                         'title' => common_config('site', 'name').' People Search'));
192
193         common_element('link', array('rel' => 'search', 'type' => 'application/opensearchdescription+xml',
194                                         'href' =>  common_local_url('opensearch', array('type' => 'notice')),
195                                         'title' => common_config('site', 'name').' Notice Search'));
196
197         if ($callable) {
198                 if ($data) {
199                         call_user_func($callable, $data);
200                 } else {
201                         call_user_func($callable);
202                 }
203         }
204         common_element_end('head');
205         common_element_start('body');
206         common_element_start('div', array('id' => 'wrap'));
207         common_element_start('div', array('id' => 'header'));
208         common_nav_menu();
209         if ((isset($config['site']['logo']) && is_string($config['site']['logo']) && (strlen($config['site']['logo']) > 0))
210                 || file_exists(theme_file('logo.png')))
211         {
212                 common_element_start('a', array('href' => common_local_url('public')));
213                 common_element('img', array('src' => isset($config['site']['logo']) ?
214                                                                         ($config['site']['logo']) : theme_path('logo.png'),
215                                                                         'alt' => $config['site']['name'],
216                                                                         'id' => 'logo'));
217                 common_element_end('a');
218         } else {
219                 common_element_start('p', array('id' => 'branding'));
220                 common_element('a', array('href' => common_local_url('public')),
221                                            $config['site']['name']);
222                 common_element_end('p');
223         }
224
225         common_element('h1', 'pagetitle', $pagetitle);
226
227         if ($headercall) {
228                 if ($data) {
229                         call_user_func($headercall, $data);
230                 } else {
231                         call_user_func($headercall);
232                 }
233         }
234         common_element_end('div');
235         common_element_start('div', array('id' => 'content'));
236 }
237
238 function common_start_html($type=NULL, $indent=true) {
239
240         if (!$type) {
241                 $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : NULL;
242
243                 # XXX: allow content negotiation for RDF, RSS, or XRDS
244
245                 $type = common_negotiate_type(common_accept_to_prefs($httpaccept),
246                                                                           common_accept_to_prefs(PAGE_TYPE_PREFS));
247
248                 if (!$type) {
249                         common_user_error(_('This page is not available in a media type you accept'), 406);
250                         exit(0);
251                 }
252         }
253
254         header('Content-Type: '.$type);
255
256         common_start_xml('html',
257                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
258                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd', $indent);
259
260         # FIXME: correct language for interface
261
262         $language = common_language();
263
264         common_element_start('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
265                                                                            'xml:lang' => $language,
266                                                                            'lang' => $language));
267 }
268
269 function common_show_footer() {
270         global $xw, $config;
271         common_element_end('div'); # content div
272         common_foot_menu();
273         common_element_start('div', array('id' => 'footer'));
274         common_element_start('div', 'laconica');
275         if (common_config('site', 'broughtby')) {
276                 $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). ');
277         } else {
278                 $instr = _('**%%site.name%%** is a microblogging service. ');
279         }
280         $instr .= sprintf(_('It runs the [Laconica](http://laconi.ca/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html).'), LACONICA_VERSION);
281     $output = common_markup_to_html($instr);
282     common_raw($output);
283         common_element_end('div');
284         common_element('img', array('id' => 'cc',
285                                                                 'src' => $config['license']['image'],
286                                                                 'alt' => $config['license']['title']));
287         common_element_start('p');
288         common_text(_('Unless otherwise specified, contents of this site are copyright by the contributors and available under the '));
289         common_element('a', array('class' => 'license',
290                                                           'rel' => 'license',
291                                                           'href' => $config['license']['url']),
292                                    $config['license']['title']);
293         common_text(_('. Contributors should be attributed by full name or nickname.'));
294         common_element_end('p');
295         common_element_end('div');
296         common_element_end('div');
297         common_element_end('body');
298         common_element_end('html');
299         common_end_xml();
300 }
301
302 function common_text($txt) {
303         global $xw;
304         $xw->text($txt);
305 }
306
307 function common_raw($xml) {
308         global $xw;
309         $xw->writeRaw($xml);
310 }
311
312 function common_nav_menu() {
313         $user = common_current_user();
314         common_element_start('ul', array('id' => 'nav'));
315         if ($user) {
316                 common_menu_item(common_local_url('all', array('nickname' => $user->nickname)),
317                                                  _('Home'));
318         }
319         common_menu_item(common_local_url('peoplesearch'), _('Search'));
320         if ($user) {
321                 common_menu_item(common_local_url('profilesettings'),
322                                                  _('Settings'));
323                 common_menu_item(common_local_url('invite'),
324                                                  _('Invite'));
325                 common_menu_item(common_local_url('logout'),
326                                                  _('Logout'));
327         } else {
328                 common_menu_item(common_local_url('login'), _('Login'));
329                 if (!common_config('site', 'closed')) {
330                         common_menu_item(common_local_url('register'), _('Register'));
331                 }
332                 common_menu_item(common_local_url('openidlogin'), _('OpenID'));
333         }
334         common_menu_item(common_local_url('doc', array('title' => 'help')),
335                                          _('Help'));
336         common_element_end('ul');
337 }
338
339 function common_foot_menu() {
340         common_element_start('ul', array('id' => 'nav_sub'));
341         common_menu_item(common_local_url('doc', array('title' => 'help')),
342                                          _('Help'));
343         common_menu_item(common_local_url('doc', array('title' => 'about')),
344                                          _('About'));
345         common_menu_item(common_local_url('doc', array('title' => 'faq')),
346                                          _('FAQ'));
347         common_menu_item(common_local_url('doc', array('title' => 'privacy')),
348                                          _('Privacy'));
349         common_menu_item(common_local_url('doc', array('title' => 'source')),
350                                          _('Source'));
351         common_menu_item(common_local_url('doc', array('title' => 'contact')),
352                                          _('Contact'));
353         common_element_end('ul');
354 }
355
356 function common_menu_item($url, $text, $title=NULL, $is_selected=false) {
357         $lattrs = array();
358         if ($is_selected) {
359                 $lattrs['class'] = 'current';
360         }
361         common_element_start('li', $lattrs);
362         $attrs['href'] = $url;
363         if ($title) {
364                 $attrs['title'] = $title;
365         }
366         common_element('a', $attrs, $text);
367         common_element_end('li');
368 }
369
370 function common_input($id, $label, $value=NULL,$instructions=NULL) {
371         common_element_start('p');
372         common_element('label', array('for' => $id), $label);
373         $attrs = array('name' => $id,
374                                    'type' => 'text',
375                                    'class' => 'input_text',
376                                    'id' => $id);
377         if ($value) {
378                 $attrs['value'] = htmlspecialchars($value);
379         }
380         common_element('input', $attrs);
381         if ($instructions) {
382                 common_element('span', 'input_instructions', $instructions);
383         }
384         common_element_end('p');
385 }
386
387 function common_checkbox($id, $label, $checked=false, $instructions=NULL, $value='true', $disabled=false)
388 {
389         common_element_start('p');
390         $attrs = array('name' => $id,
391                                    'type' => 'checkbox',
392                                    'class' => 'checkbox',
393                                    'id' => $id);
394         if ($value) {
395                 $attrs['value'] = htmlspecialchars($value);
396         }
397         if ($checked) {
398                 $attrs['checked'] = 'checked';
399         }
400         if ($disabled) {
401                 $attrs['disabled'] = 'true';
402         }
403         common_element('input', $attrs);
404         # XXX: use a <label>
405         common_text(' ');
406         common_element('span', 'checkbox_label', $label);
407         common_text(' ');
408         if ($instructions) {
409                 common_element('span', 'input_instructions', $instructions);
410         }
411         common_element_end('p');
412 }
413
414 function common_dropdown($id, $label, $content, $instructions=NULL, $blank_select=FALSE, $selected=NULL) {
415         common_element_start('p');
416         common_element('label', array('for' => $id), $label);
417         common_element_start('select', array('id' => $id, 'name' => $id));
418         if ($blank_select) {
419                 common_element('option', array('value' => ''));
420         }
421         foreach ($content as $value => $option) {
422                 if ($value == $selected) {
423                         common_element('option', array('value' => $value, 'selected' => $value), $option);
424                 } else {
425                         common_element('option', array('value' => $value), $option);
426                 }
427         }
428         common_element_end('select');
429         if ($instructions) {
430                 common_element('span', 'input_instructions', $instructions);
431         }
432         common_element_end('p');
433 }
434 function common_hidden($id, $value) {
435         common_element('input', array('name' => $id,
436                                                                   'type' => 'hidden',
437                                                                   'id' => $id,
438                                                                   'value' => $value));
439 }
440
441 function common_password($id, $label, $instructions=NULL) {
442         common_element_start('p');
443         common_element('label', array('for' => $id), $label);
444         $attrs = array('name' => $id,
445                                    'type' => 'password',
446                                    'class' => 'password',
447                                    'id' => $id);
448         common_element('input', $attrs);
449         if ($instructions) {
450                 common_element('span', 'input_instructions', $instructions);
451         }
452         common_element_end('p');
453 }
454
455 function common_submit($id, $label, $cls='submit') {
456         global $xw;
457         common_element_start('p');
458         common_element('input', array('type' => 'submit',
459                                                                   'id' => $id,
460                                                                   'name' => $id,
461                                                                   'class' => $cls,
462                                                                   'value' => $label));
463         common_element_end('p');
464 }
465
466 function common_textarea($id, $label, $content=NULL, $instructions=NULL) {
467         common_element_start('p');
468         common_element('label', array('for' => $id), $label);
469         common_element('textarea', array('rows' => 3,
470                                                                          'cols' => 40,
471                                                                          'name' => $id,
472                                                                          'id' => $id),
473                                    ($content) ? $content : '');
474         if ($instructions) {
475                 common_element('span', 'input_instructions', $instructions);
476         }
477         common_element_end('p');
478 }
479
480 function common_timezone() {
481         if (common_logged_in()) {
482                 $user = common_current_user();
483                 if ($user->timezone) {
484                         return $user->timezone;
485                 }
486         }
487
488         global $config;
489         return $config['site']['timezone'];
490 }
491
492 function common_language() {
493
494         // If there is a user logged in and they've set a language preference
495         // then return that one...
496         if (common_logged_in()) {
497                 $user = common_current_user();
498                 $user_language = $user->language;
499                 if ($user_language)
500                         return $user_language;
501         }
502
503         // Otherwise, find the best match for the languages requested by the
504         // user's browser...
505         $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : NULL;
506         if (!empty($httplang)) {
507                 $language = client_prefered_language($httplang);
508                 if ($language)
509                         return $language;
510         }
511
512         // Finally, if none of the above worked, use the site's default...
513         return common_config('site', 'language');
514 }
515 # salted, hashed passwords are stored in the DB
516
517 function common_munge_password($password, $id) {
518         return md5($password . $id);
519 }
520
521 # check if a username exists and has matching password
522 function common_check_user($nickname, $password) {
523         # NEVER allow blank passwords, even if they match the DB
524         if (mb_strlen($password) == 0) {
525                 return false;
526         }
527         $user = User::staticGet('nickname', $nickname);
528         if (is_null($user)) {
529                 return false;
530         } else {
531                 if (0 == strcmp(common_munge_password($password, $user->id),
532                                                 $user->password)) {
533                         return $user;
534                 } else {
535                         return false;
536                 }
537         }
538 }
539
540 # is the current user logged in?
541 function common_logged_in() {
542         return (!is_null(common_current_user()));
543 }
544
545 function common_have_session() {
546         return (0 != strcmp(session_id(), ''));
547 }
548
549 function common_ensure_session() {
550         if (!common_have_session()) {
551                 @session_start();
552         }
553 }
554
555 # Three kinds of arguments:
556 # 1) a user object
557 # 2) a nickname
558 # 3) NULL to clear
559
560 # Initialize to false; set to NULL if none found
561
562 $_cur = false;
563
564 function common_set_user($user) {
565
566     global $_cur;
567
568         if (is_null($user) && common_have_session()) {
569         $_cur = NULL;
570                 unset($_SESSION['userid']);
571                 return true;
572         } else if (is_string($user)) {
573                 $nickname = $user;
574                 $user = User::staticGet('nickname', $nickname);
575         } else if (!($user instanceof User)) {
576                 return false;
577         }
578
579         if ($user) {
580                 common_ensure_session();
581                 $_SESSION['userid'] = $user->id;
582         $_cur = $user;
583                 return $_cur;
584         }
585         return false;
586 }
587
588 function common_set_cookie($key, $value, $expiration=0) {
589         $path = common_config('site', 'path');
590         $server = common_config('site', 'server');
591
592         if ($path && ($path != '/')) {
593                 $cookiepath = '/' . $path . '/';
594         } else {
595                 $cookiepath = '/';
596         }
597         return setcookie($key,
598                          $value,
599                                  $expiration,
600                                          $cookiepath,
601                                      $server);
602 }
603
604 define('REMEMBERME', 'rememberme');
605 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); # 30 days
606
607 function common_rememberme($user=NULL) {
608         if (!$user) {
609                 $user = common_current_user();
610                 if (!$user) {
611                         common_debug('No current user to remember', __FILE__);
612                         return false;
613                 }
614         }
615
616         $rm = new Remember_me();
617
618         $rm->code = common_good_rand(16);
619         $rm->user_id = $user->id;
620
621     # Wrap the insert in some good ol' fashioned transaction code
622
623     $rm->query('BEGIN');
624
625         $result = $rm->insert();
626
627         if (!$result) {
628                 common_log_db_error($rm, 'INSERT', __FILE__);
629                 common_debug('Error adding rememberme record for ' . $user->nickname, __FILE__);
630                 return false;
631     }
632
633     $rm->query('COMMIT');
634
635         common_debug('Inserted rememberme record (' . $rm->code . ', ' . $rm->user_id . '); result = ' . $result . '.', __FILE__);
636
637     $cookieval = $rm->user_id . ':' . $rm->code;
638
639         common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
640
641         common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
642
643         return true;
644 }
645
646 function common_remembered_user() {
647
648         $user = NULL;
649
650         $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : NULL;
651
652         if (!$packed) {
653         return NULL;
654     }
655
656     list($id, $code) = explode(':', $packed);
657
658     if (!$id || !$code) {
659         common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
660         common_forgetme();
661         return NULL;
662     }
663
664     $rm = Remember_me::staticGet($code);
665
666     if (!$rm) {
667         common_log(LOG_WARNING, 'No such remember code: ' . $code);
668         common_forgetme();
669         return NULL;
670     }
671
672     if ($rm->user_id != $id) {
673         common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
674         common_forgetme();
675         return NULL;
676     }
677
678     $user = User::staticGet($rm->user_id);
679
680     if (!$user) {
681         common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
682         common_forgetme();
683         return NULL;
684     }
685
686         # successful!
687     $result = $rm->delete();
688
689     if (!$result) {
690         common_log_db_error($rm, 'DELETE', __FILE__);
691         common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
692         common_forgetme();
693         return NULL;
694     }
695
696     common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
697
698     common_set_user($user);
699     common_real_login(false);
700
701     # We issue a new cookie, so they can log in
702     # automatically again after this session
703
704     common_rememberme($user);
705
706         return $user;
707 }
708
709 # must be called with a valid user!
710
711 function common_forgetme() {
712         common_set_cookie(REMEMBERME, '', 0);
713 }
714
715 # who is the current user?
716 function common_current_user() {
717     global $_cur;
718
719     if ($_cur === false) {
720
721         if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
722             common_ensure_session();
723             $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
724             if ($id) {
725                 $_cur = User::staticGet($id);
726                 return $_cur;
727             }
728         }
729
730         # that didn't work; try to remember; will init $_cur to NULL on failure
731         $_cur = common_remembered_user();
732
733         if ($_cur) {
734             common_debug("Got User " . $_cur->nickname);
735             common_debug("Faking session on remembered user");
736             # XXX: Is this necessary?
737             $_SESSION['userid'] = $_cur->id;
738         }
739     }
740
741         return $_cur;
742 }
743
744 # Logins that are 'remembered' aren't 'real' -- they're subject to
745 # cookie-stealing. So, we don't let them do certain things. New reg,
746 # OpenID, and password logins _are_ real.
747
748 function common_real_login($real=true) {
749         common_ensure_session();
750         $_SESSION['real_login'] = $real;
751 }
752
753 function common_is_real_login() {
754         return common_logged_in() && $_SESSION['real_login'];
755 }
756
757 # get canonical version of nickname for comparison
758 function common_canonical_nickname($nickname) {
759         # XXX: UTF-8 canonicalization (like combining chars)
760         return strtolower($nickname);
761 }
762
763 # get canonical version of email for comparison
764 function common_canonical_email($email) {
765         # XXX: canonicalize UTF-8
766         # XXX: lcase the domain part
767         return $email;
768 }
769
770 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$_+!*();/?:~-]))');
771
772 function common_render_content($text, $notice) {
773         $r = common_render_text($text);
774         $id = $notice->profile_id;
775         $r = preg_replace('/(^|\s+)@([A-Za-z0-9]{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
776         $r = preg_replace('/^T ([A-Z0-9]{1,64}) /e', "'T '.common_at_link($id, '\\1').' '", $r);
777         $r = preg_replace('/(^|\s+)@#([A-Za-z0-9]{1,64})/e', "'\\1@#'.common_at_hash_link($id, '\\2')", $r);
778         return $r;
779 }
780
781 function common_render_text($text) {
782         $r = htmlspecialchars($text);
783
784         $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
785         $r = preg_replace_callback('@https?://[^\]>\s]+@', 'common_render_uri_thingy', $r);
786         $r = preg_replace('/(^|\s+)#([A-Za-z0-9_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
787         # XXX: machine tags
788         return $r;
789 }
790
791 function common_render_uri_thingy($matches) {
792         $uri = $matches[0];
793         $trailer = '';
794
795         # Some heuristics for extracting URIs from surrounding punctuation
796         # Strip from trailing text...
797         if (preg_match('/^(.*)([,.:"\']+)$/', $uri, $matches)) {
798                 $uri = $matches[1];
799                 $trailer = $matches[2];
800         }
801
802         $pairs = array(
803                 ']' => '[', # technically disallowed in URIs, but used in Java docs
804                 ')' => '(', # far too frequent in Wikipedia and MSDN
805         );
806         $final = substr($uri, -1, 1);
807         if (isset($pairs[$final])) {
808                 $openers = substr_count($uri, $pairs[$final]);
809                 $closers = substr_count($uri, $final);
810                 if ($closers > $openers) {
811                         // Assume the paren was opened outside the URI
812                         $uri = substr($uri, 0, -1);
813                         $trailer = $final . $trailer;
814                 }
815         }
816         if ($longurl = common_longurl($uri)) {
817                 $longurl = htmlentities($longurl, ENT_QUOTES, 'UTF-8');
818                 $title = " title='$longurl'";
819         }
820         else $title = '';
821
822         return '<a href="' . $uri . '"' . $title . ' class="extlink">' . $uri . '</a>' . $trailer;
823 }
824
825 function common_longurl($uri)  {
826         $uri_e = urlencode($uri);
827         $longurl = unserialize(file_get_contents("http://api.longurl.org/v1/expand?format=php&url=$uri_e"));
828         if (empty($longurl['long_url']) || $uri === $longurl['long_url']) return false;
829         return stripslashes($longurl['long_url']);
830 }
831
832 function common_shorten_links($text) {
833     // \s = not a horizontal whitespace character (since PHP 5.2.4)
834         // RYM this should prevent * preceded URLs from being processed but it its a char
835 //      $r = preg_replace('@[^*](https?://[^)\]>\s]+)@e', "common_shorten_link('\\1')", $r);
836         return preg_replace('@https?://[^)\]>\s]+@e', "common_shorten_link('\\0')", $text);
837 }
838
839 function common_shorten_link($long_url) {
840
841         $user = common_current_user();
842
843         $curlh = curl_init();
844         curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait
845         curl_setopt($curlh, CURLOPT_USERAGENT, 'Laconica');
846         curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
847
848         switch($user->urlshorteningservice) {
849         case 'ur1.ca':
850             $short_url_service = new LilUrl;
851             $short_url = $short_url_service->shorten($long_url);
852             break;
853
854         case '2tu.us':
855             $short_url_service = new TightUrl;
856             $short_url = $short_url_service->shorten($long_url);
857             break;
858
859         case 'ptiturl.com':
860             $short_url_service = new PtitUrl;
861             $short_url = $short_url_service->shorten($long_url);
862             break;
863
864         case 'bit.ly':
865                         curl_setopt($curlh, CURLOPT_URL, 'http://bit.ly/api?method=shorten&long_url='.urlencode($long_url));
866                         $short_url = current(json_decode(curl_exec($curlh))->results)->hashUrl;
867             break;
868
869                 case 'is.gd':
870                         curl_setopt($curlh, CURLOPT_URL, 'http://is.gd/api.php?longurl='.urlencode($long_url));
871                         $short_url = curl_exec($curlh);
872                         break;
873                 case 'snipr.com':
874                         curl_setopt($curlh, CURLOPT_URL, 'http://snipr.com/site/snip?r=simple&link='.urlencode($long_url));
875                         $short_url = curl_exec($curlh);
876                         break;
877                 case 'metamark.net':
878                         curl_setopt($curlh, CURLOPT_URL, 'http://metamark.net/api/rest/simple?long_url='.urlencode($long_url));
879                         $short_url = curl_exec($curlh);
880                         break;
881                 case 'tinyurl.com':
882                         curl_setopt($curlh, CURLOPT_URL, 'http://tinyurl.com/api-create.php?url='.urlencode($long_url));
883                         $short_url = curl_exec($curlh);
884                         break;
885                 default:
886                         $short_url = false;
887         }
888
889         curl_close($curlh);
890
891         if ($short_url) {
892                 return $short_url;
893         }
894         return $long_url;
895 }
896
897 function common_xml_safe_str($str) {
898         $xmlStr = htmlentities(iconv('UTF-8', 'UTF-8//IGNORE', $str), ENT_NOQUOTES, 'UTF-8');
899
900         // Replace control, formatting, and surrogate characters with '*', ala Twitter
901         return preg_replace('/[\p{Cc}\p{Cf}\p{Cs}]/u', '*', $str);
902 }
903
904 function common_tag_link($tag) {
905         $canonical = common_canonical_tag($tag);
906         $url = common_local_url('tag', array('tag' => $canonical));
907         return '<a href="' . htmlspecialchars($url) . '" rel="tag" class="hashlink">' . htmlspecialchars($tag) . '</a>';
908 }
909
910 function common_canonical_tag($tag) {
911         return strtolower(str_replace(array('-', '_', '.'), '', $tag));
912 }
913
914 function common_valid_profile_tag($str) {
915         return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
916 }
917
918 function common_at_link($sender_id, $nickname) {
919         $sender = Profile::staticGet($sender_id);
920         $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
921         if ($recipient) {
922                 return '<a href="'.htmlspecialchars($recipient->profileurl).'" class="atlink">'.$nickname.'</a>';
923         } else {
924                 return $nickname;
925         }
926 }
927
928 function common_at_hash_link($sender_id, $tag) {
929         $user = User::staticGet($sender_id);
930         if (!$user) {
931                 return $tag;
932         }
933         $tagged = Profile_tag::getTagged($user->id, common_canonical_tag($tag));
934         if ($tagged) {
935                 $url = common_local_url('subscriptions',
936                                                                 array('nickname' => $user->nickname,
937                                                                           'tag' => $tag));
938                 return '<a href="'.htmlspecialchars($url).'" class="atlink">'.$tag.'</a>';
939         } else {
940                 return $tag;
941         }
942 }
943
944 function common_relative_profile($sender, $nickname, $dt=NULL) {
945         # Try to find profiles this profile is subscribed to that have this nickname
946         $recipient = new Profile();
947         # XXX: use a join instead of a subquery
948         $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
949         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
950         if ($recipient->find(TRUE)) {
951                 # XXX: should probably differentiate between profiles with
952                 # the same name by date of most recent update
953                 return $recipient;
954         }
955         # Try to find profiles that listen to this profile and that have this nickname
956         $recipient = new Profile();
957         # XXX: use a join instead of a subquery
958         $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
959         $recipient->whereAdd('nickname = "' . trim($nickname) . '"', 'AND');
960         if ($recipient->find(TRUE)) {
961                 # XXX: should probably differentiate between profiles with
962                 # the same name by date of most recent update
963                 return $recipient;
964         }
965         # If this is a local user, try to find a local user with that nickname.
966         $sender = User::staticGet($sender->id);
967         if ($sender) {
968                 $recipient_user = User::staticGet('nickname', $nickname);
969                 if ($recipient_user) {
970                         return $recipient_user->getProfile();
971                 }
972         }
973         # Otherwise, no links. @messages from local users to remote users,
974         # or from remote users to other remote users, are just
975         # outside our ability to make intelligent guesses about
976         return NULL;
977 }
978
979 // where should the avatar go for this user?
980
981 function common_avatar_filename($id, $extension, $size=NULL, $extra=NULL) {
982         global $config;
983
984         if ($size) {
985                 return $id . '-' . $size . (($extra) ? ('-' . $extra) : '') . $extension;
986         } else {
987                 return $id . '-original' . (($extra) ? ('-' . $extra) : '') . $extension;
988         }
989 }
990
991 function common_avatar_path($filename) {
992         global $config;
993         return INSTALLDIR . '/avatar/' . $filename;
994 }
995
996 function common_avatar_url($filename) {
997         return common_path('avatar/'.$filename);
998 }
999
1000 function common_avatar_display_url($avatar) {
1001         $server = common_config('avatar', 'server');
1002         if ($server) {
1003                 return 'http://'.$server.'/'.$avatar->filename;
1004         } else {
1005                 return $avatar->url;
1006         }
1007 }
1008
1009 function common_default_avatar($size) {
1010         static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
1011                                                           AVATAR_STREAM_SIZE => 'stream',
1012                                                           AVATAR_MINI_SIZE => 'mini');
1013         return theme_path('default-avatar-'.$sizenames[$size].'.png');
1014 }
1015
1016 function common_local_url($action, $args=NULL, $fragment=NULL) {
1017         $url = NULL;
1018         if (common_config('site','fancy')) {
1019                 $url = common_fancy_url($action, $args);
1020         } else {
1021                 $url = common_simple_url($action, $args);
1022         }
1023         if (!is_null($fragment)) {
1024                 $url .= '#'.$fragment;
1025         }
1026         return $url;
1027 }
1028
1029 function common_fancy_url($action, $args=NULL) {
1030         switch (strtolower($action)) {
1031          case 'public':
1032                 if ($args && isset($args['page'])) {
1033                         return common_path('?page=' . $args['page']);
1034                 } else {
1035                         return common_path('');
1036                 }
1037          case 'featured':
1038                 if ($args && isset($args['page'])) {
1039                         return common_path('featured?page=' . $args['page']);
1040                 } else {
1041                         return common_path('featured');
1042                 }
1043          case 'favorited':
1044                 if ($args && isset($args['page'])) {
1045                         return common_path('favorited?page=' . $args['page']);
1046                 } else {
1047                         return common_path('favorited');
1048                 }
1049          case 'publicrss':
1050                 return common_path('rss');
1051          case 'publicxrds':
1052                 return common_path('xrds');
1053          case 'featuredrss':
1054                 return common_path('featuredrss');
1055          case 'favoritedrss':
1056                 return common_path('favoritedrss');
1057          case 'opensearch':
1058                 if ($args && $args['type']) {
1059                         return common_path('opensearch/'.$args['type']);
1060                 } else {
1061                         return common_path('opensearch/people');
1062                 }
1063          case 'doc':
1064                 return common_path('doc/'.$args['title']);
1065          case 'login':
1066          case 'logout':
1067          case 'subscribe':
1068          case 'unsubscribe':
1069          case 'invite':
1070                 return common_path('main/'.$action);
1071          case 'tagother':
1072                 return common_path('main/tagother?id='.$args['id']);
1073          case 'register':
1074                 if ($args && $args['code']) {
1075                         return common_path('main/register/'.$args['code']);
1076                 } else {
1077                         return common_path('main/register');
1078                 }
1079          case 'remotesubscribe':
1080                 if ($args && $args['nickname']) {
1081                         return common_path('main/remote?nickname=' . $args['nickname']);
1082                 } else {
1083                         return common_path('main/remote');
1084                 }
1085          case 'nudge':
1086                 return common_path($args['nickname'].'/nudge');
1087          case 'openidlogin':
1088                 return common_path('main/openid');
1089          case 'profilesettings':
1090                 return common_path('settings/profile');
1091          case 'emailsettings':
1092                 return common_path('settings/email');
1093          case 'openidsettings':
1094                 return common_path('settings/openid');
1095          case 'smssettings':
1096                 return common_path('settings/sms');
1097          case 'twittersettings':
1098                 return common_path('settings/twitter');
1099          case 'othersettings':
1100                 return common_path('settings/other');
1101          case 'newnotice':
1102                 if ($args && $args['replyto']) {
1103                         return common_path('notice/new?replyto='.$args['replyto']);
1104                 } else {
1105                         return common_path('notice/new');
1106                 }
1107          case 'shownotice':
1108                 return common_path('notice/'.$args['notice']);
1109          case 'deletenotice':
1110                 if ($args && $args['notice']) {
1111                         return common_path('notice/delete/'.$args['notice']);
1112                 } else {
1113                         return common_path('notice/delete');
1114                 }
1115          case 'microsummary':
1116          case 'xrds':
1117          case 'foaf':
1118                 return common_path($args['nickname'].'/'.$action);
1119          case 'all':
1120          case 'replies':
1121          case 'inbox':
1122          case 'outbox':
1123                 if ($args && isset($args['page'])) {
1124                         return common_path($args['nickname'].'/'.$action.'?page=' . $args['page']);
1125                 } else {
1126                         return common_path($args['nickname'].'/'.$action);
1127                 }
1128          case 'subscriptions':
1129          case 'subscribers':
1130                 $nickname = $args['nickname'];
1131                 unset($args['nickname']);
1132                 if (isset($args['tag'])) {
1133                         $tag = $args['tag'];
1134                         unset($args['tag']);
1135                 }
1136                 $params = http_build_query($args);
1137                 if ($params) {
1138                         return common_path($nickname.'/'.$action . (($tag) ? '/' . $tag : '') . '?' . $params);
1139                 } else {
1140                         return common_path($nickname.'/'.$action . (($tag) ? '/' . $tag : ''));
1141                 }
1142          case 'allrss':
1143                 return common_path($args['nickname'].'/all/rss');
1144          case 'repliesrss':
1145                 return common_path($args['nickname'].'/replies/rss');
1146          case 'userrss':
1147                 return common_path($args['nickname'].'/rss');
1148          case 'showstream':
1149                 if ($args && isset($args['page'])) {
1150                         return common_path($args['nickname'].'?page=' . $args['page']);
1151                 } else {
1152                         return common_path($args['nickname']);
1153                 }
1154
1155          case 'usertimeline':
1156                 return common_path("api/statuses/user_timeline/".$args['nickname'].".atom");
1157          case 'confirmaddress':
1158                 return common_path('main/confirmaddress/'.$args['code']);
1159          case 'userbyid':
1160                 return common_path('user/'.$args['id']);
1161          case 'recoverpassword':
1162             $path = 'main/recoverpassword';
1163             if ($args['code']) {
1164                 $path .= '/' . $args['code'];
1165                 }
1166             return common_path($path);
1167          case 'imsettings':
1168                 return common_path('settings/im');
1169          case 'peoplesearch':
1170                 return common_path('search/people' . (($args) ? ('?' . http_build_query($args)) : ''));
1171          case 'noticesearch':
1172                 return common_path('search/notice' . (($args) ? ('?' . http_build_query($args)) : ''));
1173          case 'noticesearchrss':
1174                 return common_path('search/notice/rss' . (($args) ? ('?' . http_build_query($args)) : ''));
1175          case 'avatarbynickname':
1176                 return common_path($args['nickname'].'/avatar/'.$args['size']);
1177          case 'tag':
1178             if (isset($args['tag']) && $args['tag']) {
1179                         $path = 'tag/' . $args['tag'];
1180                         unset($args['tag']);
1181                 } else {
1182                         $path = 'tags';
1183                 }
1184                 return common_path($path . (($args) ? ('?' . http_build_query($args)) : ''));
1185          case 'peopletag':
1186                 $path = 'peopletag/' . $args['tag'];
1187                 unset($args['tag']);
1188                 return common_path($path . (($args) ? ('?' . http_build_query($args)) : ''));
1189          case 'tags':
1190                 return common_path('tags' . (($args) ? ('?' . http_build_query($args)) : ''));
1191          case 'favor':
1192                 return common_path('main/favor');
1193          case 'disfavor':
1194                 return common_path('main/disfavor');
1195          case 'showfavorites':
1196                 if ($args && isset($args['page'])) {
1197                         return common_path($args['nickname'].'/favorites?page=' . $args['page']);
1198                 } else {
1199                         return common_path($args['nickname'].'/favorites');
1200                 }
1201          case 'favoritesrss':
1202                 return common_path($args['nickname'].'/favorites/rss');
1203          case 'showmessage':
1204                 return common_path('message/' . $args['message']);
1205          case 'newmessage':
1206                 return common_path('message/new' . (($args) ? ('?' . http_build_query($args)) : ''));
1207          case 'api':
1208                 # XXX: do fancy URLs for all the API methods
1209                 switch (strtolower($args['apiaction'])) {
1210                  case 'statuses':
1211                         switch (strtolower($args['method'])) {
1212                          case 'user_timeline.rss':
1213                                 return common_path('api/statuses/user_timeline/'.$args['argument'].'.rss');
1214                          case 'user_timeline.atom':
1215                                 return common_path('api/statuses/user_timeline/'.$args['argument'].'.atom');
1216                          case 'user_timeline.json':
1217                                 return common_path('api/statuses/user_timeline/'.$args['argument'].'.json');
1218                          case 'user_timeline.xml':
1219                                 return common_path('api/statuses/user_timeline/'.$args['argument'].'.xml');
1220                          default: return common_simple_url($action, $args);
1221                         }
1222                  default: return common_simple_url($action, $args);
1223                 }
1224          case 'sup':
1225                 if ($args && isset($args['seconds'])) {
1226                         return common_path('main/sup?seconds='.$args['seconds']);
1227                 } else {
1228                         return common_path('main/sup');
1229                 }
1230          default:
1231                 return common_simple_url($action, $args);
1232         }
1233 }
1234
1235 function common_simple_url($action, $args=NULL) {
1236         global $config;
1237         /* XXX: pretty URLs */
1238         $extra = '';
1239         if ($args) {
1240                 foreach ($args as $key => $value) {
1241                         $extra .= "&${key}=${value}";
1242                 }
1243         }
1244         return common_path("index.php?action=${action}${extra}");
1245 }
1246
1247 function common_path($relative) {
1248         global $config;
1249         $pathpart = ($config['site']['path']) ? $config['site']['path']."/" : '';
1250         return "http://".$config['site']['server'].'/'.$pathpart.$relative;
1251 }
1252
1253 function common_date_string($dt) {
1254         // XXX: do some sexy date formatting
1255         // return date(DATE_RFC822, $dt);
1256         $t = strtotime($dt);
1257         $now = time();
1258         $diff = $now - $t;
1259
1260         if ($now < $t) { # that shouldn't happen!
1261                 return common_exact_date($dt);
1262         } else if ($diff < 60) {
1263                 return _('a few seconds ago');
1264         } else if ($diff < 92) {
1265                 return _('about a minute ago');
1266         } else if ($diff < 3300) {
1267                 return sprintf(_('about %d minutes ago'), round($diff/60));
1268         } else if ($diff < 5400) {
1269                 return _('about an hour ago');
1270         } else if ($diff < 22 * 3600) {
1271                 return sprintf(_('about %d hours ago'), round($diff/3600));
1272         } else if ($diff < 37 * 3600) {
1273                 return _('about a day ago');
1274         } else if ($diff < 24 * 24 * 3600) {
1275                 return sprintf(_('about %d days ago'), round($diff/(24*3600)));
1276         } else if ($diff < 46 * 24 * 3600) {
1277                 return _('about a month ago');
1278         } else if ($diff < 330 * 24 * 3600) {
1279                 return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
1280         } else if ($diff < 480 * 24 * 3600) {
1281                 return _('about a year ago');
1282         } else {
1283                 return common_exact_date($dt);
1284         }
1285 }
1286
1287 function common_exact_date($dt) {
1288     static $_utc;
1289     static $_siteTz;
1290
1291     if (!$_utc) {
1292         $_utc = new DateTimeZone('UTC');
1293         $_siteTz = new DateTimeZone(common_timezone());
1294     }
1295
1296         $dateStr = date('d F Y H:i:s', strtotime($dt));
1297         $d = new DateTime($dateStr, $_utc);
1298         $d->setTimezone($_siteTz);
1299         return $d->format(DATE_RFC850);
1300 }
1301
1302 function common_date_w3dtf($dt) {
1303         $dateStr = date('d F Y H:i:s', strtotime($dt));
1304         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1305         $d->setTimezone(new DateTimeZone(common_timezone()));
1306         return $d->format(DATE_W3C);
1307 }
1308
1309 function common_date_rfc2822($dt) {
1310         $dateStr = date('d F Y H:i:s', strtotime($dt));
1311         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1312         $d->setTimezone(new DateTimeZone(common_timezone()));
1313         return $d->format('r');
1314 }
1315
1316 function common_date_iso8601($dt) {
1317         $dateStr = date('d F Y H:i:s', strtotime($dt));
1318         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
1319         $d->setTimezone(new DateTimeZone(common_timezone()));
1320         return $d->format('c');
1321 }
1322
1323 function common_sql_now() {
1324         return strftime('%Y-%m-%d %H:%M:%S', time());
1325 }
1326
1327 function common_redirect($url, $code=307) {
1328         static $status = array(301 => "Moved Permanently",
1329                                                    302 => "Found",
1330                                                    303 => "See Other",
1331                                                    307 => "Temporary Redirect");
1332         header("Status: ${code} $status[$code]");
1333         header("Location: $url");
1334
1335         common_start_xml('a',
1336                                          '-//W3C//DTD XHTML 1.0 Strict//EN',
1337                                          'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
1338         common_element('a', array('href' => $url), $url);
1339         common_end_xml();
1340     exit;
1341 }
1342
1343 function common_save_replies($notice) {
1344         # Alternative reply format
1345         $tname = false;
1346         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $notice->content, $match)) {
1347                 $tname = $match[1];
1348         }
1349         # extract all @messages
1350         $cnt = preg_match_all('/(?:^|\s)@([a-z0-9]{1,64})/', $notice->content, $match);
1351
1352         $names = array();
1353
1354         if ($cnt || $tname) {
1355                 # XXX: is there another way to make an array copy?
1356                 $names = ($tname) ? array_unique(array_merge(array(strtolower($tname)), $match[1])) : array_unique($match[1]);
1357         }
1358
1359         $sender = Profile::staticGet($notice->profile_id);
1360
1361         $replied = array();
1362
1363         # store replied only for first @ (what user/notice what the reply directed,
1364         # we assume first @ is it)
1365
1366         for ($i=0; $i<count($names); $i++) {
1367                 $nickname = $names[$i];
1368                 $recipient = common_relative_profile($sender, $nickname, $notice->created);
1369                 if (!$recipient) {
1370                         continue;
1371                 }
1372                 if ($i == 0 && ($recipient->id != $sender->id) && !$notice->reply_to) { # Don't save reply to self
1373                         $reply_for = $recipient;
1374                         $recipient_notice = $reply_for->getCurrentNotice();
1375                         if ($recipient_notice) {
1376                                 $orig = clone($notice);
1377                                 $notice->reply_to = $recipient_notice->id;
1378                                 $notice->update($orig);
1379                         }
1380                 }
1381                 $reply = new Reply();
1382                 $reply->notice_id = $notice->id;
1383                 $reply->profile_id = $recipient->id;
1384                 $id = $reply->insert();
1385                 if (!$id) {
1386                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1387                         common_log(LOG_ERR, 'DB error inserting reply: ' . $last_error->message);
1388                         common_server_error(sprintf(_('DB error inserting reply: %s'), $last_error->message));
1389                         return;
1390                 } else {
1391                         $replied[$recipient->id] = 1;
1392                 }
1393         }
1394
1395         # Hash format replies, too
1396         $cnt = preg_match_all('/(?:^|\s)@#([a-z0-9]{1,64})/', $notice->content, $match);
1397         if ($cnt) {
1398                 foreach ($match[1] as $tag) {
1399                         $tagged = Profile_tag::getTagged($sender->id, $tag);
1400                         foreach ($tagged as $t) {
1401                                 if (!$replied[$t->id]) {
1402                                         $reply = new Reply();
1403                                         $reply->notice_id = $notice->id;
1404                                         $reply->profile_id = $t->id;
1405                                         $id = $reply->insert();
1406                                         if (!$id) {
1407                                                 common_log_db_error($reply, 'INSERT', __FILE__);
1408                                                 return;
1409                                         }
1410                                 }
1411                         }
1412                 }
1413         }
1414 }
1415
1416 function common_broadcast_notice($notice, $remote=false) {
1417
1418         // Check to see if notice should go to Twitter
1419         $flink = Foreign_link::getByUserID($notice->profile_id, 1); // 1 == Twitter
1420         if (($flink->noticesync & FOREIGN_NOTICE_SEND) == FOREIGN_NOTICE_SEND) {
1421
1422                 // If it's not a Twitter-style reply, or if the user WANTS to send replies...
1423
1424                 if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/u', $notice->content) ||
1425                         (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY)) {
1426
1427                         $result = common_twitter_broadcast($notice, $flink);
1428
1429                         if (!$result) {
1430                                 common_debug('Unable to send notice: ' . $notice->id . ' to Twitter.', __FILE__);
1431                         }
1432                 }
1433         }
1434
1435         if (common_config('queue', 'enabled')) {
1436                 # Do it later!
1437                 return common_enqueue_notice($notice);
1438         } else {
1439                 return common_real_broadcast($notice, $remote);
1440         }
1441 }
1442
1443 function common_twitter_broadcast($notice, $flink) {
1444         global $config;
1445         $success = true;
1446         $fuser = $flink->getForeignUser();
1447         $twitter_user = $fuser->nickname;
1448         $twitter_password = $flink->credentials;
1449         $uri = 'http://www.twitter.com/statuses/update.json';
1450
1451         // XXX: Hack to get around PHP cURL's use of @ being a a meta character
1452         $statustxt = preg_replace('/^@/', ' @', $notice->content);
1453
1454         $options = array(
1455                 CURLOPT_USERPWD                 => "$twitter_user:$twitter_password",
1456                 CURLOPT_POST                    => true,
1457                 CURLOPT_POSTFIELDS              => array(
1458                                                                         'status'        => $statustxt,
1459                                                                         'source'        => $config['integration']['source']
1460                                                                         ),
1461                 CURLOPT_RETURNTRANSFER  => true,
1462                 CURLOPT_FAILONERROR             => true,
1463                 CURLOPT_HEADER                  => false,
1464                 CURLOPT_FOLLOWLOCATION  => true,
1465                 CURLOPT_USERAGENT               => "Laconica",
1466                 CURLOPT_CONNECTTIMEOUT  => 120,  // XXX: Scary!!!! How long should this be?
1467                 CURLOPT_TIMEOUT                 => 120
1468         );
1469
1470         $ch = curl_init($uri);
1471     curl_setopt_array($ch, $options);
1472     $data = curl_exec($ch);
1473     $errmsg = curl_error($ch);
1474
1475         if ($errmsg) {
1476                 common_debug("cURL error: $errmsg - trying to send notice for $twitter_user.",
1477                         __FILE__);
1478                 $success = false;
1479         }
1480
1481         curl_close($ch);
1482
1483         if (!$data) {
1484                 common_debug("No data returned by Twitter's API trying to send update for $twitter_user",
1485                         __FILE__);
1486                 $success = false;
1487         }
1488
1489         // Twitter should return a status
1490         $status = json_decode($data);
1491
1492         if (!$status->id) {
1493                 common_debug("Unexpected data returned by Twitter API trying to send update for $twitter_user",
1494                         __FILE__);
1495                 $success = false;
1496         }
1497
1498         return $success;
1499 }
1500
1501 # Stick the notice on the queue
1502
1503 function common_enqueue_notice($notice) {
1504         foreach (array('jabber', 'omb', 'sms', 'public') as $transport) {
1505                 $qi = new Queue_item();
1506                 $qi->notice_id = $notice->id;
1507                 $qi->transport = $transport;
1508                 $qi->created = $notice->created;
1509         $result = $qi->insert();
1510                 if (!$result) {
1511                         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1512                         common_log(LOG_ERR, 'DB error inserting queue item: ' . $last_error->message);
1513                         return false;
1514                 }
1515                 common_log(LOG_DEBUG, 'complete queueing notice ID = ' . $notice->id . ' for ' . $transport);
1516         }
1517         return $result;
1518 }
1519
1520 function common_dequeue_notice($notice) {
1521         $qi = Queue_item::staticGet($notice->id);
1522         if ($qi) {
1523                 $result = $qi->delete();
1524                 if (!$result) {
1525                     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1526                     common_log(LOG_ERR, 'DB error deleting queue item: ' . $last_error->message);
1527                     return false;
1528                 }
1529                 common_log(LOG_DEBUG, 'complete dequeueing notice ID = ' . $notice->id);
1530                 return $result;
1531         } else {
1532             return false;
1533         }
1534 }
1535
1536 function common_real_broadcast($notice, $remote=false) {
1537         $success = true;
1538         if (!$remote) {
1539                 # Make sure we have the OMB stuff
1540                 require_once(INSTALLDIR.'/lib/omb.php');
1541                 $success = omb_broadcast_remote_subscribers($notice);
1542                 if (!$success) {
1543                         common_log(LOG_ERR, 'Error in OMB broadcast for notice ' . $notice->id);
1544                 }
1545         }
1546         if ($success) {
1547                 require_once(INSTALLDIR.'/lib/jabber.php');
1548                 $success = jabber_broadcast_notice($notice);
1549                 if (!$success) {
1550                         common_log(LOG_ERR, 'Error in jabber broadcast for notice ' . $notice->id);
1551                 }
1552         }
1553         if ($success) {
1554                 require_once(INSTALLDIR.'/lib/mail.php');
1555                 $success = mail_broadcast_notice_sms($notice);
1556                 if (!$success) {
1557                         common_log(LOG_ERR, 'Error in sms broadcast for notice ' . $notice->id);
1558                 }
1559         }
1560         if ($success) {
1561                 $success = jabber_public_notice($notice);
1562                 if (!$success) {
1563                         common_log(LOG_ERR, 'Error in public broadcast for notice ' . $notice->id);
1564                 }
1565         }
1566         // XXX: broadcast notices to other IM
1567         return $success;
1568 }
1569
1570 function common_broadcast_profile($profile) {
1571         // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
1572         require_once(INSTALLDIR.'/lib/omb.php');
1573         omb_broadcast_profile($profile);
1574         // XXX: Other broadcasts...?
1575         return true;
1576 }
1577
1578 function common_profile_url($nickname) {
1579         return common_local_url('showstream', array('nickname' => $nickname));
1580 }
1581
1582 # Don't call if nobody's logged in
1583
1584 function common_notice_form($action=NULL, $content=NULL) {
1585         $user = common_current_user();
1586         assert(!is_null($user));
1587         common_element_start('form', array('id' => 'status_form',
1588                                                                            'method' => 'post',
1589                                                                            'action' => common_local_url('newnotice')));
1590         common_element_start('p');
1591         common_element('label', array('for' => 'status_textarea',
1592                                                                   'id' => 'status_label'),
1593                                    sprintf(_('What\'s up, %s?'), $user->nickname));
1594     common_element('span', array('id' => 'counter', 'class' => 'counter'), '140');
1595         common_element('textarea', array('id' => 'status_textarea',
1596                                                                          'cols' => 60,
1597                                                                          'rows' => 3,
1598                                                                          'name' => 'status_textarea'),
1599                                    ($content) ? $content : '');
1600         common_hidden('token', common_session_token());
1601         if ($action) {
1602                 common_hidden('returnto', $action);
1603         }
1604         # set by JavaScript
1605         common_hidden('inreplyto', 'false');
1606         common_element('input', array('id' => 'status_submit',
1607                                                                   'name' => 'status_submit',
1608                                                                   'type' => 'submit',
1609                                                                   'value' => _('Send')));
1610         common_element_end('p');
1611         common_element_end('form');
1612 }
1613
1614 # Should make up a reasonable root URL
1615
1616 function common_root_url() {
1617         return common_path('');
1618 }
1619
1620 # returns $bytes bytes of random data as a hexadecimal string
1621 # "good" here is a goal and not a guarantee
1622
1623 function common_good_rand($bytes) {
1624         # XXX: use random.org...?
1625         if (file_exists('/dev/urandom')) {
1626                 return common_urandom($bytes);
1627         } else { # FIXME: this is probably not good enough
1628                 return common_mtrand($bytes);
1629         }
1630 }
1631
1632 function common_urandom($bytes) {
1633         $h = fopen('/dev/urandom', 'rb');
1634         # should not block
1635         $src = fread($h, $bytes);
1636         fclose($h);
1637         $enc = '';
1638         for ($i = 0; $i < $bytes; $i++) {
1639                 $enc .= sprintf("%02x", (ord($src[$i])));
1640         }
1641         return $enc;
1642 }
1643
1644 function common_mtrand($bytes) {
1645         $enc = '';
1646         for ($i = 0; $i < $bytes; $i++) {
1647                 $enc .= sprintf("%02x", mt_rand(0, 255));
1648         }
1649         return $enc;
1650 }
1651
1652 function common_set_returnto($url) {
1653         common_ensure_session();
1654         $_SESSION['returnto'] = $url;
1655 }
1656
1657 function common_get_returnto() {
1658         common_ensure_session();
1659         return $_SESSION['returnto'];
1660 }
1661
1662 function common_timestamp() {
1663         return date('YmdHis');
1664 }
1665
1666 function common_ensure_syslog() {
1667         static $initialized = false;
1668         if (!$initialized) {
1669                 global $config;
1670                 openlog($config['syslog']['appname'], 0, LOG_USER);
1671                 $initialized = true;
1672         }
1673 }
1674
1675 function common_log($priority, $msg, $filename=NULL) {
1676         $logfile = common_config('site', 'logfile');
1677         if ($logfile) {
1678                 $log = fopen($logfile, "a");
1679                 if ($log) {
1680                         static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1681                                                                                           'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1682                         $output = date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1683                         fwrite($log, $output);
1684                         fclose($log);
1685                 }
1686         } else {
1687                 common_ensure_syslog();
1688                 syslog($priority, $msg);
1689         }
1690 }
1691
1692 function common_debug($msg, $filename=NULL) {
1693         if ($filename) {
1694                 common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1695         } else {
1696                 common_log(LOG_DEBUG, $msg);
1697         }
1698 }
1699
1700 function common_log_db_error(&$object, $verb, $filename=NULL) {
1701         $objstr = common_log_objstring($object);
1702         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1703         common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1704 }
1705
1706 function common_log_objstring(&$object) {
1707         if (is_null($object)) {
1708                 return "NULL";
1709         }
1710         $arr = $object->toArray();
1711         $fields = array();
1712         foreach ($arr as $k => $v) {
1713                 $fields[] = "$k='$v'";
1714         }
1715         $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1716         return $objstring;
1717 }
1718
1719 function common_valid_http_url($url) {
1720         return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1721 }
1722
1723 function common_valid_tag($tag) {
1724         if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1725                 return (Validate::email($matches[1]) ||
1726                                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1727         }
1728         return false;
1729 }
1730
1731 # Does a little before-after block for next/prev page
1732
1733 function common_pagination($have_before, $have_after, $page, $action, $args=NULL) {
1734
1735         if ($have_before || $have_after) {
1736                 common_element_start('div', array('id' => 'pagination'));
1737                 common_element_start('ul', array('id' => 'nav_pagination'));
1738         }
1739
1740         if ($have_before) {
1741                 $pargs = array('page' => $page-1);
1742                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
1743
1744                 common_element_start('li', 'before');
1745                 common_element('a', array('href' => common_local_url($action, $newargs)),
1746                                            _('« After'));
1747                 common_element_end('li');
1748         }
1749
1750         if ($have_after) {
1751                 $pargs = array('page' => $page+1);
1752                 $newargs = ($args) ? array_merge($args,$pargs) : $pargs;
1753                 common_element_start('li', 'after');
1754                 common_element('a', array('href' => common_local_url($action, $newargs)),
1755                                                    _('Before Â»'));
1756                 common_element_end('li');
1757         }
1758
1759         if ($have_before || $have_after) {
1760                 common_element_end('ul');
1761                 common_element_end('div');
1762         }
1763 }
1764
1765 /* Following functions are copied from MediaWiki GlobalFunctions.php
1766  * and written by Evan Prodromou. */
1767
1768 function common_accept_to_prefs($accept, $def = '*/*') {
1769         # No arg means accept anything (per HTTP spec)
1770         if(!$accept) {
1771                 return array($def => 1);
1772         }
1773
1774         $prefs = array();
1775
1776         $parts = explode(',', $accept);
1777
1778         foreach($parts as $part) {
1779                 # FIXME: doesn't deal with params like 'text/html; level=1'
1780                 @list($value, $qpart) = explode(';', $part);
1781                 $match = array();
1782                 if(!isset($qpart)) {
1783                         $prefs[$value] = 1;
1784                 } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1785                         $prefs[$value] = $match[1];
1786                 }
1787         }
1788
1789         return $prefs;
1790 }
1791
1792 function common_mime_type_match($type, $avail) {
1793         if(array_key_exists($type, $avail)) {
1794                 return $type;
1795         } else {
1796                 $parts = explode('/', $type);
1797                 if(array_key_exists($parts[0] . '/*', $avail)) {
1798                         return $parts[0] . '/*';
1799                 } elseif(array_key_exists('*/*', $avail)) {
1800                         return '*/*';
1801                 } else {
1802                         return NULL;
1803                 }
1804         }
1805 }
1806
1807 function common_negotiate_type($cprefs, $sprefs) {
1808         $combine = array();
1809
1810         foreach(array_keys($sprefs) as $type) {
1811                 $parts = explode('/', $type);
1812                 if($parts[1] != '*') {
1813                         $ckey = common_mime_type_match($type, $cprefs);
1814                         if($ckey) {
1815                                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1816                         }
1817                 }
1818         }
1819
1820         foreach(array_keys($cprefs) as $type) {
1821                 $parts = explode('/', $type);
1822                 if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1823                         $skey = common_mime_type_match($type, $sprefs);
1824                         if($skey) {
1825                                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1826                         }
1827                 }
1828         }
1829
1830         $bestq = 0;
1831         $besttype = "text/html";
1832
1833         foreach(array_keys($combine) as $type) {
1834                 if($combine[$type] > $bestq) {
1835                         $besttype = $type;
1836                         $bestq = $combine[$type];
1837                 }
1838         }
1839
1840         return $besttype;
1841 }
1842
1843 function common_config($main, $sub) {
1844         global $config;
1845         return isset($config[$main][$sub]) ? $config[$main][$sub] : false;
1846 }
1847
1848 function common_copy_args($from) {
1849         $to = array();
1850         $strip = get_magic_quotes_gpc();
1851         foreach ($from as $k => $v) {
1852                 $to[$k] = ($strip) ? stripslashes($v) : $v;
1853         }
1854         return $to;
1855 }
1856
1857 // Neutralise the evil effects of magic_quotes_gpc in the current request.
1858 // This is used before handing a request off to OAuthRequest::from_request.
1859 function common_remove_magic_from_request() {
1860         if(get_magic_quotes_gpc()) {
1861                 $_POST=array_map('stripslashes',$_POST);
1862                 $_GET=array_map('stripslashes',$_GET);
1863         }
1864 }
1865
1866 function common_user_uri(&$user) {
1867         return common_local_url('userbyid', array('id' => $user->id));
1868 }
1869
1870 function common_notice_uri(&$notice) {
1871         return common_local_url('shownotice',
1872                 array('notice' => $notice->id));
1873 }
1874
1875 # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1876
1877 function common_confirmation_code($bits) {
1878         # 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1879         static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1880         $chars = ceil($bits/5);
1881         $code = '';
1882         for ($i = 0; $i < $chars; $i++) {
1883                 # XXX: convert to string and back
1884                 $num = hexdec(common_good_rand(1));
1885                 # XXX: randomness is too precious to throw away almost
1886                 # 40% of the bits we get!
1887                 $code .= $codechars[$num%32];
1888         }
1889         return $code;
1890 }
1891
1892 # convert markup to HTML
1893
1894 function common_markup_to_html($c) {
1895         $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1896         $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1897         $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1898         return Markdown($c);
1899 }
1900
1901 function common_profile_avatar_url($profile, $size=AVATAR_PROFILE_SIZE) {
1902         $avatar = $profile->getAvatar($size);
1903         if ($avatar) {
1904                 return common_avatar_display_url($avatar);
1905         } else {
1906                 return common_default_avatar($size);
1907         }
1908 }
1909
1910 function common_profile_uri($profile) {
1911         if (!$profile) {
1912                 return NULL;
1913         }
1914         $user = User::staticGet($profile->id);
1915         if ($user) {
1916                 return $user->uri;
1917         }
1918
1919         $remote = Remote_profile::staticGet($profile->id);
1920         if ($remote) {
1921                 return $remote->uri;
1922         }
1923         # XXX: this is a very bad profile!
1924         return NULL;
1925 }
1926
1927 function common_canonical_sms($sms) {
1928         # strip non-digits
1929         preg_replace('/\D/', '', $sms);
1930         return $sms;
1931 }
1932
1933 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
1934     switch ($errno) {
1935      case E_USER_ERROR:
1936                 common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline)");
1937                 exit(1);
1938                 break;
1939
1940          case E_USER_WARNING:
1941                 common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1942                 break;
1943
1944      case E_USER_NOTICE:
1945                 common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1946                 break;
1947     }
1948
1949         # FIXME: show error page if we're on the Web
1950     /* Don't execute PHP internal error handler */
1951     return true;
1952 }
1953
1954 function common_session_token() {
1955         common_ensure_session();
1956         if (!array_key_exists('token', $_SESSION)) {
1957                 $_SESSION['token'] = common_good_rand(64);
1958         }
1959         return $_SESSION['token'];
1960 }
1961
1962 function common_disfavor_form($notice) {
1963         common_element_start('form', array('id' => 'disfavor-' . $notice->id,
1964                                                                            'method' => 'post',
1965                                                                            'class' => 'disfavor',
1966                                                                            'action' => common_local_url('disfavor')));
1967
1968         common_element('input', array('type' => 'hidden',
1969                                                                   'name' => 'token-'. $notice->id,
1970                                                                   'id' => 'token-'. $notice->id,
1971                                                                   'class' => 'token',
1972                                                                   'value' => common_session_token()));
1973
1974         common_element('input', array('type' => 'hidden',
1975                                                                   'name' => 'notice',
1976                                                                   'id' => 'notice-n'. $notice->id,
1977                                                                   'class' => 'notice',
1978                                                                   'value' => $notice->id));
1979
1980         common_element('input', array('type' => 'submit',
1981                                                                   'id' => 'disfavor-submit-' . $notice->id,
1982                                                                   'name' => 'disfavor-submit-' . $notice->id,
1983                                                                   'class' => 'disfavor',
1984                                                                   'value' => 'Disfavor favorite',
1985                                                                   'title' => 'Remove this message from favorites'));
1986         common_element_end('form');
1987 }
1988
1989 function common_favor_form($notice) {
1990         common_element_start('form', array('id' => 'favor-' . $notice->id,
1991                                                                            'method' => 'post',
1992                                                                            'class' => 'favor',
1993                                                                            'action' => common_local_url('favor')));
1994
1995         common_element('input', array('type' => 'hidden',
1996                                                                   'name' => 'token-'. $notice->id,
1997                                                                   'id' => 'token-'. $notice->id,
1998                                                                   'class' => 'token',
1999                                                                   'value' => common_session_token()));
2000
2001         common_element('input', array('type' => 'hidden',
2002                                                                   'name' => 'notice',
2003                                                                   'id' => 'notice-n'. $notice->id,
2004                                                                   'class' => 'notice',
2005                                                                   'value' => $notice->id));
2006
2007         common_element('input', array('type' => 'submit',
2008                                                                   'id' => 'favor-submit-' . $notice->id,
2009                                                                   'name' => 'favor-submit-' . $notice->id,
2010                                                                   'class' => 'favor',
2011                                                                   'value' => 'Add to favorites',
2012                                                                   'title' => 'Add this message to favorites'));
2013         common_element_end('form');
2014 }
2015
2016 function common_nudge_form($profile) {
2017         common_element_start('form', array('id' => 'nudge', 'method' => 'post',
2018                                                                            'action' => common_local_url('nudge', array('nickname' => $profile->nickname))));
2019         common_hidden('token', common_session_token());
2020         common_element('input', array('type' => 'submit',
2021                                                                   'class' => 'submit',
2022                                                                   'value' => _('Send a nudge')));
2023         common_element_end('form');
2024 }
2025 function common_nudge_response() {
2026         common_element('p', array('id' => 'nudge_response'), _('Nudge sent!'));
2027 }
2028
2029 function common_subscribe_form($profile) {
2030         common_element_start('form', array('id' => 'subscribe-' . $profile->nickname,
2031                                                                            'method' => 'post',
2032                                                                            'class' => 'subscribe',
2033                                                                            'action' => common_local_url('subscribe')));
2034         common_hidden('token', common_session_token());
2035         common_element('input', array('id' => 'subscribeto-' . $profile->nickname,
2036                                                                   'name' => 'subscribeto',
2037                                                                   'type' => 'hidden',
2038                                                                   'value' => $profile->nickname));
2039         common_element('input', array('type' => 'submit',
2040                                                                   'class' => 'submit',
2041                                                                   'value' => _('Subscribe')));
2042         common_element_end('form');
2043 }
2044
2045 function common_unsubscribe_form($profile) {
2046         common_element_start('form', array('id' => 'unsubscribe-' . $profile->nickname,
2047                                                                            'method' => 'post',
2048                                                                            'class' => 'unsubscribe',
2049                                                                            'action' => common_local_url('unsubscribe')));
2050         common_hidden('token', common_session_token());
2051         common_element('input', array('id' => 'unsubscribeto-' . $profile->nickname,
2052                                                                   'name' => 'unsubscribeto',
2053                                                                   'type' => 'hidden',
2054                                                                   'value' => $profile->nickname));
2055         common_element('input', array('type' => 'submit',
2056                                                                   'class' => 'submit',
2057                                                                   'value' => _('Unsubscribe')));
2058         common_element_end('form');
2059 }
2060
2061 // XXX: Refactor this code
2062 function common_profile_new_message_nudge ($cur, $profile) {
2063         $user = User::staticGet('id', $profile->id);
2064
2065         if ($cur && $cur->id != $user->id && $cur->mutuallySubscribed($user)) {
2066         common_element_start('li', array('id' => 'profile_send_a_new_message'));
2067                 common_element('a', array('href' => common_local_url('newmessage', array('to' => $user->id))),
2068                                            _('Send a message'));
2069         common_element_end('li');
2070
2071             if ($user->email && $user->emailnotifynudge) {
2072             common_element_start('li', array('id' => 'profile_nudge'));
2073             common_nudge_form($user);
2074             common_element_end('li');
2075         }
2076         }
2077 }
2078
2079 function common_cache_key($extra) {
2080         return 'laconica:' . common_keyize(common_config('site', 'name')) . ':' . $extra;
2081 }
2082
2083 function common_keyize($str) {
2084         $str = strtolower($str);
2085         $str = preg_replace('/\s/', '_', $str);
2086         return $str;
2087 }
2088
2089 function common_message_form($content, $user, $to) {
2090
2091         common_element_start('form', array('id' => 'message_form',
2092                                                                            'method' => 'post',
2093                                                                            'action' => common_local_url('newmessage')));
2094
2095         $mutual_users = $user->mutuallySubscribedUsers();
2096
2097         $mutual = array();
2098
2099         while ($mutual_users->fetch()) {
2100                 if ($mutual_users->id != $user->id) {
2101                         $mutual[$mutual_users->id] = $mutual_users->nickname;
2102                 }
2103         }
2104
2105         $mutual_users->free();
2106         unset($mutual_users);
2107
2108         common_dropdown('to', _('To'), $mutual, NULL, FALSE, $to->id);
2109
2110         common_element_start('p');
2111
2112         common_element('textarea', array('id' => 'message_content',
2113                                                                          'cols' => 60,
2114                                                                          'rows' => 3,
2115                                                                          'name' => 'content'),
2116                                    ($content) ? $content : '');
2117
2118         common_element('input', array('id' => 'message_send',
2119                                                                   'name' => 'message_send',
2120                                                                   'type' => 'submit',
2121                                                                   'value' => _('Send')));
2122
2123         common_hidden('token', common_session_token());
2124
2125         common_element_end('p');
2126         common_element_end('form');
2127 }
2128
2129 function common_memcache() {
2130         static $cache = NULL;
2131         if (!common_config('memcached', 'enabled')) {
2132                 return NULL;
2133         } else {
2134                 if (!$cache) {
2135                         $cache = new Memcache();
2136                         $servers = common_config('memcached', 'server');
2137                         if (is_array($servers)) {
2138                                 foreach($servers as $server) {
2139                                         $cache->addServer($server);
2140                                 }
2141                         } else {
2142                                 $cache->addServer($servers);
2143                         }
2144                 }
2145                 return $cache;
2146         }
2147 }
2148
2149 function common_compatible_license($from, $to) {
2150         # XXX: better compatibility check needed here!
2151         return ($from == $to);
2152 }