3 require_once("include/template_processor.php");
4 require_once("include/friendica_smarty.php");
5 require_once("include/map.php");
6 require_once("mod/proxy.php");
9 if(! function_exists('replace_macros')) {
11 * This is our template processor
13 * @param string|FriendicaSmarty $s the string requiring macro substitution,
14 * or an instance of FriendicaSmarty
15 * @param array $r key value pairs (search => replace)
16 * @return string substituted string
18 function replace_macros($s,$r) {
20 $stamp1 = microtime(true);
24 // pass $baseurl to all templates
25 $r['$baseurl'] = z_root();
28 $t = $a->template_engine();
30 $output = $t->replace_macros($s,$r);
31 } catch (Exception $e) {
32 echo "<pre><b>".__function__."</b>: ".$e->getMessage()."</pre>"; killme();
35 $a->save_timestamp($stamp1, "rendering");
41 // random string, there are 86 characters max in text mode, 128 for hex
44 define('RANDOM_STRING_HEX', 0x00 );
45 define('RANDOM_STRING_TEXT', 0x01 );
47 if(! function_exists('random_string')) {
48 function random_string($size = 64,$type = RANDOM_STRING_HEX) {
49 // generate a bit of entropy and run it through the whirlpool
50 $s = hash('whirlpool', (string) rand() . uniqid(rand(),true) . (string) rand(),(($type == RANDOM_STRING_TEXT) ? true : false));
51 $s = (($type == RANDOM_STRING_TEXT) ? str_replace("\n","",base64url_encode($s,true)) : $s);
52 return(substr($s,0,$size));
55 if(! function_exists('notags')) {
57 * This is our primary input filter.
59 * The high bit hack only involved some old IE browser, forget which (IE5/Mac?)
60 * that had an XSS attack vector due to stripping the high-bit on an 8-bit character
61 * after cleansing, and angle chars with the high bit set could get through as markup.
63 * This is now disabled because it was interfering with some legitimate unicode sequences
64 * and hopefully there aren't a lot of those browsers left.
66 * Use this on any text input where angle chars are not valid or permitted
67 * They will be replaced with safer brackets. This may be filtered further
68 * if these are not allowed either.
70 * @param string $string Input string
71 * @return string Filtered string
73 function notags($string) {
75 return(str_replace(array("<",">"), array('[',']'), $string));
77 // High-bit filter no longer used
78 // return(str_replace(array("<",">","\xBA","\xBC","\xBE"), array('[',']','','',''), $string));
83 if(! function_exists('escape_tags')) {
85 * use this on "body" or "content" input where angle chars shouldn't be removed,
86 * and allow them to be safely displayed.
87 * @param string $string
90 function escape_tags($string) {
92 return(htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false));
96 // generate a string that's random, but usually pronounceable.
97 // used to generate initial passwords
99 if(! function_exists('autoname')) {
101 * generate a string that's random, but usually pronounceable.
102 * used to generate initial passwords
106 function autoname($len) {
111 $vowels = array('a','a','ai','au','e','e','e','ee','ea','i','ie','o','ou','u');
112 if(mt_rand(0,5) == 4)
130 's','sc','sh','sm','sp','st',
138 $midcons = array('ck','ct','gn','ld','lf','lm','lt','mb','mm', 'mn','mp',
139 'nd','ng','nk','nt','rn','rp','rt');
141 $noend = array('bl', 'br', 'cl','cr','dr','fl','fr','gl','gr',
142 'kh', 'kl','kr','mn','pl','pr','rh','tr','qu','wh');
144 $start = mt_rand(0,2);
152 for ($x = 0; $x < $len; $x ++) {
153 $r = mt_rand(0,count($table) - 1);
156 if($table == $vowels)
157 $table = array_merge($cons,$midcons);
163 $word = substr($word,0,$len);
165 foreach($noend as $noe) {
166 if((strlen($word) > 2) && (substr($word,-2) == $noe)) {
167 $word = substr($word,0,-1);
171 if(substr($word,-1) == 'q')
172 $word = substr($word,0,-1);
177 // escape text ($str) for XML transport
178 // returns escaped text.
180 if(! function_exists('xmlify')) {
182 * escape text ($str) for XML transport
184 * @return string Escaped text.
186 function xmlify($str) {
189 $len = mb_strlen($str);
190 for($x = 0; $x < $len; $x ++) {
191 $char = mb_substr($str,$x,1);
221 $buffer = mb_ereg_replace("&", "&", $str);
222 $buffer = mb_ereg_replace("'", "'", $buffer);
223 $buffer = mb_ereg_replace('"', """, $buffer);
224 $buffer = mb_ereg_replace("<", "<", $buffer);
225 $buffer = mb_ereg_replace(">", ">", $buffer);
227 $buffer = htmlspecialchars($str, ENT_QUOTES, "UTF-8");
228 $buffer = trim($buffer);
233 if(! function_exists('unxmlify')) {
236 * @param string $s xml escaped text
237 * @return string unescaped text
239 function unxmlify($s) {
240 // $ret = str_replace('&','&', $s);
241 // $ret = str_replace(array('<','>','"','''),array('<','>','"',"'"),$ret);
242 /*$ret = mb_ereg_replace('&', '&', $s);
243 $ret = mb_ereg_replace(''', "'", $ret);
244 $ret = mb_ereg_replace('"', '"', $ret);
245 $ret = mb_ereg_replace('<', "<", $ret);
246 $ret = mb_ereg_replace('>', ">", $ret);
248 $ret = htmlspecialchars_decode($s, ENT_QUOTES);
252 if(! function_exists('hex2bin')) {
254 * convenience wrapper, reverse the operation "bin2hex"
258 function hex2bin($s) {
259 if(! (is_string($s) && strlen($s)))
262 if(! ctype_xdigit($s)) {
266 return(pack("H*",$s));
270 if(! function_exists('paginate_data')) {
272 * Automatica pagination data.
274 * @param App $a App instance
275 * @param int $count [optional] item count (used with alt pager)
276 * @return Array data for pagination template
278 function paginate_data(&$a, $count=null) {
279 $stripped = preg_replace('/([&?]page=[0-9]*)/','',$a->query_string);
281 $stripped = str_replace('q=','',$stripped);
282 $stripped = trim($stripped,'/');
283 $pagenum = $a->pager['page'];
285 if (($a->page_offset != "") AND !preg_match('/[?&].offset=/', $stripped))
286 $stripped .= "&offset=".urlencode($a->page_offset);
288 $url = z_root() . '/' . $stripped;
291 function _l(&$d, $name, $url, $text, $class="") {
292 if (!strpos($url, "?")) {
293 if ($pos = strpos($url, "&"))
294 $url = substr($url, 0, $pos)."?".substr($url, $pos + 1);
297 $d[$name] = array('url'=>$url, 'text'=>$text, 'class'=>$class);
300 if (!is_null($count)){
302 if($a->pager['page']>1)
303 _l($data, "prev", $url.'&page='.($a->pager['page'] - 1), t('newer'));
305 _l($data, "next", $url.'&page='.($a->pager['page'] + 1), t('older'));
308 if($a->pager['total'] > $a->pager['itemspage']) {
309 if($a->pager['page'] != 1)
310 _l($data, "prev", $url.'&page='.($a->pager['page'] - 1), t('prev'));
312 _l($data, "first", $url."&page=1", t('first'));
315 $numpages = $a->pager['total'] / $a->pager['itemspage'];
318 $numstop = $numpages;
321 $numstart = (($pagenum > 7) ? ($pagenum - 7) : 1);
322 $numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14));
327 for($i = $numstart; $i <= $numstop; $i++){
328 if($i == $a->pager['page'])
329 _l($pages, $i, "#", $i, "current");
331 _l($pages, $i, $url."&page=$i", $i, "n");
334 if(($a->pager['total'] % $a->pager['itemspage']) != 0) {
335 if($i == $a->pager['page'])
336 _l($pages, $i, "#", $i, "current");
338 _l($pages, $i, $url."&page=$i", $i, "n");
341 $data['pages'] = $pages;
343 $lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages);
344 _l($data, "last", $url."&page=$lastpage", t('last'));
346 if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0)
347 _l($data, "next", $url."&page=".($a->pager['page'] + 1), t('next'));
355 if(! function_exists('paginate')) {
357 * Automatic pagination.
359 * To use, get the count of total items.
360 * Then call $a->set_pager_total($number_items);
361 * Optionally call $a->set_pager_itemspage($n) to the number of items to display on each page
362 * Then call paginate($a) after the end of the display loop to insert the pager block on the page
363 * (assuming there are enough items to paginate).
364 * When using with SQL, the setting LIMIT %d, %d => $a->pager['start'],$a->pager['itemspage']
365 * will limit the results to the correct items for the current page.
366 * The actual page handling is then accomplished at the application layer.
368 * @param App $a App instance
369 * @return string html for pagination #FIXME remove html
371 function paginate(&$a) {
373 $data = paginate_data($a);
374 $tpl = get_markup_template("paginate.tpl");
375 return replace_macros($tpl, array("pager" => $data));
379 if(! function_exists('alt_pager')) {
382 * @param App $a App instance
384 * @return string html for pagination #FIXME remove html
386 function alt_pager(&$a, $i) {
388 $data = paginate_data($a, $i);
389 $tpl = get_markup_template("paginate.tpl");
390 return replace_macros($tpl, array('pager' => $data));
394 if(! function_exists('scroll_loader')) {
396 * Loader for infinite scrolling
397 * @return string html for loader
399 function scroll_loader() {
400 $tpl = get_markup_template("scroll_loader.tpl");
401 return replace_macros($tpl, array(
402 'wait' => t('Loading more entries...'),
403 'end' => t('The end')
407 if(! function_exists('expand_acl')) {
409 * Turn user/group ACLs stored as angle bracketed text into arrays
414 function expand_acl($s) {
415 // turn string array of angle-bracketed elements into numeric array
416 // e.g. "<1><2><3>" => array(1,2,3);
420 $t = str_replace('<','',$s);
421 $a = explode('>',$t);
424 $ret[] = intval($aa);
430 if(! function_exists('sanitise_acl')) {
432 * Wrap ACL elements in angle brackets for storage
433 * @param string $item
435 function sanitise_acl(&$item) {
437 $item = '<' . intval(notags(trim($item))) . '>';
443 if(! function_exists('perms2str')) {
445 * Convert an ACL array to a storable string
447 * Normally ACL permissions will be an array.
448 * We'll also allow a comma-separated string.
450 * @param string|array $p
453 function perms2str($p) {
458 $tmp = explode(',',$p);
461 array_walk($tmp,'sanitise_acl');
462 $ret = implode('',$tmp);
468 if(! function_exists('item_new_uri')) {
470 * generate a guaranteed unique (for this domain) item ID for ATOM
471 * safe from birthday paradox
473 * @param string $hostname
477 function item_new_uri($hostname,$uid, $guid = "") {
483 $hash = get_guid(32);
489 $uri = "urn:X-dfrn:" . $hostname . ':' . $uid . ':' . $hash;
491 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
495 } while($dups == true);
499 // Generate a guaranteed unique photo ID.
500 // safe from birthday paradox
502 if(! function_exists('photo_new_resource')) {
504 * Generate a guaranteed unique photo ID.
505 * safe from birthday paradox
509 function photo_new_resource() {
513 $resource = hash('md5',uniqid(mt_rand(),true));
514 $r = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' LIMIT 1",
519 } while($found == true);
524 if(! function_exists('load_view_file')) {
527 * wrapper to load a view template, checking for alternate
528 * languages before falling back to the default
530 * @global string $lang
532 * @param string $s view name
535 function load_view_file($s) {
541 if(file_exists("$d/$lang/$b")) {
542 $stamp1 = microtime(true);
543 $content = file_get_contents("$d/$lang/$b");
544 $a->save_timestamp($stamp1, "file");
548 $theme = current_theme();
550 if(file_exists("$d/theme/$theme/$b")) {
551 $stamp1 = microtime(true);
552 $content = file_get_contents("$d/theme/$theme/$b");
553 $a->save_timestamp($stamp1, "file");
557 $stamp1 = microtime(true);
558 $content = file_get_contents($s);
559 $a->save_timestamp($stamp1, "file");
563 if(! function_exists('get_intltext_template')) {
565 * load a view template, checking for alternate
566 * languages before falling back to the default
568 * @global string $lang
569 * @param string $s view path
572 function get_intltext_template($s) {
577 if($a->theme['template_engine'] === 'smarty3')
578 $engine = "/smarty3";
583 if(file_exists("view/$lang$engine/$s")) {
584 $stamp1 = microtime(true);
585 $content = file_get_contents("view/$lang$engine/$s");
586 $a->save_timestamp($stamp1, "file");
588 } elseif(file_exists("view/en$engine/$s")) {
589 $stamp1 = microtime(true);
590 $content = file_get_contents("view/en$engine/$s");
591 $a->save_timestamp($stamp1, "file");
594 $stamp1 = microtime(true);
595 $content = file_get_contents("view$engine/$s");
596 $a->save_timestamp($stamp1, "file");
601 if(! function_exists('get_markup_template')) {
606 * @param string $root
609 function get_markup_template($s, $root = '') {
610 $stamp1 = microtime(true);
613 $t = $a->template_engine();
615 $template = $t->get_template_file($s, $root);
616 } catch (Exception $e) {
617 echo "<pre><b>".__function__."</b>: ".$e->getMessage()."</pre>"; killme();
620 $a->save_timestamp($stamp1, "file");
625 if(! function_exists("get_template_file")) {
629 * @param string $filename
630 * @param string $root
633 function get_template_file($a, $filename, $root = '') {
634 $theme = current_theme();
636 // Make sure $root ends with a slash /
637 if($root !== '' && $root[strlen($root)-1] !== '/')
640 if(file_exists("{$root}view/theme/$theme/$filename"))
641 $template_file = "{$root}view/theme/$theme/$filename";
642 elseif (x($a->theme_info,"extends") && file_exists("{$root}view/theme/{$a->theme_info["extends"]}/$filename"))
643 $template_file = "{$root}view/theme/{$a->theme_info["extends"]}/$filename";
644 elseif (file_exists("{$root}/$filename"))
645 $template_file = "{$root}/$filename";
647 $template_file = "{$root}view/$filename";
649 return $template_file;
658 if(! function_exists('attribute_contains')) {
660 * for html,xml parsing - let's say you've got
661 * an attribute foobar="class1 class2 class3"
662 * and you want to find out if it contains 'class3'.
663 * you can't use a normal sub string search because you
664 * might match 'notclass3' and a regex to do the job is
665 * possible but a bit complicated.
666 * pass the attribute string as $attr and the attribute you
667 * are looking for as $s - returns true if found, otherwise false
669 * @param string $attr attribute value
670 * @param string $s string to search
671 * @return boolean True if found, False otherwise
673 function attribute_contains($attr,$s) {
674 $a = explode(' ', $attr);
675 if(count($a) && in_array($s,$a))
680 if(! function_exists('logger')) {
681 /* setup int->string log level map */
682 $LOGGER_LEVELS = array();
686 * LOGGER_NORMAL (default)
697 function logger($msg,$level = 0) {
698 // turn off logger in install mode
701 global $LOGGER_LEVELS;
703 if(($a->module == 'install') || (! ($db && $db->connected))) return;
705 if (count($LOGGER_LEVELS)==0){
706 foreach (get_defined_constants() as $k=>$v){
707 if (substr($k,0,7)=="LOGGER_")
708 $LOGGER_LEVELS[$v] = substr($k,7,7);
712 $debugging = get_config('system','debugging');
713 $loglevel = intval(get_config('system','loglevel'));
714 $logfile = get_config('system','logfile');
716 if((! $debugging) || (! $logfile) || ($level > $loglevel))
719 $callers = debug_backtrace();
720 $logline = sprintf("%s@%s\t[%s]:%s:%s:%s\t%s\n",
723 $LOGGER_LEVELS[$level],
724 basename($callers[0]['file']),
726 $callers[1]['function'],
730 $stamp1 = microtime(true);
731 @file_put_contents($logfile, $logline, FILE_APPEND);
732 $a->save_timestamp($stamp1, "file");
737 if(! function_exists('activity_match')) {
739 * Compare activity uri. Knows about activity namespace.
741 * @param string $haystack
742 * @param string $needle
745 function activity_match($haystack,$needle) {
746 if(($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle,NAMESPACE_ACTIVITY_SCHEMA)))
752 if(! function_exists('get_tags')) {
754 * Pull out all #hashtags and @person tags from $s;
755 * We also get @person@domain.com - which would make
756 * the regex quite complicated as tags can also
757 * end a sentence. So we'll run through our results
758 * and strip the period from any tags which end with one.
759 * Returns array of tags found, or empty array.
764 function get_tags($s) {
767 // Convert hashtag links to hashtags
768 $s = preg_replace("/#\[url\=([^\[\]]*)\](.*?)\[\/url\]/ism", "#$2", $s);
770 // ignore anything in a code block
771 $s = preg_replace('/\[code\](.*?)\[\/code\]/sm','',$s);
773 // Force line feeds at bbtags
774 $s = str_replace(array("[", "]"), array("\n[", "]\n"), $s);
776 // ignore anything in a bbtag
777 $s = preg_replace('/\[(.*?)\]/sm','',$s);
779 // Match full names against @tags including the space between first and last
780 // We will look these up afterward to see if they are full names or not recognisable.
782 if(preg_match_all('/(@[^ \x0D\x0A,:?]+ [^ \x0D\x0A@,:?]+)([ \x0D\x0A@,:?]|$)/',$s,$match)) {
783 foreach($match[1] as $mtch) {
784 if(strstr($mtch,"]")) {
785 // we might be inside a bbcode color tag - leave it alone
788 if(substr($mtch,-1,1) === '.')
789 $ret[] = substr($mtch,0,-1);
795 // Otherwise pull out single word tags. These can be @nickname, @first_last
798 if(preg_match_all('/([!#@][^ \x0D\x0A,;:?]+)([ \x0D\x0A,;:?]|$)/',$s,$match)) {
799 foreach($match[1] as $mtch) {
800 if(strstr($mtch,"]")) {
801 // we might be inside a bbcode color tag - leave it alone
804 if(substr($mtch,-1,1) === '.')
805 $mtch = substr($mtch,0,-1);
806 // ignore strictly numeric tags like #1
807 if((strpos($mtch,'#') === 0) && ctype_digit(substr($mtch,1)))
809 // try not to catch url fragments
810 if(strpos($s,$mtch) && preg_match('/[a-zA-z0-9\/]/',substr($s,strpos($s,$mtch)-1,1)))
821 if(! function_exists('qp')) {
823 * quick and dirty quoted_printable encoding
829 return str_replace ("%","=",rawurlencode($s));
832 if(! function_exists('contact_block')) {
834 * Get html for contact block.
836 * @template contact_block.tpl
837 * @hook contact_block_end (contacts=>array, output=>string)
840 function contact_block() {
844 $shown = get_pconfig($a->profile['uid'],'system','display_friend_count');
850 if((! is_array($a->profile)) || ($a->profile['hide-friends']))
852 $r = q("SELECT COUNT(*) AS `total` FROM `contact`
853 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0
854 AND `hidden` = 0 AND `archive` = 0
855 AND `network` IN ('%s', '%s', '%s')",
856 intval($a->profile['uid']),
858 dbesc(NETWORK_OSTATUS),
859 dbesc(NETWORK_DIASPORA)
862 $total = intval($r[0]['total']);
865 $contacts = t('No contacts');
869 $r = q("SELECT `id`, `uid`, `addr`, `url`, `name`, `micro`, `network` FROM `contact`
870 WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending`
871 AND NOT `hidden` AND NOT `archive`
872 AND `network` IN ('%s', '%s', '%s') ORDER BY RAND() LIMIT %d",
873 intval($a->profile['uid']),
875 dbesc(NETWORK_OSTATUS),
876 dbesc(NETWORK_DIASPORA),
880 $contacts = sprintf( tt('%d Contact','%d Contacts', $total),$total);
883 $micropro[] = micropro($rr,true,'mpfriend');
888 $tpl = get_markup_template('contact_block.tpl');
889 $o = replace_macros($tpl, array(
890 '$contacts' => $contacts,
891 '$nickname' => $a->profile['nickname'],
892 '$viewcontacts' => t('View Contacts'),
893 '$micropro' => $micropro,
896 $arr = array('contacts' => $r, 'output' => $o);
898 call_hooks('contact_block_end', $arr);
903 if(! function_exists('micropro')) {
906 * @param array $contact
907 * @param boolean $redirect
908 * @param string $class
909 * @param boolean $textmode
910 * @return string #FIXME: remove html
912 function micropro($contact, $redirect = false, $class = '', $textmode = false) {
915 $class = ' ' . $class;
917 if ($contact["addr"] == "")
918 $contact["addr"] = $contact["url"];
920 $url = $contact['url'];
926 $redirect_url = z_root() . '/redir/' . $contact['id'];
927 if(local_user() && ($contact['uid'] == local_user()) && ($contact['network'] === NETWORK_DFRN)) {
929 $url = $redirect_url;
930 $sparkle = ' sparkle';
935 $click = ((x($contact,'click')) ? ' onclick="' . $contact['click'] . '" ' : '');
939 return '<div class="contact-block-textdiv' . $class . '"><a class="contact-block-link' . $class . $sparkle
940 . (($click) ? ' fakelink' : '') . '" '
941 . (($redir) ? ' target="redir" ' : '')
942 . (($url) ? ' href="' . $url . '"' : '') . $click
943 . '" title="' . $contact['name'] . ' [' . $contact['addr'] . ']" alt="' . $contact['name']
944 . '" >'. $contact['name'] . '</a></div>' . "\r\n";
947 return '<div class="contact-block-div' . $class . '"><a class="contact-block-link' . $class . $sparkle
948 . (($click) ? ' fakelink' : '') . '" '
949 . (($redir) ? ' target="redir" ' : '')
950 . (($url) ? ' href="' . $url . '"' : '') . $click . ' ><img class="contact-block-img' . $class . $sparkle . '" src="'
951 . proxy_url($contact['micro'], false, PROXY_SIZE_THUMB) . '" title="' . $contact['name'] . ' [' . $contact['addr'] . ']" alt="' . $contact['name']
952 . '" /></a></div>' . "\r\n";
958 if(! function_exists('search')) {
962 * @param string $s search query
963 * @param string $id html id
964 * @param string $url search url
965 * @param boolean $savedsearch show save search button
967 function search($s,$id='search-box',$url='/search',$save = false, $aside = true) {
973 '$action_url' => $a->get_baseurl((stristr($url,'network')) ? true : false) . $url,
974 '$search_label' => t('Search'),
975 '$save_label' => t('Save'),
976 '$savedsearch' => feature_enabled(local_user(),'savedsearch'),
980 $values['$searchoption'] = array(
985 if (get_config('system','poco_local_search'))
986 $values['$searchoption'][] = t("Forums");
989 return replace_macros(get_markup_template('searchbox.tpl'), $values);
992 if(! function_exists('valid_email')) {
994 * Check if $x is a valid email string
999 function valid_email($x){
1001 // Removed because Fabio told me so.
1002 //if(get_config('system','disable_email_validation'))
1005 if(preg_match('/^[_a-zA-Z0-9\-\+]+(\.[_a-zA-Z0-9\-\+]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)+$/',$x))
1011 if(! function_exists('linkify')) {
1013 * Replace naked text hyperlink with HTML formatted hyperlink
1017 function linkify($s) {
1018 $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\'\%\$\!\+]*)/", ' <a href="$1" target="_blank">$1</a>', $s);
1019 $s = preg_replace("/\<(.*?)(src|href)=(.*?)\&\;(.*?)\>/ism",'<$1$2=$3&$4>',$s);
1027 * @return array index is present tense verb
1028 value is array containing past tense verb, translation of present, translation of past
1029 * @hook poke_verbs pokes array
1031 function get_poke_verbs() {
1033 // index is present tense verb
1034 // value is array containing past tense verb, translation of present, translation of past
1037 'poke' => array( 'poked', t('poke'), t('poked')),
1038 'ping' => array( 'pinged', t('ping'), t('pinged')),
1039 'prod' => array( 'prodded', t('prod'), t('prodded')),
1040 'slap' => array( 'slapped', t('slap'), t('slapped')),
1041 'finger' => array( 'fingered', t('finger'), t('fingered')),
1042 'rebuff' => array( 'rebuffed', t('rebuff'), t('rebuffed')),
1044 call_hooks('poke_verbs', $arr);
1050 * @return array index is mood, value is translated mood
1051 * @hook mood_verbs moods array
1053 function get_mood_verbs() {
1056 'happy' => t('happy'),
1058 'mellow' => t('mellow'),
1059 'tired' => t('tired'),
1060 'perky' => t('perky'),
1061 'angry' => t('angry'),
1062 'stupefied' => t('stupified'),
1063 'puzzled' => t('puzzled'),
1064 'interested' => t('interested'),
1065 'bitter' => t('bitter'),
1066 'cheerful' => t('cheerful'),
1067 'alive' => t('alive'),
1068 'annoyed' => t('annoyed'),
1069 'anxious' => t('anxious'),
1070 'cranky' => t('cranky'),
1071 'disturbed' => t('disturbed'),
1072 'frustrated' => t('frustrated'),
1073 'motivated' => t('motivated'),
1074 'relaxed' => t('relaxed'),
1075 'surprised' => t('surprised'),
1078 call_hooks('mood_verbs', $arr);
1084 if(! function_exists('smilies')) {
1086 * Replaces text emoticons with graphical images
1088 * It is expected that this function will be called using HTML text.
1089 * We will escape text between HTML pre and code blocks from being
1092 * At a higher level, the bbcode [nosmile] tag can be used to prevent this
1093 * function from being executed by the prepare_text() routine when preparing
1094 * bbcode source for HTML display
1097 * @param boolean $sample
1099 * @hook smilie ('texts' => smilies texts array, 'icons' => smilies html array, 'string' => $s)
1101 function smilies($s, $sample = false) {
1104 if(intval(get_config('system','no_smilies'))
1105 || (local_user() && intval(get_pconfig(local_user(),'system','no_smilies'))))
1108 $s = preg_replace_callback('/<pre>(.*?)<\/pre>/ism','smile_encode',$s);
1109 $s = preg_replace_callback('/<code>(.*?)<\/code>/ism','smile_encode',$s);
1151 '<img class="smiley" src="' . z_root() . '/images/smiley-heart.gif" alt="<3" />',
1152 '<img class="smiley" src="' . z_root() . '/images/smiley-brokenheart.gif" alt="</3" />',
1153 '<img class="smiley" src="' . z_root() . '/images/smiley-brokenheart.gif" alt="<\\3" />',
1154 '<img class="smiley" src="' . z_root() . '/images/smiley-smile.gif" alt=":-)" />',
1155 '<img class="smiley" src="' . z_root() . '/images/smiley-wink.gif" alt=";-)" />',
1156 '<img class="smiley" src="' . z_root() . '/images/smiley-frown.gif" alt=":-(" />',
1157 '<img class="smiley" src="' . z_root() . '/images/smiley-tongue-out.gif" alt=":-P" />',
1158 '<img class="smiley" src="' . z_root() . '/images/smiley-tongue-out.gif" alt=":-p" />',
1159 '<img class="smiley" src="' . z_root() . '/images/smiley-kiss.gif" alt=":-\"" />',
1160 '<img class="smiley" src="' . z_root() . '/images/smiley-kiss.gif" alt=":-\"" />',
1161 '<img class="smiley" src="' . z_root() . '/images/smiley-kiss.gif" alt=":-x" />',
1162 '<img class="smiley" src="' . z_root() . '/images/smiley-kiss.gif" alt=":-X" />',
1163 '<img class="smiley" src="' . z_root() . '/images/smiley-laughing.gif" alt=":-D" />',
1164 '<img class="smiley" src="' . z_root() . '/images/smiley-surprised.gif" alt="8-|" />',
1165 '<img class="smiley" src="' . z_root() . '/images/smiley-surprised.gif" alt="8-O" />',
1166 '<img class="smiley" src="' . z_root() . '/images/smiley-surprised.gif" alt=":-O" />',
1167 '<img class="smiley" src="' . z_root() . '/images/smiley-thumbsup.gif" alt="\\o/" />',
1168 '<img class="smiley" src="' . z_root() . '/images/smiley-Oo.gif" alt="o.O" />',
1169 '<img class="smiley" src="' . z_root() . '/images/smiley-Oo.gif" alt="O.o" />',
1170 '<img class="smiley" src="' . z_root() . '/images/smiley-Oo.gif" alt="o_O" />',
1171 '<img class="smiley" src="' . z_root() . '/images/smiley-Oo.gif" alt="O_o" />',
1172 '<img class="smiley" src="' . z_root() . '/images/smiley-cry.gif" alt=":\'(" />',
1173 '<img class="smiley" src="' . z_root() . '/images/smiley-foot-in-mouth.gif" alt=":-!" />',
1174 '<img class="smiley" src="' . z_root() . '/images/smiley-undecided.gif" alt=":-/" />',
1175 '<img class="smiley" src="' . z_root() . '/images/smiley-embarassed.gif" alt=":-[" />',
1176 '<img class="smiley" src="' . z_root() . '/images/smiley-cool.gif" alt="8-)" />',
1177 '<img class="smiley" src="' . z_root() . '/images/beer_mug.gif" alt=":beer" />',
1178 '<img class="smiley" src="' . z_root() . '/images/beer_mug.gif" alt=":homebrew" />',
1179 '<img class="smiley" src="' . z_root() . '/images/coffee.gif" alt=":coffee" />',
1180 '<img class="smiley" src="' . z_root() . '/images/smiley-facepalm.gif" alt=":facepalm" />',
1181 '<img class="smiley" src="' . z_root() . '/images/like.gif" alt=":like" />',
1182 '<img class="smiley" src="' . z_root() . '/images/dislike.gif" alt=":dislike" />',
1183 '<a href="http://friendica.com">~friendica <img class="smiley" src="' . z_root() . '/images/friendica-16.png" alt="~friendica" /></a>',
1184 '<a href="http://redmatrix.me/">red<img class="smiley" src="' . z_root() . '/images/rm-16.png" alt="red" />matrix</a>',
1185 '<a href="http://redmatrix.me/">red<img class="smiley" src="' . z_root() . '/images/rm-16.png" alt="red" />matrix</a>'
1188 $params = array('texts' => $texts, 'icons' => $icons, 'string' => $s);
1189 call_hooks('smilie', $params);
1192 $s = '<div class="smiley-sample">';
1193 for($x = 0; $x < count($params['texts']); $x ++) {
1194 $s .= '<dl><dt>' . $params['texts'][$x] . '</dt><dd>' . $params['icons'][$x] . '</dd></dl>';
1198 $params['string'] = preg_replace_callback('/<(3+)/','preg_heart',$params['string']);
1199 $s = str_replace($params['texts'],$params['icons'],$params['string']);
1202 $s = preg_replace_callback('/<pre>(.*?)<\/pre>/ism','smile_decode',$s);
1203 $s = preg_replace_callback('/<code>(.*?)<\/code>/ism','smile_decode',$s);
1209 function smile_encode($m) {
1210 return(str_replace($m[1],base64url_encode($m[1]),$m[0]));
1213 function smile_decode($m) {
1214 return(str_replace($m[1],base64url_decode($m[1]),$m[0]));
1219 * expand <3333 to the correct number of hearts
1224 function preg_heart($x) {
1226 if(strlen($x[1]) == 1)
1229 for($cnt = 0; $cnt < strlen($x[1]); $cnt ++)
1230 $t .= '<img class="smiley" src="' . z_root() . '/images/smiley-heart.gif" alt="<3" />';
1231 $r = str_replace($x[0],$t,$x[0]);
1236 if(! function_exists('day_translate')) {
1238 * Translate days and months names
1243 function day_translate($s) {
1244 $ret = str_replace(array('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'),
1245 array( t('Monday'), t('Tuesday'), t('Wednesday'), t('Thursday'), t('Friday'), t('Saturday'), t('Sunday')),
1248 $ret = str_replace(array('January','February','March','April','May','June','July','August','September','October','November','December'),
1249 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')),
1256 if(! function_exists('normalise_link')) {
1260 * @param string $url
1263 function normalise_link($url) {
1264 $ret = str_replace(array('https:','//www.'), array('http:','//'), $url);
1265 return(rtrim($ret,'/'));
1270 if(! function_exists('link_compare')) {
1272 * Compare two URLs to see if they are the same, but ignore
1273 * slight but hopefully insignificant differences such as if one
1274 * is https and the other isn't, or if one is www.something and
1275 * the other isn't - and also ignore case differences.
1277 * @param string $a first url
1278 * @param string $b second url
1279 * @return boolean True if the URLs match, otherwise False
1282 function link_compare($a,$b) {
1283 if(strcasecmp(normalise_link($a),normalise_link($b)) === 0)
1289 if(! function_exists('redir_private_images')) {
1291 * Find any non-embedded images in private items and add redir links to them
1294 * @param array $item
1296 function redir_private_images($a, &$item) {
1299 $cnt = preg_match_all('|\[img\](http[^\[]*?/photo/[a-fA-F0-9]+?(-[0-9]\.[\w]+?)?)\[\/img\]|', $item['body'], $matches, PREG_SET_ORDER);
1301 //logger("redir_private_images: matches = " . print_r($matches, true));
1302 foreach($matches as $mtch) {
1303 if(strpos($mtch[1], '/redir') !== false)
1306 if((local_user() == $item['uid']) && ($item['private'] != 0) && ($item['contact-id'] != $a->contact['id']) && ($item['network'] == NETWORK_DFRN)) {
1307 //logger("redir_private_images: redir");
1308 $img_url = z_root() . '/redir?f=1&quiet=1&url=' . $mtch[1] . '&conurl=' . $item['author-link'];
1309 $item['body'] = str_replace($mtch[0], "[img]".$img_url."[/img]", $item['body']);
1316 function put_item_in_cache(&$item, $update = false) {
1318 if (($item["rendered-hash"] != hash("md5", $item["body"])) OR ($item["rendered-hash"] == "") OR
1319 ($item["rendered-html"] == "") OR get_config("system", "ignore_cache")) {
1321 // The function "redir_private_images" changes the body.
1322 // I'm not sure if we should store it permanently, so we save the old value.
1323 $body = $item["body"];
1326 redir_private_images($a, $item);
1328 $item["rendered-html"] = prepare_text($item["body"]);
1329 $item["rendered-hash"] = hash("md5", $item["body"]);
1330 $item["body"] = $body;
1332 if ($update AND ($item["id"] != 0)) {
1333 q("UPDATE `item` SET `rendered-html` = '%s', `rendered-hash` = '%s' WHERE `id` = %d",
1334 dbesc($item["rendered-html"]), dbesc($item["rendered-hash"]), intval($item["id"]));
1339 // Given an item array, convert the body element from bbcode to html and add smilie icons.
1340 // If attach is true, also add icons for item attachments
1342 if(! function_exists('prepare_body')) {
1344 * Given an item array, convert the body element from bbcode to html and add smilie icons.
1345 * If attach is true, also add icons for item attachments
1347 * @param array $item
1348 * @param boolean $attach
1349 * @return string item body html
1350 * @hook prepare_body_init item array before any work
1351 * @hook prepare_body ('item'=>item array, 'html'=>body string) after first bbcode to html
1352 * @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
1354 function prepare_body(&$item,$attach = false, $preview = false) {
1357 call_hooks('prepare_body_init', $item);
1359 $searchpath = z_root()."/search?tag=";
1362 $hashtags = array();
1363 $mentions = array();
1365 if (!get_config('system','suppress_tags')) {
1366 $taglist = q("SELECT `type`, `term`, `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` IN (%d, %d) ORDER BY `tid`",
1367 intval(TERM_OBJ_POST), intval($item['id']), intval(TERM_HASHTAG), intval(TERM_MENTION));
1369 foreach($taglist as $tag) {
1371 if ($tag["url"] == "")
1372 $tag["url"] = $searchpath.strtolower($tag["term"]);
1374 if ($tag["type"] == TERM_HASHTAG) {
1375 $hashtags[] = "#<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
1377 } elseif ($tag["type"] == TERM_MENTION) {
1378 $mentions[] = "@<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
1381 $tags[] = $prefix."<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
1385 $item['tags'] = $tags;
1386 $item['hashtags'] = $hashtags;
1387 $item['mentions'] = $mentions;
1389 // Update the cached values if there is no "zrl=..." on the links
1390 $update = (!local_user() and !remote_user() and ($item["uid"] == 0));
1392 // Or update it if the current viewer is the intented viewer
1393 if (($item["uid"] == local_user()) AND ($item["uid"] != 0))
1396 put_item_in_cache($item, $update);
1397 $s = $item["rendered-html"];
1399 $prep_arr = array('item' => $item, 'html' => $s, 'preview' => $preview);
1400 call_hooks('prepare_body', $prep_arr);
1401 $s = $prep_arr['html'];
1404 // Replace the blockquotes with quotes that are used in mails
1405 $mailquote = '<blockquote type="cite" class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">';
1406 $s = str_replace(array('<blockquote>', '<blockquote class="spoiler">', '<blockquote class="author">'), array($mailquote, $mailquote, $mailquote), $s);
1412 $arr = explode('[/attach],',$item['attach']);
1414 $as .= '<div class="body-attach">';
1415 foreach($arr as $r) {
1418 $cnt = preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches, PREG_SET_ORDER);
1420 foreach($matches as $mtch) {
1423 if((local_user() == $item['uid']) && ($item['contact-id'] != $a->contact['id']) && ($item['network'] == NETWORK_DFRN))
1424 $the_url = z_root() . '/redir/' . $item['contact-id'] . '?f=1&url=' . $mtch[1];
1426 $the_url = $mtch[1];
1428 if(strpos($mime, 'video') !== false) {
1431 $a->page['htmlhead'] .= replace_macros(get_markup_template('videos_head.tpl'), array(
1432 '$baseurl' => z_root(),
1434 $a->page['end'] .= replace_macros(get_markup_template('videos_end.tpl'), array(
1435 '$baseurl' => z_root(),
1439 $id = end(explode('/', $the_url));
1440 $as .= replace_macros(get_markup_template('video_top.tpl'), array(
1443 'title' => t('View Video'),
1450 $filetype = strtolower(substr( $mime, 0, strpos($mime,'/') ));
1452 $filesubtype = strtolower(substr( $mime, strpos($mime,'/') + 1 ));
1453 $filesubtype = str_replace('.', '-', $filesubtype);
1457 $filesubtype = 'unkn';
1460 $icon = '<div class="attachtype icon s22 type-' . $filetype . ' subtype-' . $filesubtype . '"></div>';
1461 /*$icontype = strtolower(substr($mtch[3],0,strpos($mtch[3],'/')));
1467 $icon = '<div class="attachtype icon s22 type-' . $icontype . '"></div>';
1470 $icon = '<div class="attachtype icon s22 type-unkn"></div>';
1474 $title = ((strlen(trim($mtch[4]))) ? escape_tags(trim($mtch[4])) : escape_tags($mtch[1]));
1475 $title .= ' ' . $mtch[2] . ' ' . t('bytes');
1477 $as .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" >' . $icon . '</a>';
1481 $as .= '<div class="clear"></div></div>';
1486 if(strpos($s,'<div class="map">') !== false && $item['coord']) {
1487 $x = generate_map(trim($item['coord']));
1489 $s = preg_replace('/\<div class\=\"map\"\>/','$0' . $x,$s);
1495 $spoilersearch = '<blockquote class="spoiler">';
1497 // Remove line breaks before the spoiler
1498 while ((strpos($s, "\n".$spoilersearch) !== false))
1499 $s = str_replace("\n".$spoilersearch, $spoilersearch, $s);
1500 while ((strpos($s, "<br />".$spoilersearch) !== false))
1501 $s = str_replace("<br />".$spoilersearch, $spoilersearch, $s);
1503 while ((strpos($s, $spoilersearch) !== false)) {
1505 $pos = strpos($s, $spoilersearch);
1506 $rnd = random_string(8);
1507 $spoilerreplace = '<br /> <span id="spoiler-wrap-'.$rnd.'" style="white-space:nowrap;" class="fakelink" onclick="openClose(\'spoiler-'.$rnd.'\');">'.sprintf(t('Click to open/close')).'</span>'.
1508 '<blockquote class="spoiler" id="spoiler-'.$rnd.'" style="display: none;">';
1509 $s = substr($s, 0, $pos).$spoilerreplace.substr($s, $pos+strlen($spoilersearch));
1512 // Look for quote with author
1513 $authorsearch = '<blockquote class="author">';
1515 while ((strpos($s, $authorsearch) !== false)) {
1517 $pos = strpos($s, $authorsearch);
1518 $rnd = random_string(8);
1519 $authorreplace = '<br /> <span id="author-wrap-'.$rnd.'" style="white-space:nowrap;" class="fakelink" onclick="openClose(\'author-'.$rnd.'\');">'.sprintf(t('Click to open/close')).'</span>'.
1520 '<blockquote class="author" id="author-'.$rnd.'" style="display: block;">';
1521 $s = substr($s, 0, $pos).$authorreplace.substr($s, $pos+strlen($authorsearch));
1524 // replace friendica image url size with theme preference
1525 if (x($a->theme_info,'item_image_size')){
1526 $ps = $a->theme_info['item_image_size'];
1528 $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|',"$1-".$ps, $s);
1531 $prep_arr = array('item' => $item, 'html' => $s);
1532 call_hooks('prepare_body_final', $prep_arr);
1534 return $prep_arr['html'];
1538 if(! function_exists('prepare_text')) {
1540 * Given a text string, convert from bbcode to html and add smilie icons.
1542 * @param string $text
1545 function prepare_text($text) {
1547 require_once('include/bbcode.php');
1549 if(stristr($text,'[nosmile]'))
1552 $s = smilies(bbcode($text));
1560 * return array with details for categories and folders for an item
1562 * @param array $item
1566 * [ // categories array
1568 * 'name': 'category name',
1569 * 'removeurl': 'url to remove this category',
1570 * 'first': 'is the first in this array? true/false',
1571 * 'last': 'is the last in this array? true/false',
1577 * 'name': 'folder name',
1578 * 'removeurl': 'url to remove this folder',
1579 * 'first': 'is the first in this array? true/false',
1580 * 'last': 'is the last in this array? true/false',
1586 function get_cats_and_terms($item) {
1589 $categories = array();
1592 $matches = false; $first = true;
1593 $cnt = preg_match_all('/<(.*?)>/',$item['file'],$matches,PREG_SET_ORDER);
1595 foreach($matches as $mtch) {
1596 $categories[] = array(
1597 'name' => xmlify(file_tag_decode($mtch[1])),
1599 'removeurl' => ((local_user() == $item['uid'])?z_root() . '/filerm/' . $item['id'] . '?f=&cat=' . xmlify(file_tag_decode($mtch[1])):""),
1606 if (count($categories)) $categories[count($categories)-1]['last'] = true;
1609 if(local_user() == $item['uid']) {
1610 $matches = false; $first = true;
1611 $cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER);
1613 foreach($matches as $mtch) {
1615 'name' => xmlify(file_tag_decode($mtch[1])),
1617 'removeurl' => ((local_user() == $item['uid'])?z_root() . '/filerm/' . $item['id'] . '?f=&term=' . xmlify(file_tag_decode($mtch[1])):""),
1626 if (count($folders)) $folders[count($folders)-1]['last'] = true;
1628 return array($categories, $folders);
1631 if(! function_exists('get_plink')) {
1633 * get private link for item
1634 * @param array $item
1635 * @return boolean|array False if item has not plink, otherwise array('href'=>plink url, 'title'=>translated title)
1637 function get_plink($item) {
1640 if ($a->user['nickname'] != "") {
1642 //'href' => z_root()."/display/".$a->user['nickname']."/".$item['id'],
1643 'href' => z_root()."/display/".$item['guid'],
1644 'orig' => z_root()."/display/".$item['guid'],
1645 'title' => t('View on separate page'),
1646 'orig_title' => t('view on separate page'),
1649 if (x($item,'plink')) {
1650 $ret["href"] = $item['plink'];
1651 $ret["title"] = t('link to source');
1654 } elseif (x($item,'plink') && ($item['private'] != 1))
1656 'href' => $item['plink'],
1657 'orig' => $item['plink'],
1658 'title' => t('link to source'),
1663 //if (x($item,'plink') && ($item['private'] != 1))
1668 if(! function_exists('unamp')) {
1670 * replace html amp entity with amp char
1674 function unamp($s) {
1675 return str_replace('&', '&', $s);
1679 if(! function_exists('return_bytes')) {
1681 * return number of bytes in size (K, M, G)
1682 * @param string $size_str
1685 function return_bytes ($size_str) {
1686 switch (substr ($size_str, -1)) {
1687 case 'M': case 'm': return (int)$size_str * 1048576;
1688 case 'K': case 'k': return (int)$size_str * 1024;
1689 case 'G': case 'g': return (int)$size_str * 1073741824;
1690 default: return $size_str;
1697 function generate_user_guid() {
1700 $guid = get_guid(32);
1701 $x = q("SELECT `uid` FROM `user` WHERE `guid` = '%s' LIMIT 1",
1706 } while ($found == true );
1713 * @param boolean $strip_padding
1716 function base64url_encode($s, $strip_padding = false) {
1718 $s = strtr(base64_encode($s),'+/','-_');
1721 $s = str_replace('=','',$s);
1730 function base64url_decode($s) {
1733 logger('base64url_decode: illegal input: ' . print_r(debug_backtrace(), true));
1738 * // Placeholder for new rev of salmon which strips base64 padding.
1739 * // PHP base64_decode handles the un-padded input without requiring this step
1740 * // Uncomment if you find you need it.
1743 * if(! strpos($s,'=')) {
1753 return base64_decode(strtr($s,'-_','+/'));
1757 if (!function_exists('str_getcsv')) {
1761 * @param string $input
1762 * @param string $delimiter
1763 * @param string $enclosure
1764 * @param string $escape
1765 * @param string $eol
1766 * @return boolean|array False on error, otherwise array[row][column]
1768 function str_getcsv($input, $delimiter = ',', $enclosure = '"', $escape = '\\', $eol = '\n') {
1769 if (is_string($input) && !empty($input)) {
1771 $tmp = preg_split("/".$eol."/",$input);
1772 if (is_array($tmp) && !empty($tmp)) {
1773 while (list($line_num, $line) = each($tmp)) {
1774 if (preg_match("/".$escape.$enclosure."/",$line)) {
1775 while ($strlen = strlen($line)) {
1776 $pos_delimiter = strpos($line,$delimiter);
1777 $pos_enclosure_start = strpos($line,$enclosure);
1779 is_int($pos_delimiter) && is_int($pos_enclosure_start)
1780 && ($pos_enclosure_start < $pos_delimiter)
1782 $enclosed_str = substr($line,1);
1783 $pos_enclosure_end = strpos($enclosed_str,$enclosure);
1784 $enclosed_str = substr($enclosed_str,0,$pos_enclosure_end);
1785 $output[$line_num][] = $enclosed_str;
1786 $offset = $pos_enclosure_end+3;
1788 if (empty($pos_delimiter) && empty($pos_enclosure_start)) {
1789 $output[$line_num][] = substr($line,0);
1790 $offset = strlen($line);
1792 $output[$line_num][] = substr($line,0,$pos_delimiter);
1794 !empty($pos_enclosure_start)
1795 && ($pos_enclosure_start < $pos_delimiter)
1797 ?$pos_enclosure_start
1801 $line = substr($line,$offset);
1804 $line = preg_split("/".$delimiter."/",$line);
1807 * Validating against pesky extra line breaks creating false rows.
1809 if (is_array($line) && !empty($line[0])) {
1810 $output[$line_num] = $line;
1825 * return div element with class 'clear'
1829 function cleardiv() {
1830 return '<div class="clear"></div>';
1834 function bb_translate_video($s) {
1837 $r = preg_match_all("/\[video\](.*?)\[\/video\]/ism",$s,$matches,PREG_SET_ORDER);
1839 foreach($matches as $mtch) {
1840 if((stristr($mtch[1],'youtube')) || (stristr($mtch[1],'youtu.be')))
1841 $s = str_replace($mtch[0],'[youtube]' . $mtch[1] . '[/youtube]',$s);
1842 elseif(stristr($mtch[1],'vimeo'))
1843 $s = str_replace($mtch[0],'[vimeo]' . $mtch[1] . '[/vimeo]',$s);
1849 function html2bb_video($s) {
1851 $s = preg_replace('#<object[^>]+>(.*?)https?://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+)(.*?)</object>#ism',
1852 '[youtube]$2[/youtube]', $s);
1854 $s = preg_replace('#<iframe[^>](.*?)https?://www.youtube.com/embed/([A-Za-z0-9\-_=]+)(.*?)</iframe>#ism',
1855 '[youtube]$2[/youtube]', $s);
1857 $s = preg_replace('#<iframe[^>](.*?)https?://player.vimeo.com/video/([0-9]+)(.*?)</iframe>#ism',
1858 '[vimeo]$2[/vimeo]', $s);
1864 * apply xmlify() to all values of array $val, recursively
1868 function array_xmlify($val){
1869 if (is_bool($val)) return $val?"true":"false";
1870 if (is_array($val)) return array_map('array_xmlify', $val);
1871 return xmlify((string) $val);
1876 * transorm link href and img src from relative to absolute
1878 * @param string $text
1879 * @param string $base base url
1882 function reltoabs($text, $base) {
1886 $base = rtrim($base,'/');
1888 $base2 = $base . "/";
1891 $pattern = "/<a([^>]*) href=\"(?!http|https|\/)([^\"]*)\"/";
1892 $replace = "<a\${1} href=\"" . $base2 . "\${2}\"";
1893 $text = preg_replace($pattern, $replace, $text);
1895 $pattern = "/<a([^>]*) href=\"(?!http|https)([^\"]*)\"/";
1896 $replace = "<a\${1} href=\"" . $base . "\${2}\"";
1897 $text = preg_replace($pattern, $replace, $text);
1900 $pattern = "/<img([^>]*) src=\"(?!http|https|\/)([^\"]*)\"/";
1901 $replace = "<img\${1} src=\"" . $base2 . "\${2}\"";
1902 $text = preg_replace($pattern, $replace, $text);
1904 $pattern = "/<img([^>]*) src=\"(?!http|https)([^\"]*)\"/";
1905 $replace = "<img\${1} src=\"" . $base . "\${2}\"";
1906 $text = preg_replace($pattern, $replace, $text);
1914 * get translated item type
1916 * @param array $itme
1919 function item_post_type($item) {
1920 if(intval($item['event-id']))
1922 if(strlen($item['resource-id']))
1924 if(strlen($item['verb']) && $item['verb'] !== ACTIVITY_POST)
1925 return t('activity');
1926 if($item['id'] != $item['parent'])
1927 return t('comment');
1931 // post categories and "save to file" use the same item.file table for storage.
1932 // We will differentiate the different uses by wrapping categories in angle brackets
1933 // and save to file categories in square brackets.
1934 // To do this we need to escape these characters if they appear in our tag.
1936 function file_tag_encode($s) {
1937 return str_replace(array('<','>','[',']'),array('%3c','%3e','%5b','%5d'),$s);
1940 function file_tag_decode($s) {
1941 return str_replace(array('%3c','%3e','%5b','%5d'),array('<','>','[',']'),$s);
1944 function file_tag_file_query($table,$s,$type = 'file') {
1947 $str = preg_quote( '[' . str_replace('%','%%',file_tag_encode($s)) . ']' );
1949 $str = preg_quote( '<' . str_replace('%','%%',file_tag_encode($s)) . '>' );
1950 return " AND " . (($table) ? dbesc($table) . '.' : '') . "file regexp '" . dbesc($str) . "' ";
1953 // ex. given music,video return <music><video> or [music][video]
1954 function file_tag_list_to_file($list,$type = 'file') {
1957 $list_array = explode(",",$list);
1958 if($type == 'file') {
1967 foreach($list_array as $item) {
1969 $tag_list .= $lbracket . file_tag_encode(trim($item)) . $rbracket;
1976 // ex. given <music><video>[friends], return music,video or friends
1977 function file_tag_file_to_list($file,$type = 'file') {
1980 if($type == 'file') {
1981 $cnt = preg_match_all('/\[(.*?)\]/',$file,$matches,PREG_SET_ORDER);
1984 $cnt = preg_match_all('/<(.*?)>/',$file,$matches,PREG_SET_ORDER);
1987 foreach($matches as $mtch) {
1990 $list .= file_tag_decode($mtch[1]);
1997 function file_tag_update_pconfig($uid,$file_old,$file_new,$type = 'file') {
1998 // $file_old - categories previously associated with an item
1999 // $file_new - new list of categories for an item
2004 if($file_old == $file_new)
2007 $saved = get_pconfig($uid,'system','filetags');
2008 if(strlen($saved)) {
2009 if($type == 'file') {
2012 $termtype = TERM_FILE;
2017 $termtype = TERM_CATEGORY;
2020 $filetags_updated = $saved;
2022 // check for new tags to be added as filetags in pconfig
2023 $new_tags = array();
2024 $check_new_tags = explode(",",file_tag_file_to_list($file_new,$type));
2026 foreach($check_new_tags as $tag) {
2027 if(! stristr($saved,$lbracket . file_tag_encode($tag) . $rbracket))
2031 $filetags_updated .= file_tag_list_to_file(implode(",",$new_tags),$type);
2033 // check for deleted tags to be removed from filetags in pconfig
2034 $deleted_tags = array();
2035 $check_deleted_tags = explode(",",file_tag_file_to_list($file_old,$type));
2037 foreach($check_deleted_tags as $tag) {
2038 if(! stristr($file_new,$lbracket . file_tag_encode($tag) . $rbracket))
2039 $deleted_tags[] = $tag;
2042 foreach($deleted_tags as $key => $tag) {
2043 $r = q("SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d",
2045 intval(TERM_OBJ_POST),
2049 //$r = q("select file from item where uid = %d " . file_tag_file_query('item',$tag,$type),
2054 unset($deleted_tags[$key]);
2057 $filetags_updated = str_replace($lbracket . file_tag_encode($tag) . $rbracket,'',$filetags_updated);
2061 if($saved != $filetags_updated) {
2062 set_pconfig($uid,'system','filetags', $filetags_updated);
2067 if(strlen($file_new)) {
2068 set_pconfig($uid,'system','filetags', $file_new);
2073 function file_tag_save_file($uid,$item,$file) {
2074 require_once("include/files.php");
2079 $r = q("SELECT `file` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2084 if(! stristr($r[0]['file'],'[' . file_tag_encode($file) . ']'))
2085 q("UPDATE `item` SET `file` = '%s' WHERE `id` = %d AND `uid` = %d",
2086 dbesc($r[0]['file'] . '[' . file_tag_encode($file) . ']'),
2091 create_files_from_item($item);
2093 $saved = get_pconfig($uid,'system','filetags');
2094 if((! strlen($saved)) || (! stristr($saved,'[' . file_tag_encode($file) . ']')))
2095 set_pconfig($uid,'system','filetags',$saved . '[' . file_tag_encode($file) . ']');
2096 info( t('Item filed') );
2101 function file_tag_unsave_file($uid,$item,$file,$cat = false) {
2102 require_once("include/files.php");
2109 $pattern = '<' . file_tag_encode($file) . '>' ;
2110 $termtype = TERM_CATEGORY;
2112 $pattern = '[' . file_tag_encode($file) . ']' ;
2113 $termtype = TERM_FILE;
2117 $r = q("SELECT `file` FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2124 q("UPDATE `item` SET `file` = '%s' WHERE `id` = %d AND `uid` = %d",
2125 dbesc(str_replace($pattern,'',$r[0]['file'])),
2130 create_files_from_item($item);
2132 $r = q("SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d",
2134 intval(TERM_OBJ_POST),
2138 //$r = q("select file from item where uid = %d and deleted = 0 " . file_tag_file_query('item',$file,(($cat) ? 'category' : 'file')),
2142 $saved = get_pconfig($uid,'system','filetags');
2143 set_pconfig($uid,'system','filetags',str_replace($pattern,'',$saved));
2149 function normalise_openid($s) {
2150 return trim(str_replace(array('http://','https://'),array('',''),$s),'/');
2154 function undo_post_tagging($s) {
2156 $cnt = preg_match_all('/([!#@])\[url=(.*?)\](.*?)\[\/url\]/ism',$s,$matches,PREG_SET_ORDER);
2158 foreach($matches as $mtch) {
2159 $s = str_replace($mtch[0], $mtch[1] . $mtch[3],$s);
2165 function fix_mce_lf($s) {
2166 $s = str_replace("\r\n","\n",$s);
2167 // $s = str_replace("\n\n","\n",$s);
2172 function protect_sprintf($s) {
2173 return(str_replace('%','%%',$s));
2177 function is_a_date_arg($s) {
2181 if($i <= $y+1 && strpos($s,'-') == 4) {
2182 $m = intval(substr($s,5));
2183 if($m > 0 && $m <= 12)
2191 * remove intentation from a text
2193 function deindent($text, $chr="[\t ]", $count=NULL) {
2194 $text = fix_mce_lf($text);
2195 $lines = explode("\n", $text);
2196 if (is_null($count)) {
2198 $k=0; while($k<count($lines) && strlen($lines[$k])==0) $k++;
2199 preg_match("|^".$chr."*|", $lines[$k], $m);
2200 $count = strlen($m[0]);
2202 for ($k=0; $k<count($lines); $k++){
2203 $lines[$k] = preg_replace("|^".$chr."{".$count."}|", "", $lines[$k]);
2206 return implode("\n", $lines);
2209 function formatBytes($bytes, $precision = 2) {
2210 $units = array('B', 'KB', 'MB', 'GB', 'TB');
2212 $bytes = max($bytes, 0);
2213 $pow = floor(($bytes ? log($bytes) : 0) / log(1024));
2214 $pow = min($pow, count($units) - 1);
2216 $bytes /= pow(1024, $pow);
2218 return round($bytes, $precision) . ' ' . $units[$pow];
2222 * @brief translate and format the networkname of a contact
2224 * @param string $network
2225 * Networkname of the contact (e.g. dfrn, rss and so on)
2230 function format_network_name($network, $url = 0) {
2231 if ($network != "") {
2232 require_once('include/contact_selectors.php');
2234 $network_name = '<a href="'.$url.'">'.network_to_name($network, $url)."</a>";
2236 $network_name = network_to_name($network);
2238 return $network_name;