]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/util.php
Merge branch '0.8.x' into small-fixes
[quix0rs-gnu-social.git] / lib / util.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, Control Yourself, 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, user, files) */
21
22 // Show a server error
23
24 function common_server_error($msg, $code=500)
25 {
26     $err = new ServerErrorAction($msg, $code);
27     $err->showPage();
28 }
29
30 // Show a user error
31 function common_user_error($msg, $code=400)
32 {
33     $err = new ClientErrorAction($msg, $code);
34     $err->showPage();
35 }
36
37 function common_init_locale($language=null)
38 {
39     if(!$language) {
40         $language = common_language();
41     }
42     putenv('LANGUAGE='.$language);
43     putenv('LANG='.$language);
44     return setlocale(LC_ALL, $language . ".utf8",
45                      $language . ".UTF8",
46                      $language . ".utf-8",
47                      $language . ".UTF-8",
48                      $language);
49 }
50
51 function common_init_language()
52 {
53     mb_internal_encoding('UTF-8');
54     $language = common_language();
55     // So we don't have to make people install the gettext locales
56     $locale_set = common_init_locale($language);
57     bindtextdomain("laconica", common_config('site','locale_path'));
58     bind_textdomain_codeset("laconica", "UTF-8");
59     textdomain("laconica");
60     setlocale(LC_CTYPE, 'C');
61     if(!$locale_set) {
62         common_log(LOG_INFO,'Language requested:'.$language.' - locale could not be set:',__FILE__);
63     }
64 }
65
66 function common_timezone()
67 {
68     if (common_logged_in()) {
69         $user = common_current_user();
70         if ($user->timezone) {
71             return $user->timezone;
72         }
73     }
74
75     return common_config('site', 'timezone');
76 }
77
78 function common_language()
79 {
80
81     // If there is a user logged in and they've set a language preference
82     // then return that one...
83     if (_have_config() && common_logged_in()) {
84         $user = common_current_user();
85         $user_language = $user->language;
86         if ($user_language)
87           return $user_language;
88     }
89
90     // Otherwise, find the best match for the languages requested by the
91     // user's browser...
92     $httplang = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : null;
93     if (!empty($httplang)) {
94         $language = client_prefered_language($httplang);
95         if ($language)
96           return $language;
97     }
98
99     // Finally, if none of the above worked, use the site's default...
100     return common_config('site', 'language');
101 }
102 // salted, hashed passwords are stored in the DB
103
104 function common_munge_password($password, $id)
105 {
106     return md5($password . $id);
107 }
108
109 // check if a username exists and has matching password
110 function common_check_user($nickname, $password)
111 {
112     // NEVER allow blank passwords, even if they match the DB
113     if (mb_strlen($password) == 0) {
114         return false;
115     }
116     $user = User::staticGet('nickname', $nickname);
117     if (is_null($user) || $user === false) {
118         return false;
119     } else {
120         if (0 == strcmp(common_munge_password($password, $user->id),
121                         $user->password)) {
122             return $user;
123         } else {
124             return false;
125         }
126     }
127 }
128
129 // is the current user logged in?
130 function common_logged_in()
131 {
132     return (!is_null(common_current_user()));
133 }
134
135 function common_have_session()
136 {
137     return (0 != strcmp(session_id(), ''));
138 }
139
140 function common_ensure_session()
141 {
142     if (!common_have_session()) {
143         @session_start();
144     }
145 }
146
147 // Three kinds of arguments:
148 // 1) a user object
149 // 2) a nickname
150 // 3) null to clear
151
152 // Initialize to false; set to null if none found
153
154 $_cur = false;
155
156 function common_set_user($user)
157 {
158
159     global $_cur;
160
161     if (is_null($user) && common_have_session()) {
162         $_cur = null;
163         unset($_SESSION['userid']);
164         return true;
165     } else if (is_string($user)) {
166         $nickname = $user;
167         $user = User::staticGet('nickname', $nickname);
168     } else if (!($user instanceof User)) {
169         return false;
170     }
171
172     if ($user) {
173         common_ensure_session();
174         $_SESSION['userid'] = $user->id;
175         $_cur = $user;
176         return $_cur;
177     }
178     return false;
179 }
180
181 function common_set_cookie($key, $value, $expiration=0)
182 {
183     $path = common_config('site', 'path');
184     $server = common_config('site', 'server');
185
186     if ($path && ($path != '/')) {
187         $cookiepath = '/' . $path . '/';
188     } else {
189         $cookiepath = '/';
190     }
191     return setcookie($key,
192                      $value,
193                      $expiration,
194                      $cookiepath,
195                      $server);
196 }
197
198 define('REMEMBERME', 'rememberme');
199 define('REMEMBERME_EXPIRY', 30 * 24 * 60 * 60); // 30 days
200
201 function common_rememberme($user=null)
202 {
203     if (!$user) {
204         $user = common_current_user();
205         if (!$user) {
206             common_debug('No current user to remember', __FILE__);
207             return false;
208         }
209     }
210
211     $rm = new Remember_me();
212
213     $rm->code = common_good_rand(16);
214     $rm->user_id = $user->id;
215
216     // Wrap the insert in some good ol' fashioned transaction code
217
218     $rm->query('BEGIN');
219
220     $result = $rm->insert();
221
222     if (!$result) {
223         common_log_db_error($rm, 'INSERT', __FILE__);
224         common_debug('Error adding rememberme record for ' . $user->nickname, __FILE__);
225         return false;
226     }
227
228     $rm->query('COMMIT');
229
230     common_debug('Inserted rememberme record (' . $rm->code . ', ' . $rm->user_id . '); result = ' . $result . '.', __FILE__);
231
232     $cookieval = $rm->user_id . ':' . $rm->code;
233
234     common_log(LOG_INFO, 'adding rememberme cookie "' . $cookieval . '" for ' . $user->nickname);
235
236     common_set_cookie(REMEMBERME, $cookieval, time() + REMEMBERME_EXPIRY);
237
238     return true;
239 }
240
241 function common_remembered_user()
242 {
243
244     $user = null;
245
246     $packed = isset($_COOKIE[REMEMBERME]) ? $_COOKIE[REMEMBERME] : null;
247
248     if (!$packed) {
249         return null;
250     }
251
252     list($id, $code) = explode(':', $packed);
253
254     if (!$id || !$code) {
255         common_log(LOG_WARNING, 'Malformed rememberme cookie: ' . $packed);
256         common_forgetme();
257         return null;
258     }
259
260     $rm = Remember_me::staticGet($code);
261
262     if (!$rm) {
263         common_log(LOG_WARNING, 'No such remember code: ' . $code);
264         common_forgetme();
265         return null;
266     }
267
268     if ($rm->user_id != $id) {
269         common_log(LOG_WARNING, 'Rememberme code for wrong user: ' . $rm->user_id . ' != ' . $id);
270         common_forgetme();
271         return null;
272     }
273
274     $user = User::staticGet($rm->user_id);
275
276     if (!$user) {
277         common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id);
278         common_forgetme();
279         return null;
280     }
281
282     // successful!
283     $result = $rm->delete();
284
285     if (!$result) {
286         common_log_db_error($rm, 'DELETE', __FILE__);
287         common_log(LOG_WARNING, 'Could not delete rememberme: ' . $code);
288         common_forgetme();
289         return null;
290     }
291
292     common_log(LOG_INFO, 'logging in ' . $user->nickname . ' using rememberme code ' . $rm->code);
293
294     common_set_user($user);
295     common_real_login(false);
296
297     // We issue a new cookie, so they can log in
298     // automatically again after this session
299
300     common_rememberme($user);
301
302     return $user;
303 }
304
305 // must be called with a valid user!
306
307 function common_forgetme()
308 {
309     common_set_cookie(REMEMBERME, '', 0);
310 }
311
312 // who is the current user?
313 function common_current_user()
314 {
315     global $_cur;
316
317     if (!_have_config()) {
318         return null;
319     }
320
321     if ($_cur === false) {
322
323         if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) {
324             common_ensure_session();
325             $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
326             if ($id) {
327                 $_cur = User::staticGet($id);
328                 return $_cur;
329             }
330         }
331
332         // that didn't work; try to remember; will init $_cur to null on failure
333         $_cur = common_remembered_user();
334
335         if ($_cur) {
336             common_debug("Got User " . $_cur->nickname);
337             common_debug("Faking session on remembered user");
338             // XXX: Is this necessary?
339             $_SESSION['userid'] = $_cur->id;
340         }
341     }
342
343     return $_cur;
344 }
345
346 // Logins that are 'remembered' aren't 'real' -- they're subject to
347 // cookie-stealing. So, we don't let them do certain things. New reg,
348 // OpenID, and password logins _are_ real.
349
350 function common_real_login($real=true)
351 {
352     common_ensure_session();
353     $_SESSION['real_login'] = $real;
354 }
355
356 function common_is_real_login()
357 {
358     return common_logged_in() && $_SESSION['real_login'];
359 }
360
361 // get canonical version of nickname for comparison
362 function common_canonical_nickname($nickname)
363 {
364     // XXX: UTF-8 canonicalization (like combining chars)
365     return strtolower($nickname);
366 }
367
368 // get canonical version of email for comparison
369 function common_canonical_email($email)
370 {
371     // XXX: canonicalize UTF-8
372     // XXX: lcase the domain part
373     return $email;
374 }
375
376 function common_render_content($text, $notice)
377 {
378     $r = common_render_text($text);
379     $id = $notice->profile_id;
380     $r = preg_replace('/(^|\s+)@([A-Za-z0-9]{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r);
381     $r = preg_replace('/^T ([A-Z0-9]{1,64}) /e', "'T '.common_at_link($id, '\\1').' '", $r);
382     $r = preg_replace('/(^|\s+)@#([A-Za-z0-9]{1,64})/e', "'\\1@#'.common_at_hash_link($id, '\\2')", $r);
383     $r = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r);
384     return $r;
385 }
386
387 function common_render_text($text)
388 {
389     $r = htmlspecialchars($text);
390
391     $r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
392     $r = common_replace_urls_callback($r, 'common_linkify');
393     $r = preg_replace('/(^|\(|\[|\s+)#([A-Za-z0-9_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
394     // XXX: machine tags
395     return $r;
396 }
397
398 function common_replace_urls_callback($text, $callback, $notice_id = null) {
399     // Start off with a regex
400     $regex = '#'.
401     '(?:'.
402         '(?:'.
403             '(?:https?|ftps?|mms|rtsp|gopher|news|nntp|telnet|wais|file|prospero|webcal|xmpp|irc)://'.
404             '|'.
405             '(?:mailto|aim|tel):'.
406         ')'.
407         '[^.\s]+\.[^\s]+'.
408         '|'.
409         '(?:[^.\s/:]+\.)+'.
410         '(?:museum|travel|[a-z]{2,4})'.
411         '(?:[:/][^\s]*)?'.
412     ')'.
413     '#ix';
414     preg_match_all($regex, $text, $matches);
415
416     // Then clean up what the regex left behind
417     $offset = 0;
418     foreach($matches[0] as $orig_url) {
419         $url = htmlspecialchars_decode($orig_url);
420
421         // Make sure we didn't pick up an email address
422         if (preg_match('#^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$#i', $url)) continue;
423
424         // Remove surrounding punctuation
425         $url = trim($url, '.?!,;:\'"`([<');
426
427         // Remove surrounding parens and the like
428         preg_match('/[)\]>]+$/', $url, $trailing);
429         if (isset($trailing[0])) {
430             preg_match_all('/[(\[<]/', $url, $opened);
431             preg_match_all('/[)\]>]/', $url, $closed);
432             $unopened = count($closed[0]) - count($opened[0]);
433
434             // Make sure not to take off more closing parens than there are at the end
435             $unopened = ($unopened > mb_strlen($trailing[0])) ? mb_strlen($trailing[0]):$unopened;
436
437             $url = ($unopened > 0) ? mb_substr($url, 0, $unopened * -1):$url;
438         }
439
440         // Remove trailing punctuation again (in case there were some inside parens)
441         $url = rtrim($url, '.?!,;:\'"`');
442
443         // Make sure we didn't capture part of the next sentence
444         preg_match('#((?:[^.\s/]+\.)+)(museum|travel|[a-z]{2,4})#i', $url, $url_parts);
445
446         // Were the parts capitalized any?
447         $last_part = (mb_strtolower($url_parts[2]) !== $url_parts[2]) ? true:false;
448         $prev_part = (mb_strtolower($url_parts[1]) !== $url_parts[1]) ? true:false;
449
450         // If the first part wasn't cap'd but the last part was, we captured too much
451         if ((!$prev_part && $last_part)) {
452             $url = mb_substr($url, 0 , mb_strpos($url, '.'.$url_parts['2'], 0));
453         }
454
455         // Capture the new TLD
456         preg_match('#((?:[^.\s/]+\.)+)(museum|travel|[a-z]{2,4})#i', $url, $url_parts);
457
458         $tlds = array('ac', 'ad', 'ae', 'aero', 'af', 'ag', 'ai', 'al', 'am', 'an', 'ao', 'aq', 'ar', 'arpa', 'as', 'asia', 'at', 'au', 'aw', 'ax', 'az', 'ba', 'bb', 'bd', 'be', 'bf', 'bg', 'bh', 'bi', 'biz', 'bj', 'bm', 'bn', 'bo', 'br', 'bs', 'bt', 'bv', 'bw', 'by', 'bz', 'ca', 'cat', 'cc', 'cd', 'cf', 'cg', 'ch', 'ci', 'ck', 'cl', 'cm', 'cn', 'co', 'com', 'coop', 'cr', 'cu', 'cv', 'cx', 'cy', 'cz', 'de', 'dj', 'dk', 'dm', 'do', 'dz', 'ec', 'edu', 'ee', 'eg', 'er', 'es', 'et', 'eu', 'fi', 'fj', 'fk', 'fm', 'fo', 'fr', 'ga', 'gb', 'gd', 'ge', 'gf', 'gg', 'gh', 'gi', 'gl', 'gm', 'gn', 'gov', 'gp', 'gq', 'gr', 'gs', 'gt', 'gu', 'gw', 'gy', 'hk', 'hm', 'hn', 'hr', 'ht', 'hu', 'id', 'ie', 'il', 'im', 'in', 'info', 'int', 'io', 'iq', 'ir', 'is', 'it', 'je', 'jm', 'jo', 'jobs', 'jp', 'ke', 'kg', 'kh', 'ki', 'km', 'kn', 'kp', 'kr', 'kw', 'ky', 'kz', 'la', 'lb', 'lc', 'li', 'lk', 'lr', 'ls', 'lt', 'lu', 'lv', 'ly', 'ma', 'mc', 'md', 'me', 'mg', 'mh', 'mil', 'mk', 'ml', 'mm', 'mn', 'mo', 'mobi', 'mp', 'mq', 'mr', 'ms', 'mt', 'mu', 'museum', 'mv', 'mw', 'mx', 'my', 'mz', 'na', 'name', 'nc', 'ne', 'net', 'nf', 'ng', 'ni', 'nl', 'no', 'np', 'nr', 'nu', 'nz', 'om', 'org', 'pa', 'pe', 'pf', 'pg', 'ph', 'pk', 'pl', 'pm', 'pn', 'pr', 'pro', 'ps', 'pt', 'pw', 'py', 'qa', 're', 'ro', 'rs', 'ru', 'rw', 'sa', 'sb', 'sc', 'sd', 'se', 'sg', 'sh', 'si', 'sj', 'sk', 'sl', 'sm', 'sn', 'so', 'sr', 'st', 'su', 'sv', 'sy', 'sz', 'tc', 'td', 'tel', 'tf', 'tg', 'th', 'tj', 'tk', 'tl', 'tm', 'tn', 'to', 'tp', 'tr', 'travel', 'tt', 'tv', 'tw', 'tz', 'ua', 'ug', 'uk', 'us', 'uy', 'uz', 'va', 'vc', 've', 'vg', 'vi', 'vn', 'vu', 'wf', 'ws', 'ye', 'yt', 'yu', 'za', 'zm', 'zw');
459
460         if (!in_array($url_parts[2], $tlds)) continue;
461
462         // Make sure we didn't capture a hash tag
463         if (strpos($url, '#') === 0) continue;
464
465         // Put the url back the way we found it.
466         $url = (mb_strpos($orig_url, htmlspecialchars($url)) === FALSE) ? $url:htmlspecialchars($url);
467
468         // Call user specified func
469         if (empty($notice_id)) {
470             $modified_url = call_user_func($callback, $url);
471         } else {
472             $modified_url = call_user_func($callback, array($url, $notice_id));
473         }
474
475         // Replace it!
476         $start = mb_strpos($text, $url, $offset);
477         $text = mb_substr($text, 0, $start).$modified_url.mb_substr($text, $start + mb_strlen($url), mb_strlen($text));
478         $offset = $start + mb_strlen($modified_url);
479     }
480
481     return $text;
482 }
483
484 function common_linkify($url) {
485     // It comes in special'd, so we unspecial it before passing to the stringifying
486     // functions
487     $url = htmlspecialchars_decode($url);
488     $display = File_redirection::_canonUrl($url);
489     $longurl_data = File_redirection::where($url);
490     if (is_array($longurl_data)) {
491         $longurl = $longurl_data['url'];
492     } elseif (is_string($longurl_data)) {
493         $longurl = $longurl_data;
494     } else {
495         die('impossible to linkify');
496     }
497
498     $attrs = array('href' => $longurl, 'rel' => 'external');
499
500     $is_attachment = false;
501     $attachment_id = null;
502     $has_thumb = false;
503
504     // Check to see whether there's a filename associated with this URL.
505     // If there is, it's an upload and qualifies as an attachment
506
507     $localfile = File::staticGet('url', $longurl);
508
509     if (!empty($localfile)) {
510         if (isset($localfile->filename)) {
511             $is_attachment = true;
512             $attachment_id = $localfile->id;
513         }
514     }
515
516 // if this URL is an attachment, then we set class='attachment' and id='attahcment-ID'
517 // where ID is the id of the attachment for the given URL.
518 //
519 // we need a better test telling what can be shown as an attachment
520 // we're currently picking up oembeds only.
521 // I think the best option is another file_view table in the db
522 // and associated dbobject.
523
524     $query = "select file_oembed.file_id as file_id from file join file_oembed on file.id = file_oembed.file_id where file.url='$longurl'";
525     $file = new File;
526     $file->query($query);
527     $file->fetch();
528
529     if (!empty($file->file_id)) {
530         $is_attachment = true;
531         $attachment_id = $file->file_id;
532
533         $query = "select file_thumbnail.file_id as file_id from file join file_thumbnail on file.id = file_thumbnail.file_id where file.url='$longurl'";
534         $file2 = new File;
535         $file2->query($query);
536         $file2->fetch();
537
538         if (!empty($file2)) {
539             $has_thumb = true;
540         }
541     }
542
543     // Add clippy
544     if ($is_attachment) {
545         $attrs['class'] = 'attachment';
546         if ($has_thumb) {
547             $attrs['class'] = 'attachment thumbnail';
548         }
549         $attrs['id'] = "attachment-{$attachment_id}";
550     }
551
552     return XMLStringer::estring('a', $attrs, $display);
553 }
554
555 function common_shorten_links($text)
556 {
557     if (mb_strlen($text) <= 140) return $text;
558     return common_replace_urls_callback($text, array('File_redirection', 'makeShort'));
559 }
560
561 function common_xml_safe_str($str)
562 {
563     // Neutralize control codes and surrogates
564         return preg_replace('/[\p{Cc}\p{Cs}]/u', '*', $str);
565 }
566
567 function common_tag_link($tag)
568 {
569     $canonical = common_canonical_tag($tag);
570     $url = common_local_url('tag', array('tag' => $canonical));
571     $xs = new XMLStringer();
572     $xs->elementStart('span', 'tag');
573     $xs->element('a', array('href' => $url,
574                             'rel' => 'tag'),
575                  $tag);
576     $xs->elementEnd('span');
577     return $xs->getString();
578 }
579
580 function common_canonical_tag($tag)
581 {
582     return strtolower(str_replace(array('-', '_', '.'), '', $tag));
583 }
584
585 function common_valid_profile_tag($str)
586 {
587     return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
588 }
589
590 function common_at_link($sender_id, $nickname)
591 {
592     $sender = Profile::staticGet($sender_id);
593     $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
594     if ($recipient) {
595         $user = User::staticGet('id', $recipient->id);
596         if ($user) {
597             $url = common_local_url('userbyid', array('id' => $user->id));
598         } else {
599             $url = $recipient->profileurl;
600         }
601         $xs = new XMLStringer(false);
602         $attrs = array('href' => $url,
603                        'class' => 'url');
604         if (!empty($recipient->fullname)) {
605             $attrs['title'] = $recipient->fullname . ' (' . $recipient->nickname . ')';
606         }
607         $xs->elementStart('span', 'vcard');
608         $xs->elementStart('a', $attrs);
609         $xs->element('span', 'fn nickname', $nickname);
610         $xs->elementEnd('a');
611         $xs->elementEnd('span');
612         return $xs->getString();
613     } else {
614         return $nickname;
615     }
616 }
617
618 function common_group_link($sender_id, $nickname)
619 {
620     $sender = Profile::staticGet($sender_id);
621     $group = User_group::getForNickname($nickname);
622     if ($group && $sender->isMember($group)) {
623         $attrs = array('href' => $group->permalink(),
624                        'class' => 'url');
625         if (!empty($group->fullname)) {
626             $attrs['title'] = $group->fullname . ' (' . $group->nickname . ')';
627         }
628         $xs = new XMLStringer();
629         $xs->elementStart('span', 'vcard');
630         $xs->elementStart('a', $attrs);
631         $xs->element('span', 'fn nickname', $nickname);
632         $xs->elementEnd('a');
633         $xs->elementEnd('span');
634         return $xs->getString();
635     } else {
636         return $nickname;
637     }
638 }
639
640 function common_at_hash_link($sender_id, $tag)
641 {
642     $user = User::staticGet($sender_id);
643     if (!$user) {
644         return $tag;
645     }
646     $tagged = Profile_tag::getTagged($user->id, common_canonical_tag($tag));
647     if ($tagged) {
648         $url = common_local_url('subscriptions',
649                                 array('nickname' => $user->nickname,
650                                       'tag' => $tag));
651         $xs = new XMLStringer();
652         $xs->elementStart('span', 'tag');
653         $xs->element('a', array('href' => $url,
654                                 'rel' => $tag),
655                      $tag);
656         $xs->elementEnd('span');
657         return $xs->getString();
658     } else {
659         return $tag;
660     }
661 }
662
663 function common_relative_profile($sender, $nickname, $dt=null)
664 {
665     // Try to find profiles this profile is subscribed to that have this nickname
666     $recipient = new Profile();
667     // XXX: use a join instead of a subquery
668     $recipient->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$sender->id.' and subscribed = id)', 'AND');
669     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
670     if ($recipient->find(true)) {
671         // XXX: should probably differentiate between profiles with
672         // the same name by date of most recent update
673         return $recipient;
674     }
675     // Try to find profiles that listen to this profile and that have this nickname
676     $recipient = new Profile();
677     // XXX: use a join instead of a subquery
678     $recipient->whereAdd('EXISTS (SELECT subscriber from subscription where subscribed = '.$sender->id.' and subscriber = id)', 'AND');
679     $recipient->whereAdd("nickname = '" . trim($nickname) . "'", 'AND');
680     if ($recipient->find(true)) {
681         // XXX: should probably differentiate between profiles with
682         // the same name by date of most recent update
683         return $recipient;
684     }
685     // If this is a local user, try to find a local user with that nickname.
686     $sender = User::staticGet($sender->id);
687     if ($sender) {
688         $recipient_user = User::staticGet('nickname', $nickname);
689         if ($recipient_user) {
690             return $recipient_user->getProfile();
691         }
692     }
693     // Otherwise, no links. @messages from local users to remote users,
694     // or from remote users to other remote users, are just
695     // outside our ability to make intelligent guesses about
696     return null;
697 }
698
699 function common_local_url($action, $args=null, $params=null, $fragment=null)
700 {
701     static $sensitive = array('login', 'register', 'passwordsettings',
702                               'twittersettings', 'finishopenidlogin',
703                               'finishaddopenid', 'api');
704
705     $r = Router::get();
706     $path = $r->build($action, $args, $params, $fragment);
707
708     $ssl = in_array($action, $sensitive);
709
710     if (common_config('site','fancy')) {
711         $url = common_path(mb_substr($path, 1), $ssl);
712     } else {
713         if (mb_strpos($path, '/index.php') === 0) {
714             $url = common_path(mb_substr($path, 1), $ssl);
715         } else {
716             $url = common_path('index.php'.$path, $ssl);
717         }
718     }
719     return $url;
720 }
721
722 function common_path($relative, $ssl=false)
723 {
724     $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
725
726     if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
727         || common_config('site', 'ssl') === 'always') {
728         $proto = 'https';
729         if (is_string(common_config('site', 'sslserver')) &&
730             mb_strlen(common_config('site', 'sslserver')) > 0) {
731             $serverpart = common_config('site', 'sslserver');
732         } else {
733             $serverpart = common_config('site', 'server');
734         }
735     } else {
736         $proto = 'http';
737         $serverpart = common_config('site', 'server');
738     }
739
740     return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
741 }
742
743 function common_date_string($dt)
744 {
745     // XXX: do some sexy date formatting
746     // return date(DATE_RFC822, $dt);
747     $t = strtotime($dt);
748     $now = time();
749     $diff = $now - $t;
750
751     if ($now < $t) { // that shouldn't happen!
752         return common_exact_date($dt);
753     } else if ($diff < 60) {
754         return _('a few seconds ago');
755     } else if ($diff < 92) {
756         return _('about a minute ago');
757     } else if ($diff < 3300) {
758         return sprintf(_('about %d minutes ago'), round($diff/60));
759     } else if ($diff < 5400) {
760         return _('about an hour ago');
761     } else if ($diff < 22 * 3600) {
762         return sprintf(_('about %d hours ago'), round($diff/3600));
763     } else if ($diff < 37 * 3600) {
764         return _('about a day ago');
765     } else if ($diff < 24 * 24 * 3600) {
766         return sprintf(_('about %d days ago'), round($diff/(24*3600)));
767     } else if ($diff < 46 * 24 * 3600) {
768         return _('about a month ago');
769     } else if ($diff < 330 * 24 * 3600) {
770         return sprintf(_('about %d months ago'), round($diff/(30*24*3600)));
771     } else if ($diff < 480 * 24 * 3600) {
772         return _('about a year ago');
773     } else {
774         return common_exact_date($dt);
775     }
776 }
777
778 function common_exact_date($dt)
779 {
780     static $_utc;
781     static $_siteTz;
782
783     if (!$_utc) {
784         $_utc = new DateTimeZone('UTC');
785         $_siteTz = new DateTimeZone(common_timezone());
786     }
787
788     $dateStr = date('d F Y H:i:s', strtotime($dt));
789     $d = new DateTime($dateStr, $_utc);
790     $d->setTimezone($_siteTz);
791     return $d->format(DATE_RFC850);
792 }
793
794 function common_date_w3dtf($dt)
795 {
796     $dateStr = date('d F Y H:i:s', strtotime($dt));
797     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
798     $d->setTimezone(new DateTimeZone(common_timezone()));
799     return $d->format(DATE_W3C);
800 }
801
802 function common_date_rfc2822($dt)
803 {
804     $dateStr = date('d F Y H:i:s', strtotime($dt));
805     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
806     $d->setTimezone(new DateTimeZone(common_timezone()));
807     return $d->format('r');
808 }
809
810 function common_date_iso8601($dt)
811 {
812     $dateStr = date('d F Y H:i:s', strtotime($dt));
813     $d = new DateTime($dateStr, new DateTimeZone('UTC'));
814     $d->setTimezone(new DateTimeZone(common_timezone()));
815     return $d->format('c');
816 }
817
818 function common_sql_now()
819 {
820     return strftime('%Y-%m-%d %H:%M:%S', time());
821 }
822
823 function common_redirect($url, $code=307)
824 {
825     static $status = array(301 => "Moved Permanently",
826                            302 => "Found",
827                            303 => "See Other",
828                            307 => "Temporary Redirect");
829
830     header('HTTP/1.1 '.$code.' '.$status[$code]);
831     header("Location: $url");
832
833     $xo = new XMLOutputter();
834     $xo->startXML('a',
835                   '-//W3C//DTD XHTML 1.0 Strict//EN',
836                   'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
837     $xo->element('a', array('href' => $url), $url);
838     $xo->endXML();
839     exit;
840 }
841
842 function common_broadcast_notice($notice, $remote=false)
843 {
844     if (common_config('queue', 'enabled')) {
845         // Do it later!
846         return common_enqueue_notice($notice);
847     } else {
848         return common_real_broadcast($notice, $remote);
849     }
850 }
851
852 // Stick the notice on the queue
853
854 function common_enqueue_notice($notice)
855 {
856     $transports = array('omb', 'sms', 'public', 'twitter', 'facebook', 'ping');
857
858     if (common_config('xmpp', 'enabled'))
859     {
860         $transports[] = 'jabber';
861     }
862
863     if (common_config('queue','subsystem') == 'stomp') {
864         common_enqueue_notice_stomp($notice, $transports);
865     }
866     else {
867         common_enqueue_notice_db($notice, $transports);
868     }
869     return $result;
870 }
871
872 function common_enqueue_notice_stomp($notice, $transports)
873 {
874     // use an external message queue system via STOMP
875     require_once("Stomp.php");
876
877     $server = common_config('queue','stomp_server');
878     $username = common_config('queue', 'stomp_username');
879     $password = common_config('queue', 'stomp_password');
880
881     $con = new Stomp($server);
882
883     if (!$con->connect($username, $password)) {
884         common_log(LOG_ERR, 'Failed to connect to queue server');
885         return false;
886     }
887
888     $queue_basename = common_config('queue','queue_basename');
889
890     foreach ($transports as $transport) {
891         $result = $con->send('/queue/'.$queue_basename.'-'.$transport, // QUEUE
892                              $notice->id,               // BODY of the message
893                              array ('created' => $notice->created));
894         if (!$result) {
895             common_log(LOG_ERR, 'Error sending to '.$transport.' queue');
896             return false;
897         }
898         common_log(LOG_DEBUG, 'complete remote queueing notice ID = ' . $notice->id . ' for ' . $transport);
899     }
900
901     //send tags as headers, so they can be used as JMS selectors
902     common_log(LOG_DEBUG, 'searching for tags ' . $notice->id);
903     $tags = array();
904     $tag = new Notice_tag();
905     $tag->notice_id = $notice->id;
906     if ($tag->find()) {
907         while ($tag->fetch()) {
908             common_log(LOG_DEBUG, 'tag found = ' . $tag->tag);
909             array_push($tags,$tag->tag);
910         }
911     }
912     $tag->free();
913
914     $con->send('/topic/laconica.'.$notice->profile_id,
915                $notice->content,
916                array(
917                      'profile_id' => $notice->profile_id,
918                      'created' => $notice->created,
919                      'tags' => implode($tags,' - ')
920                      )
921                );
922     common_log(LOG_DEBUG, 'sent to personal topic ' . $notice->id);
923     $con->send('/topic/laconica.allusers',
924                $notice->content,
925                array(
926                      'profile_id' => $notice->profile_id,
927                      'created' => $notice->created,
928                      'tags' => implode($tags,' - ')
929                      )
930                );
931     common_log(LOG_DEBUG, 'sent to catch-all topic ' . $notice->id);
932     $result = true;
933 }
934
935 function common_enqueue_notice_db($notice, $transports)
936 {
937     // in any other case, 'internal'
938     foreach ($transports as $transport) {
939         common_enqueue_notice_transport($notice, $transport);
940     }
941 }
942
943 function common_enqueue_notice_transport($notice, $transport)
944 {
945     $qi = new Queue_item();
946     $qi->notice_id = $notice->id;
947     $qi->transport = $transport;
948     $qi->created = $notice->created;
949     $result = $qi->insert();
950     if (!$result) {
951         $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
952         common_log(LOG_ERR, 'DB error inserting queue item: ' . $last_error->message);
953         throw new ServerException('DB error inserting queue item: ' . $last_error->message);
954     }
955     common_log(LOG_DEBUG, 'complete queueing notice ID = ' . $notice->id . ' for ' . $transport);
956     return true;
957 }
958
959 function common_real_broadcast($notice, $remote=false)
960 {
961     $success = true;
962     if (!$remote) {
963         // Make sure we have the OMB stuff
964         require_once(INSTALLDIR.'/lib/omb.php');
965         $success = omb_broadcast_remote_subscribers($notice);
966         if (!$success) {
967             common_log(LOG_ERR, 'Error in OMB broadcast for notice ' . $notice->id);
968         }
969     }
970     if ($success) {
971         require_once(INSTALLDIR.'/lib/jabber.php');
972         $success = jabber_broadcast_notice($notice);
973         if (!$success) {
974             common_log(LOG_ERR, 'Error in jabber broadcast for notice ' . $notice->id);
975         }
976     }
977     if ($success) {
978         require_once(INSTALLDIR.'/lib/mail.php');
979         $success = mail_broadcast_notice_sms($notice);
980         if (!$success) {
981             common_log(LOG_ERR, 'Error in sms broadcast for notice ' . $notice->id);
982         }
983     }
984     if ($success) {
985         $success = jabber_public_notice($notice);
986         if (!$success) {
987             common_log(LOG_ERR, 'Error in public broadcast for notice ' . $notice->id);
988         }
989     }
990     if ($success) {
991         $success = broadcast_twitter($notice);
992         if (!$success) {
993             common_log(LOG_ERR, 'Error in Twitter broadcast for notice ' . $notice->id);
994         }
995     }
996
997     // XXX: Do a real-time FB broadcast here?
998
999     // XXX: broadcast notices to other IM
1000     return $success;
1001 }
1002
1003 function common_broadcast_profile($profile)
1004 {
1005     // XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ
1006     require_once(INSTALLDIR.'/lib/omb.php');
1007     omb_broadcast_profile($profile);
1008     // XXX: Other broadcasts...?
1009     return true;
1010 }
1011
1012 function common_profile_url($nickname)
1013 {
1014     return common_local_url('showstream', array('nickname' => $nickname));
1015 }
1016
1017 // Should make up a reasonable root URL
1018
1019 function common_root_url($ssl=false)
1020 {
1021     return common_path('', $ssl);
1022 }
1023
1024 // returns $bytes bytes of random data as a hexadecimal string
1025 // "good" here is a goal and not a guarantee
1026
1027 function common_good_rand($bytes)
1028 {
1029     // XXX: use random.org...?
1030     if (@file_exists('/dev/urandom')) {
1031         return common_urandom($bytes);
1032     } else { // FIXME: this is probably not good enough
1033         return common_mtrand($bytes);
1034     }
1035 }
1036
1037 function common_urandom($bytes)
1038 {
1039     $h = fopen('/dev/urandom', 'rb');
1040     // should not block
1041     $src = fread($h, $bytes);
1042     fclose($h);
1043     $enc = '';
1044     for ($i = 0; $i < $bytes; $i++) {
1045         $enc .= sprintf("%02x", (ord($src[$i])));
1046     }
1047     return $enc;
1048 }
1049
1050 function common_mtrand($bytes)
1051 {
1052     $enc = '';
1053     for ($i = 0; $i < $bytes; $i++) {
1054         $enc .= sprintf("%02x", mt_rand(0, 255));
1055     }
1056     return $enc;
1057 }
1058
1059 function common_set_returnto($url)
1060 {
1061     common_ensure_session();
1062     $_SESSION['returnto'] = $url;
1063 }
1064
1065 function common_get_returnto()
1066 {
1067     common_ensure_session();
1068     return $_SESSION['returnto'];
1069 }
1070
1071 function common_timestamp()
1072 {
1073     return date('YmdHis');
1074 }
1075
1076 function common_ensure_syslog()
1077 {
1078     static $initialized = false;
1079     if (!$initialized) {
1080         openlog(common_config('syslog', 'appname'), 0, LOG_USER);
1081         $initialized = true;
1082     }
1083 }
1084
1085 function common_log($priority, $msg, $filename=null)
1086 {
1087     $logfile = common_config('site', 'logfile');
1088     if ($logfile) {
1089         $log = fopen($logfile, "a");
1090         if ($log) {
1091             static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
1092                                               'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
1093             $output = date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n";
1094             fwrite($log, $output);
1095             fclose($log);
1096         }
1097     } else {
1098         common_ensure_syslog();
1099         syslog($priority, $msg);
1100     }
1101 }
1102
1103 function common_debug($msg, $filename=null)
1104 {
1105     if ($filename) {
1106         common_log(LOG_DEBUG, basename($filename).' - '.$msg);
1107     } else {
1108         common_log(LOG_DEBUG, $msg);
1109     }
1110 }
1111
1112 function common_log_db_error(&$object, $verb, $filename=null)
1113 {
1114     $objstr = common_log_objstring($object);
1115     $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
1116     common_log(LOG_ERR, $last_error->message . '(' . $verb . ' on ' . $objstr . ')', $filename);
1117 }
1118
1119 function common_log_objstring(&$object)
1120 {
1121     if (is_null($object)) {
1122         return "null";
1123     }
1124     $arr = $object->toArray();
1125     $fields = array();
1126     foreach ($arr as $k => $v) {
1127         $fields[] = "$k='$v'";
1128     }
1129     $objstring = $object->tableName() . '[' . implode(',', $fields) . ']';
1130     return $objstring;
1131 }
1132
1133 function common_valid_http_url($url)
1134 {
1135     return Validate::uri($url, array('allowed_schemes' => array('http', 'https')));
1136 }
1137
1138 function common_valid_tag($tag)
1139 {
1140     if (preg_match('/^tag:(.*?),(\d{4}(-\d{2}(-\d{2})?)?):(.*)$/', $tag, $matches)) {
1141         return (Validate::email($matches[1]) ||
1142                 preg_match('/^([\w-\.]+)$/', $matches[1]));
1143     }
1144     return false;
1145 }
1146
1147 /* Following functions are copied from MediaWiki GlobalFunctions.php
1148  * and written by Evan Prodromou. */
1149
1150 function common_accept_to_prefs($accept, $def = '*/*')
1151 {
1152     // No arg means accept anything (per HTTP spec)
1153     if(!$accept) {
1154         return array($def => 1);
1155     }
1156
1157     $prefs = array();
1158
1159     $parts = explode(',', $accept);
1160
1161     foreach($parts as $part) {
1162         // FIXME: doesn't deal with params like 'text/html; level=1'
1163         @list($value, $qpart) = explode(';', trim($part));
1164         $match = array();
1165         if(!isset($qpart)) {
1166             $prefs[$value] = 1;
1167         } elseif(preg_match('/q\s*=\s*(\d*\.\d+)/', $qpart, $match)) {
1168             $prefs[$value] = $match[1];
1169         }
1170     }
1171
1172     return $prefs;
1173 }
1174
1175 function common_mime_type_match($type, $avail)
1176 {
1177     if(array_key_exists($type, $avail)) {
1178         return $type;
1179     } else {
1180         $parts = explode('/', $type);
1181         if(array_key_exists($parts[0] . '/*', $avail)) {
1182             return $parts[0] . '/*';
1183         } elseif(array_key_exists('*/*', $avail)) {
1184             return '*/*';
1185         } else {
1186             return null;
1187         }
1188     }
1189 }
1190
1191 function common_negotiate_type($cprefs, $sprefs)
1192 {
1193     $combine = array();
1194
1195     foreach(array_keys($sprefs) as $type) {
1196         $parts = explode('/', $type);
1197         if($parts[1] != '*') {
1198             $ckey = common_mime_type_match($type, $cprefs);
1199             if($ckey) {
1200                 $combine[$type] = $sprefs[$type] * $cprefs[$ckey];
1201             }
1202         }
1203     }
1204
1205     foreach(array_keys($cprefs) as $type) {
1206         $parts = explode('/', $type);
1207         if($parts[1] != '*' && !array_key_exists($type, $sprefs)) {
1208             $skey = common_mime_type_match($type, $sprefs);
1209             if($skey) {
1210                 $combine[$type] = $sprefs[$skey] * $cprefs[$type];
1211             }
1212         }
1213     }
1214
1215     $bestq = 0;
1216     $besttype = 'text/html';
1217
1218     foreach(array_keys($combine) as $type) {
1219         if($combine[$type] > $bestq) {
1220             $besttype = $type;
1221             $bestq = $combine[$type];
1222         }
1223     }
1224
1225     if ('text/html' === $besttype) {
1226         return "text/html; charset=utf-8";
1227     }
1228     return $besttype;
1229 }
1230
1231 function common_config($main, $sub)
1232 {
1233     global $config;
1234     return isset($config[$main][$sub]) ? $config[$main][$sub] : false;
1235 }
1236
1237 function common_copy_args($from)
1238 {
1239     $to = array();
1240     $strip = get_magic_quotes_gpc();
1241     foreach ($from as $k => $v) {
1242         $to[$k] = ($strip) ? stripslashes($v) : $v;
1243     }
1244     return $to;
1245 }
1246
1247 // Neutralise the evil effects of magic_quotes_gpc in the current request.
1248 // This is used before handing a request off to OAuthRequest::from_request.
1249 function common_remove_magic_from_request()
1250 {
1251     if(get_magic_quotes_gpc()) {
1252         $_POST=array_map('stripslashes',$_POST);
1253         $_GET=array_map('stripslashes',$_GET);
1254     }
1255 }
1256
1257 function common_user_uri(&$user)
1258 {
1259     return common_local_url('userbyid', array('id' => $user->id));
1260 }
1261
1262 function common_notice_uri(&$notice)
1263 {
1264     return common_local_url('shownotice',
1265                             array('notice' => $notice->id));
1266 }
1267
1268 // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1269
1270 function common_confirmation_code($bits)
1271 {
1272     // 36 alphanums - lookalikes (0, O, 1, I) = 32 chars = 5 bits
1273     static $codechars = '23456789ABCDEFGHJKLMNPQRSTUVWXYZ';
1274     $chars = ceil($bits/5);
1275     $code = '';
1276     for ($i = 0; $i < $chars; $i++) {
1277         // XXX: convert to string and back
1278         $num = hexdec(common_good_rand(1));
1279         // XXX: randomness is too precious to throw away almost
1280         // 40% of the bits we get!
1281         $code .= $codechars[$num%32];
1282     }
1283     return $code;
1284 }
1285
1286 // convert markup to HTML
1287
1288 function common_markup_to_html($c)
1289 {
1290     $c = preg_replace('/%%action.(\w+)%%/e', "common_local_url('\\1')", $c);
1291     $c = preg_replace('/%%doc.(\w+)%%/e', "common_local_url('doc', array('title'=>'\\1'))", $c);
1292     $c = preg_replace('/%%(\w+).(\w+)%%/e', 'common_config(\'\\1\', \'\\2\')', $c);
1293     return Markdown($c);
1294 }
1295
1296 function common_profile_uri($profile)
1297 {
1298     if (!$profile) {
1299         return null;
1300     }
1301     $user = User::staticGet($profile->id);
1302     if ($user) {
1303         return $user->uri;
1304     }
1305
1306     $remote = Remote_profile::staticGet($profile->id);
1307     if ($remote) {
1308         return $remote->uri;
1309     }
1310     // XXX: this is a very bad profile!
1311     return null;
1312 }
1313
1314 function common_canonical_sms($sms)
1315 {
1316     // strip non-digits
1317     preg_replace('/\D/', '', $sms);
1318     return $sms;
1319 }
1320
1321 function common_error_handler($errno, $errstr, $errfile, $errline, $errcontext)
1322 {
1323     switch ($errno) {
1324      case E_USER_ERROR:
1325         common_log(LOG_ERR, "[$errno] $errstr ($errfile:$errline)");
1326         exit(1);
1327         break;
1328
1329      case E_USER_WARNING:
1330         common_log(LOG_WARNING, "[$errno] $errstr ($errfile:$errline)");
1331         break;
1332
1333      case E_USER_NOTICE:
1334         common_log(LOG_NOTICE, "[$errno] $errstr ($errfile:$errline)");
1335         break;
1336     }
1337
1338     // FIXME: show error page if we're on the Web
1339     /* Don't execute PHP internal error handler */
1340     return true;
1341 }
1342
1343 function common_session_token()
1344 {
1345     common_ensure_session();
1346     if (!array_key_exists('token', $_SESSION)) {
1347         $_SESSION['token'] = common_good_rand(64);
1348     }
1349     return $_SESSION['token'];
1350 }
1351
1352 function common_cache_key($extra)
1353 {
1354     $base_key = common_config('memcached', 'base');
1355
1356     if (empty($base_key)) {
1357         $base_key = common_keyize(common_config('site', 'name'));
1358     }
1359
1360     return 'laconica:' . $base_key . ':' . $extra;
1361 }
1362
1363 function common_keyize($str)
1364 {
1365     $str = strtolower($str);
1366     $str = preg_replace('/\s/', '_', $str);
1367     return $str;
1368 }
1369
1370 function common_memcache()
1371 {
1372     static $cache = null;
1373     if (!common_config('memcached', 'enabled')) {
1374         return null;
1375     } else {
1376         if (!$cache) {
1377             $cache = new Memcache();
1378             $servers = common_config('memcached', 'server');
1379             if (is_array($servers)) {
1380                 foreach($servers as $server) {
1381                     $cache->addServer($server);
1382                 }
1383             } else {
1384                 $cache->addServer($servers);
1385             }
1386         }
1387         return $cache;
1388     }
1389 }
1390
1391 function common_compatible_license($from, $to)
1392 {
1393     // XXX: better compatibility check needed here!
1394     return ($from == $to);
1395 }
1396
1397 /**
1398  * returns a quoted table name, if required according to config
1399  */
1400 function common_database_tablename($tablename)
1401 {
1402
1403   if(common_config('db','quote_identifiers')) {
1404       $tablename = '"'. $tablename .'"';
1405   }
1406   //table prefixes could be added here later
1407   return $tablename;
1408 }
1409
1410 function common_shorten_url($long_url)
1411 {
1412     $user = common_current_user();
1413     if (empty($user)) {
1414         // common current user does not find a user when called from the XMPP daemon
1415         // therefore we'll set one here fix, so that XMPP given URLs may be shortened
1416         $svc = 'ur1.ca';
1417     } else {
1418         $svc = $user->urlshorteningservice;
1419     }
1420
1421     $curlh = curl_init();
1422     curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait
1423     curl_setopt($curlh, CURLOPT_USERAGENT, 'Laconica');
1424     curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
1425
1426     switch($svc) {
1427      case 'ur1.ca':
1428         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1429         $short_url_service = new LilUrl;
1430         $short_url = $short_url_service->shorten($long_url);
1431         break;
1432
1433      case '2tu.us':
1434         $short_url_service = new TightUrl;
1435         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1436         $short_url = $short_url_service->shorten($long_url);
1437         break;
1438
1439      case 'ptiturl.com':
1440         require_once INSTALLDIR.'/lib/Shorturl_api.php';
1441         $short_url_service = new PtitUrl;
1442         $short_url = $short_url_service->shorten($long_url);
1443         break;
1444
1445      case 'bit.ly':
1446         curl_setopt($curlh, CURLOPT_URL, 'http://bit.ly/api?method=shorten&long_url='.urlencode($long_url));
1447         $short_url = current(json_decode(curl_exec($curlh))->results)->hashUrl;
1448         break;
1449
1450      case 'is.gd':
1451         curl_setopt($curlh, CURLOPT_URL, 'http://is.gd/api.php?longurl='.urlencode($long_url));
1452         $short_url = curl_exec($curlh);
1453         break;
1454      case 'snipr.com':
1455         curl_setopt($curlh, CURLOPT_URL, 'http://snipr.com/site/snip?r=simple&link='.urlencode($long_url));
1456         $short_url = curl_exec($curlh);
1457         break;
1458      case 'metamark.net':
1459         curl_setopt($curlh, CURLOPT_URL, 'http://metamark.net/api/rest/simple?long_url='.urlencode($long_url));
1460         $short_url = curl_exec($curlh);
1461         break;
1462      case 'tinyurl.com':
1463         curl_setopt($curlh, CURLOPT_URL, 'http://tinyurl.com/api-create.php?url='.urlencode($long_url));
1464         $short_url = curl_exec($curlh);
1465         break;
1466      default:
1467         $short_url = false;
1468     }
1469
1470     curl_close($curlh);
1471
1472     return $short_url;
1473 }