use Friendica\App;
-require_once("include/template_processor.php");
-require_once("include/friendica_smarty.php");
-require_once("include/Smilies.php");
-require_once("include/map.php");
-require_once("mod/proxy.php");
+require_once "include/template_processor.php";
+require_once "include/friendica_smarty.php";
+require_once "include/Smilies.php";
+require_once "include/map.php";
+require_once "mod/proxy.php";
if (! function_exists('replace_macros')) {
/**
* @param array $r key value pairs (search => replace)
* @return string substituted string
*/
-function replace_macros($s,$r) {
+function replace_macros($s, $r) {
$stamp1 = microtime(true);
// pass $baseurl to all templates
$r['$baseurl'] = App::get_baseurl();
-
$t = $a->template_engine();
try {
- $output = $t->replace_macros($s,$r);
+ $output = $t->replace_macros($s, $r);
} catch (Exception $e) {
- echo "<pre><b>".__function__."</b>: ".$e->getMessage()."</pre>"; killme();
+ echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
+ killme();
}
$a->save_timestamp($stamp1, "rendering");
define('RANDOM_STRING_TEXT', 0x01 );
if (! function_exists('random_string')) {
-function random_string($size = 64,$type = RANDOM_STRING_HEX) {
+function random_string($size = 64, $type = RANDOM_STRING_HEX) {
// generate a bit of entropy and run it through the whirlpool
- $s = hash('whirlpool', (string) rand() . uniqid(rand(),true) . (string) rand(),(($type == RANDOM_STRING_TEXT) ? true : false));
- $s = (($type == RANDOM_STRING_TEXT) ? str_replace("\n","",base64url_encode($s,true)) : $s);
+ $s = hash('whirlpool', (string) rand() . uniqid(rand(),true) . (string) rand(), (($type == RANDOM_STRING_TEXT) ? true : false));
+ $s = (($type == RANDOM_STRING_TEXT) ? str_replace("\n", "", base64url_encode($s,true)) : $s);
return(substr($s,0,$size));
}}
* @return string Filtered string
*/
function notags($string) {
-
- return(str_replace(array("<",">"), array('[',']'), $string));
+ return str_replace(array("<", ">"), array('[', ']'), $string);
// High-bit filter no longer used
// return(str_replace(array("<",">","\xBA","\xBC","\xBE"), array('[',']','','',''), $string));
* @return string
*/
function escape_tags($string) {
-
- return(htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false));
+ return htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false);
}}
*/
function autoname($len) {
- if ($len <= 0)
+ if ($len <= 0) {
return '';
+ }
$vowels = array('a','a','ai','au','e','e','e','ee','ea','i','ie','o','ou','u');
- if (mt_rand(0,5) == 4)
+ if (mt_rand(0, 5) == 4) {
$vowels[] = 'y';
+ }
$cons = array(
'b','bl','br',
'kh', 'kl','kr','mn','pl','pr','rh','tr','qu','wh');
$start = mt_rand(0,2);
- if ($start == 0)
+ if ($start == 0) {
$table = $vowels;
- else
+ } else {
$table = $cons;
+ }
$word = '';
$r = mt_rand(0,count($table) - 1);
$word .= $table[$r];
- if ($table == $vowels)
+ if ($table == $vowels) {
$table = array_merge($cons,$midcons);
- else
+ } else {
$table = $vowels;
+ }
}
$word = substr($word,0,$len);
foreach ($noend as $noe) {
- if ((strlen($word) > 2) && (substr($word,-2) == $noe)) {
- $word = substr($word,0,-1);
+ if ((strlen($word) > 2) && (substr($word, -2) == $noe)) {
+ $word = substr($word, 0, -1);
break;
}
}
- if (substr($word,-1) == 'q')
- $word = substr($word,0,-1);
+ if (substr($word, -1) == 'q') {
+ $word = substr($word, 0, -1);
+ }
return $word;
}}
* @return string Escaped text.
*/
function xmlify($str) {
+ /// @TODO deprecated code found?
/* $buffer = '';
$len = mb_strlen($str);
* @return string unescaped text
*/
function unxmlify($s) {
+ /// @TODO deprecated code found?
// $ret = str_replace('&','&', $s);
// $ret = str_replace(array('<','>','"','''),array('<','>','"',"'"),$ret);
/*$ret = mb_ereg_replace('&', '&', $s);
* @return number
*/
function hex2bin($s) {
- if (! (is_string($s) && strlen($s)))
+ if (! (is_string($s) && strlen($s))) {
return '';
+ }
if (! ctype_xdigit($s)) {
- return($s);
+ return $s;
}
- return(pack("H*",$s));
+ return pack("H*",$s);
}}
if (strlen($s)) {
$t = str_replace('<','',$s);
$a = explode('>',$t);
- foreach ($a as $aa) {
- if (intval($aa))
+ foreach($a as $aa) {
+ if (intval($aa)) {
$ret[] = intval($aa);
+ }
}
}
return $ret;
* @param int $uid
* @return string
*/
-function item_new_uri($hostname,$uid, $guid = "") {
+function item_new_uri($hostname, $uid, $guid = "") {
do {
$dups = false;
- if ($guid == "")
+ if ($guid == "") {
$hash = get_guid(32);
- else {
+ } else {
$hash = $guid;
$guid = "";
}
$r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' LIMIT 1",
dbesc($uri));
- if (dbm::is_result($r))
+ if (dbm::is_result($r)) {
$dups = true;
+ }
} while ($dups == true);
+
return $uri;
}}
$r = q("SELECT `id` FROM `photo` WHERE `resource-id` = '%s' LIMIT 1",
dbesc($resource)
);
- if (dbm::is_result($r))
+
+ if (dbm::is_result($r)) {
$found = true;
+ }
} while ($found == true);
+
return $resource;
}}
*/
function load_view_file($s) {
global $lang, $a;
- if (! isset($lang))
+ if (! isset($lang)) {
$lang = 'en';
+ }
$b = basename($s);
$d = dirname($s);
if (file_exists("$d/$lang/$b")) {
$a = get_app();
$engine = '';
- if ($a->theme['template_engine'] === 'smarty3')
+ if ($a->theme['template_engine'] === 'smarty3') {
$engine = "/smarty3";
+ }
- if (! isset($lang))
+ if (! isset($lang)) {
$lang = 'en';
+ }
if (file_exists("view/lang/$lang$engine/$s")) {
$stamp1 = microtime(true);
try {
$template = $t->get_template_file($s, $root);
} catch (Exception $e) {
- echo "<pre><b>".__function__."</b>: ".$e->getMessage()."</pre>"; killme();
+ echo "<pre><b>" . __FUNCTION__ . "</b>: " . $e->getMessage() . "</pre>";
+ killme();
}
$a->save_timestamp($stamp1, "file");
$theme = current_theme();
// Make sure $root ends with a slash /
- if ($root !== '' && $root[strlen($root)-1] !== '/')
+ if ($root !== '' && $root[strlen($root) - 1] !== '/') {
$root = $root . '/';
+ }
- if (file_exists("{$root}view/theme/$theme/$filename"))
+ if (file_exists("{$root}view/theme/$theme/$filename")) {
$template_file = "{$root}view/theme/$theme/$filename";
- elseif (x($a->theme_info,"extends") && file_exists("{$root}view/theme/{$a->theme_info["extends"]}/$filename"))
- $template_file = "{$root}view/theme/{$a->theme_info["extends"]}/$filename";
- elseif (file_exists("{$root}/$filename"))
+ } elseif (x($a->theme_info, "extends") && file_exists("{$root}view/theme/{$a->theme_info[\"extends\"]}/$filename")) {
+ $template_file = "{$root}view/theme/{$a->theme_info[\"extends\"]}/$filename";
+ } elseif (file_exists("{$root}/$filename")) {
$template_file = "{$root}/$filename";
- else
+ } else {
$template_file = "{$root}view/$filename";
+ }
return $template_file;
}}
* @param string $s string to search
* @return boolean True if found, False otherwise
*/
-function attribute_contains($attr,$s) {
+function attribute_contains($attr, $s) {
$a = explode(' ', $attr);
- if (count($a) && in_array($s,$a))
- return true;
- return false;
+ return (count($a) && in_array($s,$a));
}}
if (! function_exists('logger')) {
* @return boolean
*/
function activity_match($haystack,$needle) {
- if (($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle,NAMESPACE_ACTIVITY_SCHEMA)))
- return true;
- return false;
+ return (($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle, NAMESPACE_ACTIVITY_SCHEMA)));
}}
* @return string
*/
function qp($s) {
-return str_replace ("%","=",rawurlencode($s));
+ return str_replace("%", "=", rawurlencode($s));
}}
if (! function_exists('contact_block')) {
$a = get_app();
$shown = get_pconfig($a->profile['uid'],'system','display_friend_count');
- if ($shown === false)
+ if ($shown === false) {
$shown = 24;
- if ($shown == 0)
+ }
+ if ($shown == 0) {
return;
+ }
- if ((! is_array($a->profile)) || ($a->profile['hide-friends']))
+ if ((! is_array($a->profile)) || ($a->profile['hide-friends'])) {
return $o;
+ }
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
WHERE `uid` = %d AND NOT `self` AND NOT `blocked`
AND NOT `pending` AND NOT `hidden` AND NOT `archive`
}
if (! $total) {
$contacts = t('No contacts');
- $micropro = Null;
-
+ $micropro = null;
} else {
// Splitting the query in two parts makes it much faster
$r = q("SELECT `id` FROM `contact`
function micropro($contact, $redirect = false, $class = '', $textmode = false) {
// Use the contact URL if no address is available
- if ($contact["addr"] == "")
+ if ($contact["addr"] == "") {
$contact["addr"] = $contact["url"];
+ }
$url = $contact['url'];
$sparkle = '';
$redir = true;
$url = $redirect_url;
$sparkle = ' sparkle';
- }
- else
+ } else {
$url = zrl($url);
+ }
}
// If there is some js available we don't need the url
- if (x($contact,'click'))
+ if (x($contact, 'click')) {
$url = '';
+ }
return replace_macros(get_markup_template(($textmode)?'micropro_txt.tpl':'micropro_img.tpl'),array(
'$click' => (($contact['click']) ? $contact['click'] : ''),
* @param string $url search url
* @param boolean $savedsearch show save search button
*/
-function search($s,$id='search-box',$url='search',$save = false, $aside = true) {
+function search($s, $id = 'search-box', $url = 'search', $save = false, $aside = true) {
$a = get_app();
$values = array(
t("Tags"),
t("Contacts"));
- if (get_config('system','poco_local_search'))
+ if (get_config('system','poco_local_search')) {
$values['$searchoption'][] = t("Forums");
+ }
}
return replace_macros(get_markup_template('searchbox.tpl'), $values);
*/
function valid_email($x){
- // Removed because Fabio told me so.
+ /// @TODO Removed because Fabio told me so.
//if (get_config('system','disable_email_validation'))
// return true;
-
- if (preg_match('/^[_a-zA-Z0-9\-\+]+(\.[_a-zA-Z0-9\-\+]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)+$/',$x))
- return true;
- return false;
+ return preg_match('/^[_a-zA-Z0-9\-\+]+(\.[_a-zA-Z0-9\-\+]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)+$/', $x);
}}
function linkify($s) {
$s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\'\%\$\!\+]*)/", ' <a href="$1" target="_blank">$1</a>', $s);
$s = preg_replace("/\<(.*?)(src|href)=(.*?)\&\;(.*?)\>/ism",'<$1$2=$3&$4>',$s);
- return($s);
+ return $s;
}}
* @return string
*/
function normalise_link($url) {
- $ret = str_replace(array('https:','//www.'), array('http:','//'), $url);
- return(rtrim($ret,'/'));
+ $ret = str_replace(array('https:', '//www.'), array('http:', '//'), $url);
+ return rtrim($ret,'/');
}}
*
*/
function link_compare($a,$b) {
- if (strcasecmp(normalise_link($a),normalise_link($b)) === 0)
- return true;
- return false;
+ return (strcasecmp(normalise_link($a), normalise_link($b)) === 0);
}}
/**
foreach ($taglist as $tag) {
- if ($tag["url"] == "")
+ if ($tag["url"] == "") {
$tag["url"] = $searchpath.strtolower($tag["term"]);
+ }
if ($tag["type"] == TERM_HASHTAG) {
$hashtags[] = "#<a href=\"".$tag["url"]."\" target=\"_blank\">".$tag["term"]."</a>";
$s = $s . $as;
// map
- if (strpos($s,'<div class="map">') !== false && $item['coord']) {
+ if (strpos($s, '<div class="map">') !== false && $item['coord']) {
$x = generate_map(trim($item['coord']));
if ($x) {
$s = preg_replace('/\<div class\=\"map\"\>/','$0' . $x,$s);
$spoilersearch = '<blockquote class="spoiler">';
// Remove line breaks before the spoiler
- while ((strpos($s, "\n".$spoilersearch) !== false))
- $s = str_replace("\n".$spoilersearch, $spoilersearch, $s);
- while ((strpos($s, "<br />".$spoilersearch) !== false))
- $s = str_replace("<br />".$spoilersearch, $spoilersearch, $s);
+ while ((strpos($s, "\n" . $spoilersearch) !== false)) {
+ $s = str_replace("\n" . $spoilersearch, $spoilersearch, $s);
+ }
+ while ((strpos($s, "<br />" . $spoilersearch) !== false)) {
+ $s = str_replace("<br />" . $spoilersearch, $spoilersearch, $s);
+ }
while ((strpos($s, $spoilersearch) !== false)) {
-
$pos = strpos($s, $spoilersearch);
$rnd = random_string(8);
- $spoilerreplace = '<br /> <span id="spoiler-wrap-'.$rnd.'" class="spoiler-wrap fakelink" onclick="openClose(\'spoiler-'.$rnd.'\');">'.sprintf(t('Click to open/close')).'</span>'.
- '<blockquote class="spoiler" id="spoiler-'.$rnd.'" style="display: none;">';
- $s = substr($s, 0, $pos).$spoilerreplace.substr($s, $pos+strlen($spoilersearch));
+ $spoilerreplace = '<br /> <span id="spoiler-wrap-' . $rnd . '" class="spoiler-wrap fakelink" onclick="openClose(\'spoiler-' . $rnd . '\');">' . sprintf(t('Click to open/close')) . '</span>'.
+ '<blockquote class="spoiler" id="spoiler-' . $rnd . '" style="display: none;">';
+ $s = substr($s, 0, $pos) . $spoilerreplace . substr($s, $pos + strlen($spoilersearch));
}
// Look for quote with author
$authorsearch = '<blockquote class="author">';
while ((strpos($s, $authorsearch) !== false)) {
-
$pos = strpos($s, $authorsearch);
$rnd = random_string(8);
- $authorreplace = '<br /> <span id="author-wrap-'.$rnd.'" class="author-wrap fakelink" onclick="openClose(\'author-'.$rnd.'\');">'.sprintf(t('Click to open/close')).'</span>'.
- '<blockquote class="author" id="author-'.$rnd.'" style="display: block;">';
- $s = substr($s, 0, $pos).$authorreplace.substr($s, $pos+strlen($authorsearch));
+ $authorreplace = '<br /> <span id="author-wrap-' . $rnd . '" class="author-wrap fakelink" onclick="openClose(\'author-' . $rnd . '\');">' . sprintf(t('Click to open/close')) . '</span>'.
+ '<blockquote class="author" id="author-' . $rnd . '" style="display: block;">';
+ $s = substr($s, 0, $pos) . $authorreplace . substr($s, $pos + strlen($authorsearch));
}
// replace friendica image url size with theme preference
- if (x($a->theme_info,'item_image_size')){
- $ps = $a->theme_info['item_image_size'];
-
- $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|',"$1-".$ps, $s);
+ if (x($a->theme_info, 'item_image_size')){
+ $ps = $a->theme_info['item_image_size'];
+ $s = preg_replace('|(<img[^>]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|', "$1-" . $ps, $s);
}
$prep_arr = array('item' => $item, 'html' => $s);
*/
function prepare_text($text) {
- require_once('include/bbcode.php');
+ require_once 'include/bbcode.php';
- if (stristr($text,'[nosmile]'))
+ if (stristr($text, '[nosmile]')) {
$s = bbcode($text);
- else
+ } else {
$s = Smilies::replace(bbcode($text));
+ }
return trim($s);
}}
$first = false;
}
}
- if (count($categories)) $categories[count($categories)-1]['last'] = true;
+ if (count($categories)) {
+ $categories[count($categories) - 1]['last'] = true;
+ }
if (local_user() == $item['uid']) {
$matches = false; $first = true;
$folders[] = array(
'name' => xmlify(file_tag_decode($mtch[1])),
'url' => "#",
- 'removeurl' => ((local_user() == $item['uid'])?'filerm/' . $item['id'] . '?f=&term=' . xmlify(file_tag_decode($mtch[1])):""),
+ 'removeurl' => ((local_user() == $item['uid']) ? 'filerm/' . $item['id'] . '?f=&term=' . xmlify(file_tag_decode($mtch[1])) : ""),
'first' => $first,
'last' => false
);
}
}
- if (count($folders)) $folders[count($folders)-1]['last'] = true;
+ if (count($folders)) {
+ $folders[count($folders) - 1]['last'] = true;
+ }
return array($categories, $folders);
}
if ($a->user['nickname'] != "") {
$ret = array(
- //'href' => "display/".$a->user['nickname']."/".$item['id'],
- 'href' => "display/".$item['guid'],
- 'orig' => "display/".$item['guid'],
+ //'href' => "display/" . $a->user['nickname'] . "/" . $item['id'],
+ 'href' => "display/" . $item['guid'],
+ 'orig' => "display/" . $item['guid'],
'title' => t('View on separate page'),
'orig_title' => t('view on separate page'),
);
- if (x($item,'plink')) {
+ if (x($item, 'plink')) {
$ret["href"] = $a->remove_baseurl($item['plink']);
$ret["title"] = t('link to source');
}
- } elseif (x($item,'plink') && ($item['private'] != 1))
+ } elseif (x($item, 'plink') && ($item['private'] != 1)) {
$ret = array(
'href' => $item['plink'],
'orig' => $item['plink'],
'title' => t('link to source'),
);
- else
+ } else {
$ret = array();
+ }
//if (x($item,'plink') && ($item['private'] != 1))
$x = q("SELECT `uid` FROM `user` WHERE `guid` = '%s' LIMIT 1",
dbesc($guid)
);
- if (! count($x))
+ if (! dbm::is_result($x)) {
$found = false;
+ }
} while ($found == true );
+
return $guid;
}
*/
function base64url_encode($s, $strip_padding = false) {
- $s = strtr(base64_encode($s),'+/','-_');
+ $s = strtr(base64_encode($s), '+/', '-_');
- if ($strip_padding)
+ if ($strip_padding) {
$s = str_replace('=','',$s);
+ }
return $s;
}
* @return array
*/
function array_xmlify($val){
- if (is_bool($val)) return $val?"true":"false";
- if (is_array($val)) return array_map('array_xmlify', $val);
+ if (is_bool($val)) {
+ return $val?"true":"false";
+ } elseif (is_array($val)) {
+ return array_map('array_xmlify', $val);
+ }
return xmlify((string) $val);
}
* @return string
*/
function reltoabs($text, $base) {
- if (empty($base))
- return $text;
+ if (empty($base)) {
+ return $text;
+ }
$base = rtrim($base,'/');
* @return string
*/
function item_post_type($item) {
- if (intval($item['event-id']))
+ if (intval($item['event-id'])) {
return t('event');
- if (strlen($item['resource-id']))
+ } elseif (strlen($item['resource-id'])) {
return t('photo');
- if (strlen($item['verb']) && $item['verb'] !== ACTIVITY_POST)
+ } elseif (strlen($item['verb']) && $item['verb'] !== ACTIVITY_POST) {
return t('activity');
- if ($item['id'] != $item['parent'])
+ } elseif ($item['id'] != $item['parent']) {
return t('comment');
+ }
+
return t('post');
}
}
function protect_sprintf($s) {
- return(str_replace('%','%%',$s));
+ return str_replace('%', '%%', $s);
}
$i = intval($s);
if ($i > 1900) {
$y = date('Y');
- if ($i <= $y+1 && strpos($s,'-') == 4) {
+ if ($i <= $y + 1 && strpos($s, '-') == 4) {
$m = intval(substr($s,5));
if ($m > 0 && $m <= 12)
return true;
$s = trim(html_entity_decode($s, ENT_COMPAT));
$s = str_replace(' ', "\t", $s);
- // The highlighter library insists on an opening php tag for php code blocks. If
- // it isn't present, nothing is highlighted. So we're going to see if it's present.
- // If not, we'll add it, and then quietly remove it after we get the processed output back.
-
- if ($lang === 'php') {
- if (strpos($s, '<?php') !== 0) {
- $s = '<?php' . "\n" . $s;
- $tag_added = true;
- }
+ /*
+ * The highlighter library insists on an opening php tag for php code blocks. If
+ * it isn't present, nothing is highlighted. So we're going to see if it's present.
+ * If not, we'll add it, and then quietly remove it after we get the processed output back.
+ */
+ if ($lang === 'php' && strpos($s, '<?php') !== 0) {
+ $s = '<?php' . "\n" . $s;
+ $tag_added = true;
}
$renderer = new Text_Highlighter_Renderer_Html($options);