]> git.mxchange.org Git - friendica.git/blob - include/text.php
Merge https://github.com/friendica/friendica into pull
[friendica.git] / include / text.php
1 <?php
2
3 // This is our template processor.
4 // $s is the string requiring macro substitution.
5 // $r is an array of key value pairs (search => replace)
6 // returns substituted string.
7 // WARNING: this is pretty basic, and doesn't properly handle search strings that are substrings of each other.
8 // For instance if 'test' => "foo" and 'testing' => "bar", testing could become either bar or fooing, 
9 // depending on the order in which they were declared in the array.   
10
11 require_once("include/template_processor.php");
12
13 if(! function_exists('replace_macros')) {  
14 function replace_macros($s,$r) {
15         global $t;
16         
17         //$ts = microtime();
18         $r =  $t->replace($s,$r);
19         //$tt = microtime() - $ts;
20         
21         //$a = get_app();
22         //$a->page['debug'] .= "$tt <br>\n";
23         return template_unescape($r);
24
25 }}
26
27
28 // random string, there are 86 characters max in text mode, 128 for hex
29 // output is urlsafe
30
31 define('RANDOM_STRING_HEX',  0x00 );
32 define('RANDOM_STRING_TEXT', 0x01 );
33
34 if(! function_exists('random_string')) {
35 function random_string($size = 64,$type = RANDOM_STRING_HEX) {
36         // generate a bit of entropy and run it through the whirlpool
37         $s = hash('whirlpool', (string) rand() . uniqid(rand(),true) . (string) rand(),(($type == RANDOM_STRING_TEXT) ? true : false));
38         $s = (($type == RANDOM_STRING_TEXT) ? str_replace("\n","",base64url_encode($s,true)) : $s);
39         return(substr($s,0,$size));
40 }}
41
42 /**
43  * This is our primary input filter. 
44  *
45  * The high bit hack only involved some old IE browser, forget which (IE5/Mac?)
46  * that had an XSS attack vector due to stripping the high-bit on an 8-bit character
47  * after cleansing, and angle chars with the high bit set could get through as markup.
48  * 
49  * This is now disabled because it was interfering with some legitimate unicode sequences 
50  * and hopefully there aren't a lot of those browsers left. 
51  *
52  * Use this on any text input where angle chars are not valid or permitted
53  * They will be replaced with safer brackets. This may be filtered further
54  * if these are not allowed either.   
55  *
56  */
57
58 if(! function_exists('notags')) {
59 function notags($string) {
60
61         return(str_replace(array("<",">"), array('[',']'), $string));
62
63 //  High-bit filter no longer used
64 //      return(str_replace(array("<",">","\xBA","\xBC","\xBE"), array('[',']','','',''), $string));
65 }}
66
67 // use this on "body" or "content" input where angle chars shouldn't be removed,
68 // and allow them to be safely displayed.
69
70 if(! function_exists('escape_tags')) {
71 function escape_tags($string) {
72
73         return(htmlspecialchars($string, ENT_QUOTES, 'UTF-8', false));
74 }}
75
76
77 // generate a string that's random, but usually pronounceable. 
78 // used to generate initial passwords
79
80 if(! function_exists('autoname')) {
81 function autoname($len) {
82
83         if($len <= 0)
84                 return '';
85
86         $vowels = array('a','a','ai','au','e','e','e','ee','ea','i','ie','o','ou','u'); 
87         if(mt_rand(0,5) == 4)
88                 $vowels[] = 'y';
89
90         $cons = array(
91                         'b','bl','br',
92                         'c','ch','cl','cr',
93                         'd','dr',
94                         'f','fl','fr',
95                         'g','gh','gl','gr',
96                         'h',
97                         'j',
98                         'k','kh','kl','kr',
99                         'l',
100                         'm',
101                         'n',
102                         'p','ph','pl','pr',
103                         'qu',
104                         'r','rh',
105                         's','sc','sh','sm','sp','st',
106                         't','th','tr',
107                         'v',
108                         'w','wh',
109                         'x',
110                         'z','zh'
111                         );
112
113         $midcons = array('ck','ct','gn','ld','lf','lm','lt','mb','mm', 'mn','mp',
114                                 'nd','ng','nk','nt','rn','rp','rt');
115
116         $noend = array('bl', 'br', 'cl','cr','dr','fl','fr','gl','gr',
117                                 'kh', 'kl','kr','mn','pl','pr','rh','tr','qu','wh');
118
119         $start = mt_rand(0,2);
120         if($start == 0)
121                 $table = $vowels;
122         else
123                 $table = $cons;
124
125         $word = '';
126
127         for ($x = 0; $x < $len; $x ++) {
128                 $r = mt_rand(0,count($table) - 1);
129                 $word .= $table[$r];
130   
131                 if($table == $vowels)
132                         $table = array_merge($cons,$midcons);
133                 else
134                         $table = $vowels;
135
136         }
137
138         $word = substr($word,0,$len);
139
140         foreach($noend as $noe) {
141                 if((strlen($word) > 2) && (substr($word,-2) == $noe)) {
142                         $word = substr($word,0,-1);
143                         break;
144                 }
145         }
146         if(substr($word,-1) == 'q')
147                 $word = substr($word,0,-1);    
148         return $word;
149 }}
150
151
152 // escape text ($str) for XML transport
153 // returns escaped text.
154
155 if(! function_exists('xmlify')) {
156 function xmlify($str) {
157         $buffer = '';
158         
159         for($x = 0; $x < mb_strlen($str); $x ++) {
160                 $char = $str[$x];
161         
162                 switch( $char ) {
163
164                         case "\r" :
165                                 break;
166                         case "&" :
167                                 $buffer .= '&amp;';
168                                 break;
169                         case "'" :
170                                 $buffer .= '&apos;';
171                                 break;
172                         case "\"" :
173                                 $buffer .= '&quot;';
174                                 break;
175                         case '<' :
176                                 $buffer .= '&lt;';
177                                 break;
178                         case '>' :
179                                 $buffer .= '&gt;';
180                                 break;
181                         case "\n" :
182                                 $buffer .= "\n";
183                                 break;
184                         default :
185                                 $buffer .= $char;
186                                 break;
187                 }       
188         }
189         $buffer = trim($buffer);
190         return($buffer);
191 }}
192
193 // undo an xmlify
194 // pass xml escaped text ($s), returns unescaped text
195
196 if(! function_exists('unxmlify')) {
197 function unxmlify($s) {
198         $ret = str_replace('&amp;','&', $s);
199         $ret = str_replace(array('&lt;','&gt;','&quot;','&apos;'),array('<','>','"',"'"),$ret);
200         return $ret;    
201 }}
202
203 // convenience wrapper, reverse the operation "bin2hex"
204
205 if(! function_exists('hex2bin')) {
206 function hex2bin($s) {
207         if(! (is_string($s) && strlen($s)))
208                 return '';
209
210         if(! ctype_xdigit($s)) {
211                 return($s);
212         }
213
214         return(pack("H*",$s));
215 }}
216
217 // Automatic pagination.
218 // To use, get the count of total items.
219 // Then call $a->set_pager_total($number_items);
220 // Optionally call $a->set_pager_itemspage($n) to the number of items to display on each page
221 // Then call paginate($a) after the end of the display loop to insert the pager block on the page
222 // (assuming there are enough items to paginate).
223 // When using with SQL, the setting LIMIT %d, %d => $a->pager['start'],$a->pager['itemspage']
224 // will limit the results to the correct items for the current page. 
225 // The actual page handling is then accomplished at the application layer. 
226
227 if(! function_exists('paginate')) {
228 function paginate(&$a) {
229         $o = '';
230         $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
231
232 //      $stripped = preg_replace('/&zrl=(.*?)([\?&]|$)/ism','',$stripped);
233
234         $stripped = str_replace('q=','',$stripped);
235         $stripped = trim($stripped,'/');
236         $pagenum = $a->pager['page'];
237         $url = $a->get_baseurl() . '/' . $stripped;
238
239
240           if($a->pager['total'] > $a->pager['itemspage']) {
241                 $o .= '<div class="pager">';
242                 if($a->pager['page'] != 1)
243                         $o .= '<span class="pager_prev">'."<a href=\"$url".'&page='.($a->pager['page'] - 1).'">' . t('prev') . '</a></span> ';
244
245                 $o .=  "<span class=\"pager_first\"><a href=\"$url"."&page=1\">" . t('first') . "</a></span> ";
246
247                 $numpages = $a->pager['total'] / $a->pager['itemspage'];
248
249                         $numstart = 1;
250                 $numstop = $numpages;
251
252                 if($numpages > 14) {
253                         $numstart = (($pagenum > 7) ? ($pagenum - 7) : 1);
254                         $numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14));
255                 }
256    
257                 for($i = $numstart; $i <= $numstop; $i++){
258                         if($i == $a->pager['page'])
259                                 $o .= '<span class="pager_current">'.(($i < 10) ? '&nbsp;'.$i : $i);
260                         else
261                                 $o .= "<span class=\"pager_n\"><a href=\"$url"."&page=$i\">".(($i < 10) ? '&nbsp;'.$i : $i)."</a>";
262                         $o .= '</span> ';
263                 }
264
265                 if(($a->pager['total'] % $a->pager['itemspage']) != 0) {
266                         if($i == $a->pager['page'])
267                                 $o .= '<span class="pager_current">'.(($i < 10) ? '&nbsp;'.$i : $i);
268                         else
269                                 $o .= "<span class=\"pager_n\"><a href=\"$url"."&page=$i\">".(($i < 10) ? '&nbsp;'.$i : $i)."</a>";
270                         $o .= '</span> ';
271                 }
272
273                 $lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages);
274                 $o .= "<span class=\"pager_last\"><a href=\"$url"."&page=$lastpage\">" . t('last') . "</a></span> ";
275
276                 if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0)
277                         $o .= '<span class="pager_next">'."<a href=\"$url"."&page=".($a->pager['page'] + 1).'">' . t('next') . '</a></span>';
278                 $o .= '</div>'."\r\n";
279         }
280         return $o;
281 }}
282
283 if(! function_exists('alt_pager')) {
284 function alt_pager(&$a, $i) {
285         $o = '';
286         $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
287         $stripped = str_replace('q=','',$stripped);
288         $stripped = trim($stripped,'/');
289         $pagenum = $a->pager['page'];
290         $url = $a->get_baseurl() . '/' . $stripped;
291
292         $o .= '<div class="pager">';
293
294         if($a->pager['page']>1)
295           $o .= "<a href=\"$url"."&page=".($a->pager['page'] - 1).'">' . t('newer') . '</a>';
296         if($i>0) {
297           if($a->pager['page']>1)
298                   $o .= "&nbsp;-&nbsp;";
299           $o .= "<a href=\"$url"."&page=".($a->pager['page'] + 1).'">' . t('older') . '</a>';
300         }
301
302
303         $o .= '</div>'."\r\n";
304
305         return $o;
306 }}
307
308 // Turn user/group ACLs stored as angle bracketed text into arrays
309
310 if(! function_exists('expand_acl')) {
311 function expand_acl($s) {
312         // turn string array of angle-bracketed elements into numeric array
313         // e.g. "<1><2><3>" => array(1,2,3);
314         $ret = array();
315
316         if(strlen($s)) {
317                 $t = str_replace('<','',$s);
318                 $a = explode('>',$t);
319                 foreach($a as $aa) {
320                         if(intval($aa))
321                                 $ret[] = intval($aa);
322                 }
323         }
324         return $ret;
325 }}              
326
327 // Used to wrap ACL elements in angle brackets for storage 
328
329 if(! function_exists('sanitise_acl')) {
330 function sanitise_acl(&$item) {
331         if(intval($item))
332                 $item = '<' . intval(notags(trim($item))) . '>';
333         else
334                 unset($item);
335 }}
336
337
338 // Convert an ACL array to a storable string
339
340 if(! function_exists('perms2str')) {
341 function perms2str($p) {
342         $ret = '';
343         $tmp = $p;
344         if(is_array($tmp)) {
345                 array_walk($tmp,'sanitise_acl');
346                 $ret = implode('',$tmp);
347         }
348         return $ret;
349 }}
350
351 // generate a guaranteed unique (for this domain) item ID for ATOM
352 // safe from birthday paradox
353
354 if(! function_exists('item_new_uri')) {
355 function item_new_uri($hostname,$uid) {
356
357         do {
358                 $dups = false;
359                 $hash = random_string();
360
361                 $uri = "urn:X-dfrn:" . $hostname . ':' . $uid . ':' . $hash;
362
363                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
364                         dbesc($uri));
365                 if(count($r))
366                         $dups = true;
367         } while($dups == true);
368         return $uri;
369 }}
370
371 // Generate a guaranteed unique photo ID.
372 // safe from birthday paradox
373
374 if(! function_exists('photo_new_resource')) {
375 function photo_new_resource() {
376
377         do {
378                 $found = false;
379                 $resource = hash('md5',uniqid(mt_rand(),true));
380                 $r = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' LIMIT 1",
381                         dbesc($resource)
382                 );
383                 if(count($r))
384                         $found = true;
385         } while($found == true);
386         return $resource;
387 }}
388
389
390 // wrapper to load a view template, checking for alternate
391 // languages before falling back to the default
392
393 // obsolete, deprecated.
394
395 if(! function_exists('load_view_file')) {
396 function load_view_file($s) {
397         global $lang, $a;
398         if(! isset($lang))
399                 $lang = 'en';
400         $b = basename($s);
401         $d = dirname($s);
402         if(file_exists("$d/$lang/$b"))
403                 return file_get_contents("$d/$lang/$b");
404         
405         $theme = current_theme();
406
407         if(file_exists("$d/theme/$theme/$b"))
408                 return file_get_contents("$d/theme/$theme/$b");
409                         
410         return file_get_contents($s);
411 }}
412
413 if(! function_exists('get_intltext_template')) {
414 function get_intltext_template($s) {
415         global $lang;
416
417         if(! isset($lang))
418                 $lang = 'en';
419
420         if(file_exists("view/$lang/$s"))
421                 return file_get_contents("view/$lang/$s");
422         elseif(file_exists("view/en/$s"))
423                 return file_get_contents("view/en/$s");
424         else
425                 return file_get_contents("view/$s");
426 }}
427
428 if(! function_exists('get_markup_template')) {
429 function get_markup_template($s) {
430         $a=get_app();
431         $theme = current_theme();
432         
433         if(file_exists("view/theme/$theme/$s"))
434                 return file_get_contents("view/theme/$theme/$s");
435         elseif (x($a->theme_info,"extends") && file_exists("view/theme/".$a->theme_info["extends"]."/$s"))
436                 return file_get_contents("view/theme/".$a->theme_info["extends"]."/$s");
437         else
438                 return file_get_contents("view/$s");
439
440 }}
441
442
443
444
445
446 // for html,xml parsing - let's say you've got
447 // an attribute foobar="class1 class2 class3"
448 // and you want to find out if it contains 'class3'.
449 // you can't use a normal sub string search because you
450 // might match 'notclass3' and a regex to do the job is 
451 // possible but a bit complicated. 
452 // pass the attribute string as $attr and the attribute you 
453 // are looking for as $s - returns true if found, otherwise false
454
455 if(! function_exists('attribute_contains')) {
456 function attribute_contains($attr,$s) {
457         $a = explode(' ', $attr);
458         if(count($a) && in_array($s,$a))
459                 return true;
460         return false;
461 }}
462
463 if(! function_exists('logger')) {
464 function logger($msg,$level = 0) {
465         // turn off logger in install mode
466         global $a;
467         global $db;
468
469         if(($a->module == 'install') || (! ($db && $db->connected))) return;
470
471         $debugging = get_config('system','debugging');
472         $loglevel  = intval(get_config('system','loglevel'));
473         $logfile   = get_config('system','logfile');
474
475         if((! $debugging) || (! $logfile) || ($level > $loglevel))
476                 return;
477         
478         @file_put_contents($logfile, datetime_convert() . ':' . session_id() . ' ' . $msg . "\n", FILE_APPEND);
479         return;
480 }}
481
482
483 if(! function_exists('activity_match')) {
484 function activity_match($haystack,$needle) {
485         if(($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle,NAMESPACE_ACTIVITY_SCHEMA)))
486                 return true;
487         return false;
488 }}
489
490
491 // Pull out all #hashtags and @person tags from $s;
492 // We also get @person@domain.com - which would make 
493 // the regex quite complicated as tags can also
494 // end a sentence. So we'll run through our results
495 // and strip the period from any tags which end with one.
496 // Returns array of tags found, or empty array.
497
498
499 if(! function_exists('get_tags')) {
500 function get_tags($s) {
501         $ret = array();
502
503         // ignore anything in a code block
504
505         $s = preg_replace('/\[code\](.*?)\[\/code\]/sm','',$s);
506
507         // ignore anything in a bbtag
508
509         $s = preg_replace('/\[(.*?)\]/sm','',$s);
510
511         // Match full names against @tags including the space between first and last
512         // We will look these up afterward to see if they are full names or not recognisable.
513
514         if(preg_match_all('/(@[^ \x0D\x0A,:?]+ [^ \x0D\x0A@,:?]+)([ \x0D\x0A@,:?]|$)/',$s,$match)) {
515                 foreach($match[1] as $mtch) {
516                         if(strstr($mtch,"]")) {
517                                 // we might be inside a bbcode color tag - leave it alone
518                                 continue;
519                         }
520                         if(substr($mtch,-1,1) === '.')
521                                 $ret[] = substr($mtch,0,-1);
522                         else
523                                 $ret[] = $mtch;
524                 }
525         }
526
527         // Otherwise pull out single word tags. These can be @nickname, @first_last
528         // and #hash tags.
529
530         if(preg_match_all('/([@#][^ \x0D\x0A,;:?]+)([ \x0D\x0A,;:?]|$)/',$s,$match)) {
531                 foreach($match[1] as $mtch) {
532                         if(strstr($mtch,"]")) {
533                                 // we might be inside a bbcode color tag - leave it alone
534                                 continue;
535                         }
536                         if(substr($mtch,-1,1) === '.')
537                                 $mtch = substr($mtch,0,-1);
538                         // ignore strictly numeric tags like #1
539                         if((strpos($mtch,'#') === 0) && ctype_digit(substr($mtch,1)))
540                                 continue;
541                         // try not to catch url fragments
542                         if(strpos($s,$mtch) && preg_match('/[a-zA-z0-9\/]/',substr($s,strpos($s,$mtch)-1,1)))
543                                 continue;
544                         $ret[] = $mtch;
545                 }
546         }
547         return $ret;
548 }}
549
550
551 // quick and dirty quoted_printable encoding
552
553 if(! function_exists('qp')) {
554 function qp($s) {
555 return str_replace ("%","=",rawurlencode($s));
556 }} 
557
558
559
560 if(! function_exists('get_mentions')) {
561 function get_mentions($item) {
562         $o = '';
563         if(! strlen($item['tag']))
564                 return $o;
565
566         $arr = explode(',',$item['tag']);
567         foreach($arr as $x) {
568                 $matches = null;
569                 if(preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) {
570                         $o .= "\t\t" . '<link rel="mentioned" href="' . $matches[1] . '" />' . "\r\n";
571                         $o .= "\t\t" . '<link rel="ostatus:attention" href="' . $matches[1] . '" />' . "\r\n";
572                 }
573         }
574         return $o;
575 }}
576
577 if(! function_exists('contact_block')) {
578 function contact_block() {
579         $o = '';
580         $a = get_app();
581
582         $shown = get_pconfig($a->profile['uid'],'system','display_friend_count');
583         if($shown === false)
584                 $shown = 24;
585         if($shown == 0)
586                 return;
587
588         if((! is_array($a->profile)) || ($a->profile['hide-friends']))
589                 return $o;
590         $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0",
591                         intval($a->profile['uid'])
592         );
593         if(count($r)) {
594                 $total = intval($r[0]['total']);
595         }
596         if(! $total) {
597                 $contacts = t('No contacts');
598                 $micropro = Null;
599                 
600         } else {
601                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ORDER BY RAND() LIMIT %d",
602                                 intval($a->profile['uid']),
603                                 intval($shown)
604                 );
605                 if(count($r)) {
606                         $contacts = sprintf( tt('%d Contact','%d Contacts', $total),$total);
607                         $micropro = Array();
608                         foreach($r as $rr) {
609                                 $micropro[] = micropro($rr,true,'mpfriend');
610                         }
611                 }
612         }
613         
614         $tpl = get_markup_template('contact_block.tpl');
615         $o = replace_macros($tpl, array(
616                 '$contacts' => $contacts,
617                 '$nickname' => $a->profile['nickname'],
618                 '$viewcontacts' => t('View Contacts'),
619                 '$micropro' => $micropro,
620         ));
621
622         $arr = array('contacts' => $r, 'output' => $o);
623
624         call_hooks('contact_block_end', $arr);
625         return $o;
626
627 }}
628
629 if(! function_exists('micropro')) {
630 function micropro($contact, $redirect = false, $class = '', $textmode = false) {
631
632         if($class)
633                 $class = ' ' . $class;
634
635         $url = $contact['url'];
636         $sparkle = '';
637         $redir = false;
638
639         if($redirect) {
640                 $a = get_app();
641                 $redirect_url = $a->get_baseurl() . '/redir/' . $contact['id'];
642                 if(local_user() && ($contact['uid'] == local_user()) && ($contact['network'] === 'dfrn')) {
643                         $redir = true;
644                         $url = $redirect_url;
645                         $sparkle = ' sparkle';
646                 }
647                 else
648                         $url = zrl($url);
649         }
650         $click = ((x($contact,'click')) ? ' onclick="' . $contact['click'] . '" ' : '');
651         if($click)
652                 $url = '';
653         if($textmode) {
654                 return '<div class="contact-block-textdiv' . $class . '"><a class="contact-block-link' . $class . $sparkle 
655                         . (($click) ? ' fakelink' : '') . '" '
656                         . (($redir) ? ' target="redir" ' : '')
657                         . (($url) ? ' href="' . $url . '"' : '') . $click
658                         . '" title="' . $contact['name'] . ' [' . $contact['url'] . ']" alt="' . $contact['name'] 
659                         . '" >'. $contact['name'] . '</a></div>' . "\r\n";
660         }
661         else {
662                 return '<div class="contact-block-div' . $class . '"><a class="contact-block-link' . $class . $sparkle 
663                         . (($click) ? ' fakelink' : '') . '" '
664                         . (($redir) ? ' target="redir" ' : '')
665                         . (($url) ? ' href="' . $url . '"' : '') . $click . ' ><img class="contact-block-img' . $class . $sparkle . '" src="' 
666                         . $contact['micro'] . '" title="' . $contact['name'] . ' [' . $contact['url'] . ']" alt="' . $contact['name'] 
667                         . '" /></a></div>' . "\r\n";
668         }
669 }}
670
671
672
673 if(! function_exists('search')) {
674 function search($s,$id='search-box',$url='/search',$save = false) {
675         $a = get_app();
676         $o  = '<div id="' . $id . '">';
677         $o .= '<form action="' . $a->get_baseurl((stristr($url,'network')) ? true : false) . $url . '" method="get" >';
678         $o .= '<input type="text" name="search" id="search-text" placeholder="' . t('Search') . '" value="' . $s .'" />';
679         $o .= '<input type="submit" name="submit" id="search-submit" value="' . t('Search') . '" />'; 
680         if($save)
681                 $o .= '<input type="submit" name="save" id="search-save" value="' . t('Save') . '" />'; 
682         $o .= '</form></div>';
683         return $o;
684 }}
685
686 if(! function_exists('valid_email')) {
687 function valid_email($x){
688
689         if(get_config('system','disable_email_validation'))
690                 return true;
691
692         if(preg_match('/^[_a-zA-Z0-9\-\+]+(\.[_a-zA-Z0-9\-\+]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)+$/',$x))
693                 return true;
694         return false;
695 }}
696
697
698 /**
699  *
700  * Function: linkify
701  *
702  * Replace naked text hyperlink with HTML formatted hyperlink
703  *
704  */
705
706 if(! function_exists('linkify')) {
707 function linkify($s) {
708         $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\'\%\$\!\+]*)/", ' <a href="$1" target="external-link">$1</a>', $s);
709         $s = preg_replace("/\<(.*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$s);
710         return($s);
711 }}
712
713 function get_poke_verbs() {
714         
715         // index is present tense verb
716         // value is array containing past tense verb, translation of present, translation of past
717
718         $arr = array(
719                 'poke' => array( 'poked', t('poke'), t('poked')),
720                 'ping' => array( 'pinged', t('ping'), t('pinged')),
721                 'prod' => array( 'prodded', t('prod'), t('prodded')),
722                 'slap' => array( 'slapped', t('slap'), t('slapped')),
723                 'finger' => array( 'fingered', t('finger'), t('fingered')),
724                 'rebuff' => array( 'rebuffed', t('rebuff'), t('rebuffed')),
725         );
726         call_hooks('poke_verbs', $arr);
727         return $arr;
728 }
729
730 /**
731  * 
732  * Function: smilies
733  *
734  * Description:
735  * Replaces text emoticons with graphical images
736  *
737  * @Parameter: string $s
738  *
739  * Returns string
740  *
741  * It is expected that this function will be called using HTML text.
742  * We will escape text between HTML pre and code blocks from being 
743  * processed. 
744  * 
745  * At a higher level, the bbcode [nosmile] tag can be used to prevent this 
746  * function from being executed by the prepare_text() routine when preparing
747  * bbcode source for HTML display
748  *
749  */
750
751 if(! function_exists('smilies')) {
752 function smilies($s, $sample = false) {
753
754         $a = get_app();
755
756         if(intval(get_config('system','no_smilies')) 
757                 || (local_user() && intval(get_pconfig(local_user(),'system','no_smilies'))))
758                 return $s;
759
760         $s = preg_replace_callback('/<pre>(.*?)<\/pre>/ism','smile_encode',$s);
761         $s = preg_replace_callback('/<code>(.*?)<\/code>/ism','smile_encode',$s);
762
763         $texts =  array( 
764                 '&lt;3', 
765                 '&lt;/3', 
766                 '&lt;\\3', 
767                 ':-)', 
768                 ';-)', 
769                 ':-(', 
770                 ':-P', 
771                 ':-p', 
772                 ':-"', 
773                 ':-&quot;', 
774                 ':-x', 
775                 ':-X', 
776                 ':-D', 
777                 '8-|', 
778                 '8-O', 
779                 ':-O', 
780                 '\\o/', 
781                 'o.O', 
782                 'O.o', 
783                 'o_O', 
784                 'O_o', 
785                 ":'(", 
786                 ":-!", 
787                 ":-/", 
788                 ":-[", 
789                 "8-)",
790                 ':beer', 
791                 ':homebrew', 
792                 ':coffee', 
793                 ':facepalm',
794                 ':like',
795                 ':dislike',
796                 '~friendika', 
797                 '~friendica'
798
799         );
800
801         $icons = array(
802                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-heart.gif" alt="<3" />',
803                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-brokenheart.gif" alt="</3" />',
804                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-brokenheart.gif" alt="<\\3" />',
805                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-smile.gif" alt=":-)" />',
806                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-wink.gif" alt=";-)" />',
807                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-frown.gif" alt=":-(" />',
808                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-tongue-out.gif" alt=":-P" />',
809                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-tongue-out.gif" alt=":-p" />',
810                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-\"" />',
811                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-\"" />',
812                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-x" />',
813                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-kiss.gif" alt=":-X" />',
814                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-laughing.gif" alt=":-D" />',
815                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-surprised.gif" alt="8-|" />',
816                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-surprised.gif" alt="8-O" />',
817                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-surprised.gif" alt=":-O" />',                
818                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-thumbsup.gif" alt="\\o/" />',
819                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-Oo.gif" alt="o.O" />',
820                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-Oo.gif" alt="O.o" />',
821                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-Oo.gif" alt="o_O" />',
822                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-Oo.gif" alt="O_o" />',
823                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-cry.gif" alt=":\'(" />',
824                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-foot-in-mouth.gif" alt=":-!" />',
825                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-undecided.gif" alt=":-/" />',
826                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-embarassed.gif" alt=":-[" />',
827                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-cool.gif" alt="8-)" />',
828                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/beer_mug.gif" alt=":beer" />',
829                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/beer_mug.gif" alt=":homebrew" />',
830                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/coffee.gif" alt=":coffee" />',
831                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-facepalm.gif" alt=":facepalm" />',
832                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/like.gif" alt=":like" />',
833                 '<img class="smiley" src="' . $a->get_baseurl() . '/images/dislike.gif" alt=":dislike" />',
834                 '<a href="http://project.friendika.com">~friendika <img class="smiley" src="' . $a->get_baseurl() . '/images/friendika-16.png" alt="~friendika" /></a>',
835                 '<a href="http://friendica.com">~friendica <img class="smiley" src="' . $a->get_baseurl() . '/images/friendica-16.png" alt="~friendica" /></a>'
836         );
837
838         $params = array('texts' => $texts, 'icons' => $icons, 'string' => $s);
839         call_hooks('smilie', $params);
840
841         if($sample) {
842                 $s = '<div class="smiley-sample">';
843                 for($x = 0; $x < count($params['texts']); $x ++) {
844                         $s .= '<dl><dt>' . $params['texts'][$x] . '</dt><dd>' . $params['icons'][$x] . '</dd></dl>';
845                 }
846         }
847         else {
848                 $params['string'] = preg_replace_callback('/&lt;(3+)/','preg_heart',$params['string']);
849                 $s = str_replace($params['texts'],$params['icons'],$params['string']);
850         }
851
852         $s = preg_replace_callback('/<pre>(.*?)<\/pre>/ism','smile_decode',$s);
853         $s = preg_replace_callback('/<code>(.*?)<\/code>/ism','smile_decode',$s);
854
855         return $s;
856
857 }}
858
859 function smile_encode($m) {
860         return(str_replace($m[1],base64url_encode($m[1]),$m[0]));
861 }
862
863 function smile_decode($m) {
864         return(str_replace($m[1],base64url_decode($m[1]),$m[0]));
865 }
866
867 // expand <3333 to the correct number of hearts
868
869 function preg_heart($x) {
870         $a = get_app();
871         if(strlen($x[1]) == 1)
872                 return $x[0];
873         $t = '';
874         for($cnt = 0; $cnt < strlen($x[1]); $cnt ++)
875                 $t .= '<img class="smiley" src="' . $a->get_baseurl() . '/images/smiley-heart.gif" alt="<3" />';
876         $r =  str_replace($x[0],$t,$x[0]);
877         return $r;
878 }
879
880
881 if(! function_exists('day_translate')) {
882 function day_translate($s) {
883         $ret = str_replace(array('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'),
884                 array( t('Monday'), t('Tuesday'), t('Wednesday'), t('Thursday'), t('Friday'), t('Saturday'), t('Sunday')),
885                 $s);
886
887         $ret = str_replace(array('January','February','March','April','May','June','July','August','September','October','November','December'),
888                 array( t('January'), t('February'), t('March'), t('April'), t('May'), t('June'), t('July'), t('August'), t('September'), t('October'), t('November'), t('December')),
889                 $ret);
890
891         return $ret;
892 }}
893
894
895 if(! function_exists('normalise_link')) {
896 function normalise_link($url) {
897         $ret = str_replace(array('https:','//www.'), array('http:','//'), $url);
898         return(rtrim($ret,'/'));
899 }}
900
901 /**
902  *
903  * Compare two URLs to see if they are the same, but ignore
904  * slight but hopefully insignificant differences such as if one 
905  * is https and the other isn't, or if one is www.something and 
906  * the other isn't - and also ignore case differences.
907  *
908  * Return true if the URLs match, otherwise false.
909  *
910  */
911
912 if(! function_exists('link_compare')) {
913 function link_compare($a,$b) {
914         if(strcasecmp(normalise_link($a),normalise_link($b)) === 0)
915                 return true;
916         return false;
917 }}
918
919 // Given an item array, convert the body element from bbcode to html and add smilie icons.
920 // If attach is true, also add icons for item attachments
921
922
923 if(! function_exists('prepare_body')) {
924 function prepare_body($item,$attach = false) {
925
926         $a = get_app();
927         call_hooks('prepare_body_init', $item); 
928
929         $cache = get_config('system','itemcache');
930
931         if (($cache != '')) {
932                 $cachefile = $cache."/".$item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body']);
933
934                 if (file_exists($cachefile))
935                         $s = file_get_contents($cachefile);
936                 else {
937                         $s = prepare_text($item['body']);
938                         file_put_contents($cachefile, $s);
939                 }
940         } else
941                 $s = prepare_text($item['body']);
942
943
944         $prep_arr = array('item' => $item, 'html' => $s);
945         call_hooks('prepare_body', $prep_arr);
946         $s = $prep_arr['html'];
947
948         if(! $attach) {
949                 return $s;
950         }
951
952         $arr = explode(',',$item['attach']);
953         if(count($arr)) {
954                 $s .= '<div class="body-attach">';
955                 foreach($arr as $r) {
956                         $matches = false;
957                         $icon = '';
958                         $cnt = preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches, PREG_SET_ORDER);
959                         if($cnt) {
960                                 foreach($matches as $mtch) {
961                                         $icontype = strtolower(substr($mtch[3],0,strpos($mtch[3],'/')));
962                                         switch($icontype) {
963                                                 case 'video':
964                                                 case 'audio':
965                                                 case 'image':
966                                                 case 'text':
967                                                         $icon = '<div class="attachtype icon s22 type-' . $icontype . '"></div>';
968                                                         break;
969                                                 default:
970                                                         $icon = '<div class="attachtype icon s22 type-unkn"></div>';
971                                                         break;
972                                         }
973                                         $title = ((strlen(trim($mtch[4]))) ? escape_tags(trim($mtch[4])) : escape_tags($mtch[1]));
974                                         $title .= ' ' . $mtch[2] . ' ' . t('bytes');
975                                         if((local_user() == $item['uid']) && $item['contact-id'] != $a->contact['id'])
976                                                 $the_url = $a->get_baseurl() . '/redir/' . $item['contact-id'] . '?f=1&url=' . $mtch[1];
977                                         else
978                                                 $the_url = $mtch[1];
979
980                                         $s .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="external-link" >' . $icon . '</a>';
981                                 }
982                         }
983                 }
984                 $s .= '<div class="clear"></div></div>';
985         }
986         $matches = false;
987         $cnt = preg_match_all('/<(.*?)>/',$item['file'],$matches,PREG_SET_ORDER);
988         if($cnt) {
989 //              logger('prepare_text: categories: ' . print_r($matches,true), LOGGER_DEBUG);
990                 foreach($matches as $mtch) {
991                         if(strlen($x))
992                                 $x .= ',';
993                         $x .= xmlify(file_tag_decode($mtch[1])) 
994                                 . ((local_user() == $item['uid']) ? ' <a href="' . $a->get_baseurl() . '/filerm/' . $item['id'] . '?f=&cat=' . xmlify(file_tag_decode($mtch[1])) . '" title="' . t('remove') . '" >' . t('[remove]') . '</a>' : '');
995                 }
996                 if(strlen($x))
997                         $s .= '<div class="categorytags"><span>' . t('Categories:') . ' </span>' . $x . '</div>'; 
998
999
1000         }
1001         $matches = false;
1002         $x = '';
1003         $cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER);
1004         if($cnt) {
1005 //              logger('prepare_text: filed_under: ' . print_r($matches,true), LOGGER_DEBUG);
1006                 foreach($matches as $mtch) {
1007                         if(strlen($x))
1008                                 $x .= '&nbsp;&nbsp;&nbsp;';
1009                         $x .= xmlify(file_tag_decode($mtch[1])) . ' <a href="' . $a->get_baseurl() . '/filerm/' . $item['id'] . '?f=&term=' . xmlify(file_tag_decode($mtch[1])) . '" title="' . t('remove') . '" >' . t('[remove]') . '</a>';
1010                 }
1011                 if(strlen($x) && (local_user() == $item['uid']))
1012                         $s .= '<div class="filesavetags"><span>' . t('Filed under:') . ' </span>' . $x . '</div>'; 
1013         }
1014
1015         // Look for spoiler
1016         $spoilersearch = '<blockquote class="spoiler">';
1017
1018         // Remove line breaks before the spoiler
1019         while ((strpos($s, "\n".$spoilersearch) !== false))
1020                 $s = str_replace("\n".$spoilersearch, $spoilersearch, $s);
1021         while ((strpos($s, "<br />".$spoilersearch) !== false))
1022                 $s = str_replace("<br />".$spoilersearch, $spoilersearch, $s);
1023
1024         while ((strpos($s, $spoilersearch) !== false)) {
1025
1026                 $pos = strpos($s, $spoilersearch);
1027                 $rnd = random_string(8);
1028                 $spoilerreplace = '<br /> <span id="spoiler-wrap-'.$rnd.'" style="white-space:nowrap;" class="fakelink" onclick="openClose(\'spoiler-'.$rnd.'\');">'.sprintf(t('Click to open/close')).'</span>'.
1029                                         '<blockquote class="spoiler" id="spoiler-'.$rnd.'" style="display: none;">';
1030                 $s = substr($s, 0, $pos).$spoilerreplace.substr($s, $pos+strlen($spoilersearch));
1031         }
1032
1033         // Look for quote with author
1034         $authorsearch = '<blockquote class="author">';
1035
1036         while ((strpos($s, $authorsearch) !== false)) {
1037
1038                 $pos = strpos($s, $authorsearch);
1039                 $rnd = random_string(8);
1040                 $authorreplace = '<br /> <span id="author-wrap-'.$rnd.'" style="white-space:nowrap;" class="fakelink" onclick="openClose(\'author-'.$rnd.'\');">'.sprintf(t('Click to open/close')).'</span>'.
1041                                         '<blockquote class="author" id="author-'.$rnd.'" style="display: block;">';
1042                 $s = substr($s, 0, $pos).$authorreplace.substr($s, $pos+strlen($authorsearch));
1043         }
1044
1045         $prep_arr = array('item' => $item, 'html' => $s);
1046         call_hooks('prepare_body_final', $prep_arr);
1047
1048         return $prep_arr['html'];
1049 }}
1050
1051
1052 // Given a text string, convert from bbcode to html and add smilie icons.
1053
1054 if(! function_exists('prepare_text')) {
1055 function prepare_text($text) {
1056
1057         require_once('include/bbcode.php');
1058
1059         if(stristr($text,'[nosmile]'))
1060                 $s = bbcode($text);
1061         else
1062                 $s = smilies(bbcode($text));
1063
1064         return $s;
1065 }}
1066
1067
1068 /**
1069  * return atom link elements for all of our hubs
1070  */
1071
1072 if(! function_exists('feed_hublinks')) {
1073 function feed_hublinks() {
1074
1075         $hub = get_config('system','huburl');
1076
1077         $hubxml = '';
1078         if(strlen($hub)) {
1079                 $hubs = explode(',', $hub);
1080                 if(count($hubs)) {
1081                         foreach($hubs as $h) {
1082                                 $h = trim($h);
1083                                 if(! strlen($h))
1084                                         continue;
1085                                 $hubxml .= '<link rel="hub" href="' . xmlify($h) . '" />' . "\n" ;
1086                         }
1087                 }
1088         }
1089         return $hubxml;
1090 }}
1091
1092 /* return atom link elements for salmon endpoints */
1093
1094 if(! function_exists('feed_salmonlinks')) {
1095 function feed_salmonlinks($nick) {
1096
1097         $a = get_app();
1098
1099         $salmon  = '<link rel="salmon" href="' . xmlify($a->get_baseurl() . '/salmon/' . $nick) . '" />' . "\n" ;
1100
1101         // old style links that status.net still needed as of 12/2010 
1102
1103         $salmon .= '  <link rel="http://salmon-protocol.org/ns/salmon-replies" href="' . xmlify($a->get_baseurl() . '/salmon/' . $nick) . '" />' . "\n" ; 
1104         $salmon .= '  <link rel="http://salmon-protocol.org/ns/salmon-mention" href="' . xmlify($a->get_baseurl() . '/salmon/' . $nick) . '" />' . "\n" ; 
1105         return $salmon;
1106 }}
1107
1108 if(! function_exists('get_plink')) {
1109 function get_plink($item) {
1110         $a = get_app(); 
1111         if (x($item,'plink') && ($item['private'] != 1)) {
1112                 return array(
1113                         'href' => $item['plink'],
1114                         'title' => t('link to source'),
1115                 );
1116         } 
1117         else {
1118                 return false;
1119         }
1120 }}
1121
1122 if(! function_exists('unamp')) {
1123 function unamp($s) {
1124         return str_replace('&amp;', '&', $s);
1125 }}
1126
1127
1128
1129
1130 if(! function_exists('lang_selector')) {
1131 function lang_selector() {
1132         global $lang;
1133         
1134         $langs = glob('view/*/strings.php');
1135         
1136         $lang_options = array();
1137         $selected = "";
1138         
1139         if(is_array($langs) && count($langs)) {
1140                 $langs[] = '';
1141                 if(! in_array('view/en/strings.php',$langs))
1142                         $langs[] = 'view/en/';
1143                 asort($langs);
1144                 foreach($langs as $l) {
1145                         if($l == '') {
1146                                 $lang_options[""] = t('default');
1147                                 continue;
1148                         }
1149                         $ll = substr($l,5);
1150                         $ll = substr($ll,0,strrpos($ll,'/'));
1151                         $selected = (($ll === $lang && (x($_SESSION, 'language'))) ? $ll : $selected);
1152                         $lang_options[$ll]=$ll;
1153                 }
1154         }
1155
1156         $tpl = get_markup_template("lang_selector.tpl");        
1157         $o = replace_macros($tpl, array(
1158                 '$title' => t('Select an alternate language'),
1159                 '$langs' => array($lang_options, $selected),
1160                 
1161         ));
1162         return $o;
1163 }}
1164
1165
1166 if(! function_exists('return_bytes')) {
1167 function return_bytes ($size_str) {
1168     switch (substr ($size_str, -1))
1169     {
1170         case 'M': case 'm': return (int)$size_str * 1048576;
1171         case 'K': case 'k': return (int)$size_str * 1024;
1172         case 'G': case 'g': return (int)$size_str * 1073741824;
1173         default: return $size_str;
1174     }
1175 }}
1176
1177 function generate_user_guid() {
1178         $found = true;
1179         do {
1180                 $guid = random_string(16);
1181                 $x = q("SELECT `uid` FROM `user` WHERE `guid` = '%s' LIMIT 1",
1182                         dbesc($guid)
1183                 );
1184                 if(! count($x))
1185                         $found = false;
1186         } while ($found == true );
1187         return $guid;
1188 }
1189
1190
1191
1192 function base64url_encode($s, $strip_padding = false) {
1193
1194         $s = strtr(base64_encode($s),'+/','-_');
1195
1196         if($strip_padding)
1197                 $s = str_replace('=','',$s);
1198
1199         return $s;
1200 }
1201
1202 function base64url_decode($s) {
1203
1204         if(is_array($s)) {
1205                 logger('base64url_decode: illegal input: ' . print_r(debug_backtrace(), true));
1206                 return $s;
1207         }
1208
1209 /*
1210  *  // Placeholder for new rev of salmon which strips base64 padding.
1211  *  // PHP base64_decode handles the un-padded input without requiring this step
1212  *  // Uncomment if you find you need it.
1213  *
1214  *      $l = strlen($s);
1215  *      if(! strpos($s,'=')) {
1216  *              $m = $l % 4;
1217  *              if($m == 2)
1218  *                      $s .= '==';
1219  *              if($m == 3)
1220  *                      $s .= '=';
1221  *      }
1222  *
1223  */
1224
1225         return base64_decode(strtr($s,'-_','+/'));
1226 }
1227
1228
1229 if (!function_exists('str_getcsv')) {
1230     function str_getcsv($input, $delimiter = ',', $enclosure = '"', $escape = '\\', $eol = '\n') {
1231         if (is_string($input) && !empty($input)) {
1232             $output = array();
1233             $tmp    = preg_split("/".$eol."/",$input);
1234             if (is_array($tmp) && !empty($tmp)) {
1235                 while (list($line_num, $line) = each($tmp)) {
1236                     if (preg_match("/".$escape.$enclosure."/",$line)) {
1237                         while ($strlen = strlen($line)) {
1238                             $pos_delimiter       = strpos($line,$delimiter);
1239                             $pos_enclosure_start = strpos($line,$enclosure);
1240                             if (
1241                                 is_int($pos_delimiter) && is_int($pos_enclosure_start)
1242                                 && ($pos_enclosure_start < $pos_delimiter)
1243                                 ) {
1244                                 $enclosed_str = substr($line,1);
1245                                 $pos_enclosure_end = strpos($enclosed_str,$enclosure);
1246                                 $enclosed_str = substr($enclosed_str,0,$pos_enclosure_end);
1247                                 $output[$line_num][] = $enclosed_str;
1248                                 $offset = $pos_enclosure_end+3;
1249                             } else {
1250                                 if (empty($pos_delimiter) && empty($pos_enclosure_start)) {
1251                                     $output[$line_num][] = substr($line,0);
1252                                     $offset = strlen($line);
1253                                 } else {
1254                                     $output[$line_num][] = substr($line,0,$pos_delimiter);
1255                                     $offset = (
1256                                                 !empty($pos_enclosure_start)
1257                                                 && ($pos_enclosure_start < $pos_delimiter)
1258                                                 )
1259                                                 ?$pos_enclosure_start
1260                                                 :$pos_delimiter+1;
1261                                 }
1262                             }
1263                             $line = substr($line,$offset);
1264                         }
1265                     } else {
1266                         $line = preg_split("/".$delimiter."/",$line);
1267    
1268                         /*
1269                          * Validating against pesky extra line breaks creating false rows.
1270                          */
1271                         if (is_array($line) && !empty($line[0])) {
1272                             $output[$line_num] = $line;
1273                         } 
1274                     }
1275                 }
1276                 return $output;
1277             } else {
1278                 return false;
1279             }
1280         } else {
1281             return false;
1282         }
1283     }
1284
1285
1286 function cleardiv() {
1287         return '<div class="clear"></div>';
1288 }
1289
1290
1291 function bb_translate_video($s) {
1292
1293         $matches = null;
1294         $r = preg_match_all("/\[video\](.*?)\[\/video\]/ism",$s,$matches,PREG_SET_ORDER);
1295         if($r) {
1296                 foreach($matches as $mtch) {
1297                         if((stristr($mtch[1],'youtube')) || (stristr($mtch[1],'youtu.be')))
1298                                 $s = str_replace($mtch[0],'[youtube]' . $mtch[1] . '[/youtube]',$s);
1299                         elseif(stristr($mtch[1],'vimeo'))
1300                                 $s = str_replace($mtch[0],'[vimeo]' . $mtch[1] . '[/vimeo]',$s);
1301                 }
1302         }
1303         return $s;      
1304 }
1305
1306 function html2bb_video($s) {
1307
1308         $s = preg_replace('#<object[^>]+>(.*?)https?://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+)(.*?)</object>#ism',
1309                         '[youtube]$2[/youtube]', $s);
1310
1311         $s = preg_replace('#<iframe[^>](.*?)https?://www.youtube.com/embed/([A-Za-z0-9\-_=]+)(.*?)</iframe>#ism',
1312                         '[youtube]$2[/youtube]', $s);
1313
1314         $s = preg_replace('#<iframe[^>](.*?)https?://player.vimeo.com/video/([0-9]+)(.*?)</iframe>#ism',
1315                         '[vimeo]$2[/vimeo]', $s);
1316
1317         return $s;
1318 }
1319
1320 /**
1321  * apply xmlify() to all values of array $val, recursively
1322  */
1323 function array_xmlify($val){
1324         if (is_bool($val)) return $val?"true":"false";
1325         if (is_array($val)) return array_map('array_xmlify', $val);
1326         return xmlify((string) $val);
1327 }
1328
1329
1330 function reltoabs($text, $base)
1331 {
1332   if (empty($base))
1333     return $text;
1334
1335   $base = rtrim($base,'/');
1336
1337   $base2 = $base . "/";
1338         
1339   // Replace links
1340   $pattern = "/<a([^>]*) href=\"(?!http|https|\/)([^\"]*)\"/";
1341   $replace = "<a\${1} href=\"" . $base2 . "\${2}\"";
1342   $text = preg_replace($pattern, $replace, $text);
1343
1344   $pattern = "/<a([^>]*) href=\"(?!http|https)([^\"]*)\"/";
1345   $replace = "<a\${1} href=\"" . $base . "\${2}\"";
1346   $text = preg_replace($pattern, $replace, $text);
1347
1348   // Replace images
1349   $pattern = "/<img([^>]*) src=\"(?!http|https|\/)([^\"]*)\"/";
1350   $replace = "<img\${1} src=\"" . $base2 . "\${2}\"";
1351   $text = preg_replace($pattern, $replace, $text); 
1352
1353   $pattern = "/<img([^>]*) src=\"(?!http|https)([^\"]*)\"/";
1354   $replace = "<img\${1} src=\"" . $base . "\${2}\"";
1355   $text = preg_replace($pattern, $replace, $text); 
1356
1357
1358   // Done
1359   return $text;
1360 }
1361
1362 function item_post_type($item) {
1363         if(intval($item['event-id']))
1364                 return t('event');
1365         if(strlen($item['resource-id']))
1366                 return t('photo');
1367         if(strlen($item['verb']) && $item['verb'] !== ACTIVITY_POST)
1368                 return t('activity');
1369         if($item['id'] != $item['parent'])
1370                 return t('comment');
1371         return t('post');
1372 }
1373
1374 // post categories and "save to file" use the same item.file table for storage.
1375 // We will differentiate the different uses by wrapping categories in angle brackets
1376 // and save to file categories in square brackets.
1377 // To do this we need to escape these characters if they appear in our tag. 
1378
1379 function file_tag_encode($s) {
1380         return str_replace(array('<','>','[',']'),array('%3c','%3e','%5b','%5d'),$s);
1381 }
1382
1383 function file_tag_decode($s) {
1384         return str_replace(array('%3c','%3e','%5b','%5d'),array('<','>','[',']'),$s);
1385 }
1386
1387 function file_tag_file_query($table,$s,$type = 'file') {
1388
1389         if($type == 'file')
1390                 $str = preg_quote( '[' . str_replace('%','%%',file_tag_encode($s)) . ']' );
1391         else
1392                 $str = preg_quote( '<' . str_replace('%','%%',file_tag_encode($s)) . '>' );
1393         return " AND " . (($table) ? dbesc($table) . '.' : '') . "file regexp '" . dbesc($str) . "' ";
1394 }
1395
1396 // ex. given music,video return <music><video> or [music][video]
1397 function file_tag_list_to_file($list,$type = 'file') {
1398         $tag_list = '';
1399         if(strlen($list)) {
1400                 $list_array = explode(",",$list);
1401                 if($type == 'file') {
1402                         $lbracket = '[';
1403                         $rbracket = ']';
1404                 }
1405                 else {
1406                         $lbracket = '<';
1407                         $rbracket = '>';
1408                 }
1409
1410                 foreach($list_array as $item) {
1411                   if(strlen($item)) {
1412                                 $tag_list .= $lbracket . file_tag_encode(trim($item))  . $rbracket;
1413                         }
1414                 }
1415         }
1416         return $tag_list;
1417 }
1418
1419 // ex. given <music><video>[friends], return music,video or friends
1420 function file_tag_file_to_list($file,$type = 'file') {
1421         $matches = false;
1422         $list = '';
1423         if($type == 'file') {
1424                 $cnt = preg_match_all('/\[(.*?)\]/',$file,$matches,PREG_SET_ORDER);
1425         }
1426         else {
1427                 $cnt = preg_match_all('/<(.*?)>/',$file,$matches,PREG_SET_ORDER);
1428         }
1429         if($cnt) {
1430                 foreach($matches as $mtch) {
1431                         if(strlen($list))
1432                                 $list .= ',';
1433                         $list .= file_tag_decode($mtch[1]);
1434                 }
1435         }
1436
1437         return $list;
1438 }
1439
1440 function file_tag_update_pconfig($uid,$file_old,$file_new,$type = 'file') {
1441         // $file_old - categories previously associated with an item
1442         // $file_new - new list of categories for an item
1443
1444         if(! intval($uid))
1445                 return false;
1446
1447         if($file_old == $file_new)
1448                 return true;
1449
1450         $saved = get_pconfig($uid,'system','filetags');
1451         if(strlen($saved)) {
1452                 if($type == 'file') {
1453                         $lbracket = '[';
1454                         $rbracket = ']';
1455                 }
1456                 else {
1457                         $lbracket = '<';
1458                         $rbracket = '>';
1459                 }
1460
1461                 $filetags_updated = $saved;
1462
1463                 // check for new tags to be added as filetags in pconfig
1464                 $new_tags = array();
1465                 $check_new_tags = explode(",",file_tag_file_to_list($file_new,$type));
1466
1467                 foreach($check_new_tags as $tag) {
1468                         if(! stristr($saved,$lbracket . file_tag_encode($tag) . $rbracket))
1469                                 $new_tags[] = $tag;
1470                 }
1471
1472                 $filetags_updated .= file_tag_list_to_file(implode(",",$new_tags),$type);
1473
1474                 // check for deleted tags to be removed from filetags in pconfig
1475                 $deleted_tags = array();
1476                 $check_deleted_tags = explode(",",file_tag_file_to_list($file_old,$type));
1477
1478                 foreach($check_deleted_tags as $tag) {
1479                         if(! stristr($file_new,$lbracket . file_tag_encode($tag) . $rbracket))
1480                                 $deleted_tags[] = $tag;
1481                 }
1482
1483                 foreach($deleted_tags as $key => $tag) {
1484                         $r = q("select file from item where uid = %d " . file_tag_file_query('item',$tag,$type),
1485                                 intval($uid)
1486                         );
1487
1488                         if(count($r)) {
1489                                 unset($deleted_tags[$key]);
1490                         }
1491                         else {
1492                                 $filetags_updated = str_replace($lbracket . file_tag_encode($tag) . $rbracket,'',$filetags_updated);
1493                         }
1494                 }
1495
1496                 if($saved != $filetags_updated) {
1497                         set_pconfig($uid,'system','filetags', $filetags_updated);
1498                 }
1499                 return true;
1500         }
1501         else
1502                 if(strlen($file_new)) {
1503                         set_pconfig($uid,'system','filetags', $file_new);
1504                 }
1505                 return true;
1506 }
1507
1508 function file_tag_save_file($uid,$item,$file) {
1509         $result = false;
1510         if(! intval($uid))
1511                 return false;
1512         $r = q("select file from item where id = %d and uid = %d limit 1",
1513                 intval($item),
1514                 intval($uid)
1515         );
1516         if(count($r)) {
1517                 if(! stristr($r[0]['file'],'[' . file_tag_encode($file) . ']'))
1518                         q("update item set file = '%s' where id = %d and uid = %d limit 1",
1519                                 dbesc($r[0]['file'] . '[' . file_tag_encode($file) . ']'),
1520                                 intval($item),
1521                                 intval($uid)
1522                         );
1523                 $saved = get_pconfig($uid,'system','filetags');
1524                 if((! strlen($saved)) || (! stristr($saved,'[' . file_tag_encode($file) . ']')))
1525                         set_pconfig($uid,'system','filetags',$saved . '[' . file_tag_encode($file) . ']');
1526                 info( t('Item filed') );
1527         }
1528         return true;
1529 }
1530
1531 function file_tag_unsave_file($uid,$item,$file,$cat = false) {
1532         $result = false;
1533         if(! intval($uid))
1534                 return false;
1535
1536         if($cat == true)
1537                 $pattern = '<' . file_tag_encode($file) . '>' ;
1538         else
1539                 $pattern = '[' . file_tag_encode($file) . ']' ;
1540
1541
1542         $r = q("select file from item where id = %d and uid = %d limit 1",
1543                 intval($item),
1544                 intval($uid)
1545         );
1546         if(! count($r))
1547                 return false;
1548
1549         q("update item set file = '%s' where id = %d and uid = %d limit 1",
1550                 dbesc(str_replace($pattern,'',$r[0]['file'])),
1551                 intval($item),
1552                 intval($uid)
1553         );
1554
1555         $r = q("select file from item where uid = %d and deleted = 0 " . file_tag_file_query('item',$file,(($cat) ? 'category' : 'file')),
1556                 intval($uid)
1557         );
1558
1559         if(! count($r)) {
1560                 $saved = get_pconfig($uid,'system','filetags');
1561                 set_pconfig($uid,'system','filetags',str_replace($pattern,'',$saved));
1562
1563         }
1564         return true;
1565 }
1566
1567 function normalise_openid($s) {
1568         return trim(str_replace(array('http://','https://'),array('',''),$s),'/');
1569 }
1570
1571
1572 function undo_post_tagging($s) {
1573         $matches = null;
1574         $cnt = preg_match_all('/([@#])\[url=(.*?)\](.*?)\[\/url\]/ism',$s,$matches,PREG_SET_ORDER);
1575         if($cnt) {
1576                 foreach($matches as $mtch) {
1577                         $s = str_replace($mtch[0], $mtch[1] . $mtch[3],$s);
1578                 }
1579         }
1580         return $s;
1581 }
1582
1583 function fix_mce_lf($s) {
1584         $s = str_replace("\r\n","\n",$s);
1585 //      $s = str_replace("\n\n","\n",$s);
1586         return $s;
1587 }
1588
1589
1590 function protect_sprintf($s) {
1591         return(str_replace('%','%%',$s));
1592 }
1593
1594
1595 function is_a_date_arg($s) {
1596         $i = intval($s);
1597         if($i > 1900) {
1598                 $y = date('Y');
1599                 if($i <= $y+1 && strpos($s,'-') == 4) {
1600                         $m = intval(substr($s,5));
1601                         if($m > 0 && $m <= 12)
1602                                 return true;
1603                 }
1604         }
1605         return false;
1606 }