Cheetah
util.inc.php
Go to the documentation of this file.
1 <?php
2 
8 // util functions
9 
16 function transCheck ($xml, $xsl, $trans, $browser_transform = 0)
17 {
18  global $gConf;
19 
20  if (!$xml)
21  return;
22 
23  if ('server' == $gConf['xsl_mode'] && $trans) {
24  $now = gmdate('D, d M Y H:i:s') . ' GMT';
25  header("Expires: $now");
26  header("Last-Modified: $now");
27  header("Cache-Control: no-cache, must-revalidate");
28  header("Pragma: no-cache");
29 
30  $xslt = new ChXslTransform ($xml, $xsl, BXXSLTRANSFORM_SF);
31  $xslt->setHeader ('Content-Type: text/html; charset=UTF-8');
32  $s = $xslt->process ();
33  $s = '<'.'?xml version="1.0" encoding="UTF-8"?'.'>' . $s;
34 
35  $i1 = strpos ($s, '<?xml');
36  if (FALSE !== $i1) {
37  $i2 = strpos ($s, '?>') + 2;
38  echo substr ($s, 0, $i1);
39  echo substr ($s, $i2);
40  } else {
41  echo $s;
42  }
43  } else {
44  header ('Content-Type: application/xml; charset=UTF-8');
45  echo '<' . '?xml version="1.0" encoding="UTF-8"?' . '>';
46  if ('client' == $gConf['xsl_mode'] && $xsl) {
47  echo '<' . '?xml-stylesheet type="text/xsl" href="'.str_replace($gConf['dir']['xsl'],$gConf['url']['xsl'],$xsl).'"?'.'>';
48  }
49  echo $xml;
50  }
51 }
52 
60 function array2xml($arr, $tag = false)
61 {
62  $res = '';
63  foreach($arr as $k=>$v) {
64  if(is_array($v)) {
65  if(!is_numeric($k) && trim($k))//
66  $res .= count($v) ? '<'.$k.'>'.array2xml($v).'</'.$k.'>' : '<'.$k.'/>';
67  elseif($tag)
68  $res .= '<'.$tag.'>'.array2xml($v).'</'.$tag.'>';
69  else
70  $res .= array2xml($v);
71  } else {
72  if(!is_numeric($k) && trim($k))//
73  $res .= strlen(trim($v)) ? '<'.$k.'>'.$v.'</'.$k.'>' : '<'.$k.'/>';
74  elseif($tag)
75  $res .= '<'.$tag.'>'.$v.'</'.$tag.'>';
76  else {
77  echo 'Error: array without tag';
78  exit;
79  }
80  }
81  }
82  return $res;
83 }
84 
88 function checkMagicQuotes ()
89 {
90  if (0 == get_magic_quotes_gpc()) {
91  addSlashesArray ($_COOKIE);
93  addSlashesArray ($_POST);
94  }
95 }
96 
100 function addSlashesArray (&$a)
101 {
102  foreach ($a as $k => $v) {
103  if (is_array($v))
104  addSlashesArray ($v);
105  else
106  $a[$k] = addslashes ($v);
107  }
108 }
109 
110 function prepare_to_db(&$s, $iAllowHTML = 1)
111 {
112  if (1 == $iAllowHTML) {
113  cleanPost($s);
114  // if html is allowed than we will not run it through process_db_input
115  // cuz are using PDO bindings and don't want to run escape on it
116  } elseif (-1 == $iAllowHTML) {
118  } else {
120  }
121 }
122 
123 function filter_to_db($s, $iAllowHTML = 0)
124 {
125  if ($iAllowHTML) {
126  cleanPost($s);
127  // if html is allowed than we will not run it through process_db_input
128  // cuz are using PDO bindings and don't want to run escape on it
129  return $s;
130  } else {
132  }
133 }
134 
138 function cleanPost (&$s)
139 {
140  if (get_magic_quotes_gpc())
141  $s = stripslashes($s);
142 
143  $s = clear_xss ($s);
144 }
145 
146 function encode_post_text (&$s, $bEncodeSpecialChars = false, $bAutohyperlink = false)
147 {
148  global $gConf;
149 
150  if ('server' == $gConf['xsl_mode']) {
151 
152  } elseif ('client' == $gConf['xsl_mode']) {
153 
154  $s = str_replace (array('&amp;','&gt;','&lt;'), array('&','>','<'), $s);
155  }
156 
157  if ($bEncodeSpecialChars) {
158  $s = htmlspecialchars($s, ENT_COMPAT, 'UTF-8', false);
159  }
160 
161  if ($bAutohyperlink) {
162  //$s = preg_replace('@([\s\n\.,\!\?]{1})(https?://([-\w\.]+)+(:\d+)?([\w/_\-\.]*(\?[^<\s]+)?(#[^<\s]+)?)?)@', '$1<a target="_blank" href="$2">$2</a>', $s);
163  //$s = preg_replace('@(\w>|<br />|<br/>)(https?://([-\w\.]+)+(:\d+)?([\w/_\-\.]*(\?[^<\s]+)?(#[^<\s]+)?)?)@', '$1<a target="_blank" href="$2">$2</a>', $s);
164  $s = ch_linkify_html($s, 'class="' . CH_WSB_LINK_CLASS . '"');
165  }
166 
167  $s = "<![CDATA[{$s}]]>";
168 }
169 
171 {
172  preg_match_all('/%u([[:alnum:]]{4})/', $url, $a);
173 
174  foreach ($a[1] as $uniord) {
175  $dec = hexdec($uniord);
176  $utf = '';
177 
178  if ($dec < 128) {
179  $utf = chr($dec);
180  } else if ($dec < 2048) {
181  $utf = chr(192 + (($dec - ($dec % 64)) / 64));
182  $utf .= chr(128 + ($dec % 64));
183  } else {
184  $utf = chr(224 + (($dec - ($dec % 4096)) / 4096));
185  $utf .= chr(128 + ((($dec % 4096) - ($dec % 64)) / 64));
186  $utf .= chr(128 + ($dec % 64));
187  }
188 
189  $url = str_replace('%u'.$uniord, $utf, $url);
190  }
191 
192  return urldecode($url);
193 }
194 
195 function validate_unicode (&$s)
196 {
197 if (function_exists('iconv'))
198  $s = iconv("UTF-8","UTF-8//IGNORE",$s);
199 }
200 
202 {
203  global $gConf;
204 
205  if (!$gConf['params'])
206  getConfig ();
207 
208  if (!isset($gConf['params']) || !$gConf['params'][$sName])
209  return false;
210 
211  return $gConf['params'][$sName];
212 }
213 
214 function setConfigParam ($sName, $sValue)
215 {
216  global $gConf;
217 
218  if (!$gConf['params'])
219  getConfig ();
220 
221  $gConf['params'][$sName] = $sValue;
222 
223  $s = base64_encode(@serialize($gConf['params']));
224 
225  $f = fopen($gConf['dir']['config'], 'w');
226  if (!$f) return false;
227  if (!fwrite($f, $s)) {
228  fclose ($f);
229  return false;
230  }
231  fclose ($f);
232 
233  return true;
234 }
235 
236 function getConfig ()
237 {
238  global $gConf;
239 
240  $s = @file_get_contents($gConf['dir']['config']);
241  if (!$s) return false;
242 
243  $aParams = @unserialize(base64_decode($s));
244 
245  if ($aParams && is_array($aParams)) {
246  $gConf['params'] = $aParams;
247  return true;
248  }
249  return false;
250 }
251 
252 function echo_utf8 ($s)
253 {
254  header ('Content-Type: text/html; charset=UTF-8');
255  echo $s;
256 }
257 
258 function orca_mkdir_r($dirName, $rights=0755)
259 {
260  ch_mkdir_r($dirName, $rights);
261 }
262 
263 function orca_format_bytes ($i)
264 {
265  if ($i > 1024*1024)
266  return round($i/1024/1024, 1) . 'M';
267  elseif ($i > 1024)
268  return round($i/1024, 1) . 'K';
269  else
270  return $i . 'B';
271 }
272 
273 function orca_format_date ($iTimestamp)
274 {
275  return defineTimeInterval($iTimestamp);
276 }
277 
278 function orca_build_path ($s)
279 {
280  return substr($s, 0, 1) . '/' . substr($s, 0, 2) . '/' . substr($s, 0, 3) . '/';
281 }
282 
283 function orca_mb_replace ($sPattern, $sReplace, $s)
284 {
285  return preg_replace ($sPattern, $sReplace, $s);
286 }
287 
288 function orca_mb_len ($s)
289 {
290  if (function_exists('mb_strlen'))
291  return mb_strlen ($s);
292  else
293  return strlen ($s);
294 }
295 
296 function orca_mb_substr ($s, $iStart, $iLen)
297 {
298  if (function_exists('mb_substr'))
299  return mb_substr ($s, $iStart, $iLen);
300  else
301  return substr ($s, $iStart, $iLen);
302 }
process_db_input
process_db_input($sText, $iStripTags=0)
Definition: utils.inc.php:256
header
</code > Be careful enabling this directive if you have a redirector script that does not use the< code > Location</code > HTTP header
Definition: URI.MungeResources.txt:10
orca_mb_len
orca_mb_len($s)
Definition: util.inc.php:288
orca_mb_replace
orca_mb_replace($sPattern, $sReplace, $s)
Definition: util.inc.php:283
$f
global $f
Definition: callback.php:13
checkMagicQuotes
checkMagicQuotes()
Definition: util.inc.php:88
orca_format_date
orca_format_date($iTimestamp)
Definition: util.inc.php:273
defineTimeInterval
defineTimeInterval($iTime, $bAutoDateConvert=true, $bShort=false)
Definition: utils.inc.php:831
orca_mb_substr
orca_mb_substr($s, $iStart, $iLen)
Definition: util.inc.php:296
encode_post_text
encode_post_text(&$s, $bEncodeSpecialChars=false, $bAutohyperlink=false)
Definition: util.inc.php:146
transCheck
transCheck($xml, $xsl, $trans, $browser_transform=0)
Definition: util.inc.php:16
orca_build_path
orca_build_path($s)
Definition: util.inc.php:278
array2xml
array2xml($arr, $tag=false)
Definition: util.inc.php:60
addSlashesArray
addSlashesArray(&$a)
Definition: util.inc.php:100
unicode_urldecode
unicode_urldecode($url)
Definition: util.inc.php:170
php
CH_WSB_LINK_CLASS
const CH_WSB_LINK_CLASS
Definition: utils.inc.php:12
cleanPost
cleanPost(&$s)
Definition: util.inc.php:138
$url
URI MungeSecretKey $url
Definition: URI.MungeSecretKey.txt:14
orca_mkdir_r
orca_mkdir_r($dirName, $rights=0755)
Definition: util.inc.php:258
filter_to_db
filter_to_db($s, $iAllowHTML=0)
Definition: util.inc.php:123
exit
exit
Definition: cart.php:21
$_GET
$_GET['debug']
Definition: index.php:67
getConfig
getConfig()
Definition: util.inc.php:236
ch_linkify_html
ch_linkify_html($sHtmlOrig, $sAttrs='')
Definition: utils.inc.php:1901
orca_format_bytes
orca_format_bytes($i)
Definition: util.inc.php:263
global
if(!defined("GLOBAL_MODULE")) define("GLOBAL_MODULE" global
Definition: header.inc.php:25
setConfigParam
setConfigParam($sName, $sValue)
Definition: util.inc.php:214
ChXslTransform
Definition: ChXslTransform.php:19
echo_utf8
echo_utf8($s)
Definition: util.inc.php:252
validate_unicode
validate_unicode(&$s)
Definition: util.inc.php:195
CH_TAGS_STRIP
const CH_TAGS_STRIP
Definition: utils.inc.php:22
BXXSLTRANSFORM_SF
const BXXSLTRANSFORM_SF
Definition: ChXslTransform.php:12
$s
$s
Definition: embed.php:13
ch_mkdir_r
ch_mkdir_r($sDirName, $rights=0777)
Definition: utils.inc.php:1828
getConfigParam
getConfigParam($sName)
Definition: util.inc.php:201
$gConf
global $gConf
Definition: header.inc.php:8
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
prepare_to_db
prepare_to_db(&$s, $iAllowHTML=1)
Definition: util.inc.php:110
$sName
$sName
Definition: ChWsbAdminTools.php:853
clear_xss
clear_xss($val)
Definition: utils.inc.php:700