]>
src.bluestatic.org Git - isso.git/blob - functions.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Iris Studios Shared Object Framework [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
23 * Globalized Functions
30 * Globalized Functions
32 * This framework is a set of functions that are commonly used in most
35 * @author Iris Studios, Inc.
36 * @copyright Copyright ©2002 - [#]year[#], Iris Studios, Inc.
44 * Framework registry object
50 * The path that is used to set cookies
53 var $cookiepath = '/';
56 * The domain used for cookie setting
62 * The time it takes for a cookie to expire
68 * State of the current background colour during alternation
76 function __construct(&$registry)
78 $this->registry
=& $registry;
84 function Functions(&$registry)
86 $this->__construct($registry);
90 * Sets a cookie with a friendly interface
92 * @param string The name of the cookie
93 * @param string Value of the cookie
94 * @param bool Is the cookie permanent?
96 function cookie($name, $value = '', $sticky = true)
101 setcookie($name, $value, time() - (2 * $this->cookieexp
), $this->cookiepath
, $this->cookiedom
);
108 $expire = time() +
60 * 60 * 24 * 365;
112 $expire = time() +
$this->cookieexp
;
115 setcookie($name, $value, $expire, $this->cookiepath
, $this->cookiedom
);
120 * Alternate between two background colours
122 * @param string First CSS class name
123 * @param string Second CSS class name
125 function exec_swap_bg($class1 = 'alt1', $class2 = 'alt2')
129 $this->bgcolour
= ($count %
2) ? $class1 : $class2;
134 * Force-download a file by sending application/octetstream
136 * @param string The text of the file to be streamed
137 * @param string File name of the new file
138 * @param bool Whether or not to die after stringeaming the file
140 function download_file($file, $name, $exit = true)
142 if ($this->is_browser('ie') OR $this->is_browser('opera') OR $this->is_browser('safari'))
144 $mime = 'application/octetstream';
148 $mime = 'application/octet-stream';
151 header("Content-Type: $mime");
152 header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT');
153 header('Content-Disposition: attachment; filename="' . $name . '"');
154 header('Content-length: ' . strlen($file));
155 header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
156 header('Pragma: public');
167 * Verify that an email address is valid via regex
169 * @param string An email address
171 * @return bool Validity of the email address
173 function is_valid_email($email)
175 if (preg_match('#^[a-z0-9\.\-\+_]+?@(.*?\.)*?[a-z0-9\-_]+?\.[a-z]{2,4}$#i', $email))
186 * Check a browser's user agent against a pre-determined list
188 * @param string Browser name
189 * @param string The browser's version
191 * @param mixed False if there is no match, the version if there is
193 function is_browser($check, $version = '')
195 $useragent = strtolower($_SERVER['HTTP_USER_AGENT']);
199 // -------------------------------------------------------------------
201 // -------------------------------------------------------------------
202 # Opera/6.05 (Windows 98; U) [en]
203 # Mozilla/4.0 (compatible; MSIE 5.0; Windows 98) Opera 6.0 [en]
204 # Mozilla/5.0 (Windows 98; U) Opera 6.0 [en]
205 # Mozilla/4.0 (compatible; MSIE, 6.0; Windows 98) Opera 7.0 [en]
206 if (preg_match('#opera ([0-9\.]+)#', $useragent, $matches) !== false)
208 if (isset($matches[1]))
210 $browser['opera'] = $matches[1];
214 // -------------------------------------------------------------------
216 // -------------------------------------------------------------------
217 if (strpos($useragent, 'mac') !== false)
219 $browser['mac'] = true;
222 // -------------------------------------------------------------------
223 // -- Internet explorer
224 // -------------------------------------------------------------------
225 # Mozilla/4.0 (compatible; MSIE 6.0b; Windows NT 5.1; .NET CLR 1.0.2914)
226 # Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
227 if (preg_match('#msie ([0-9\.]+)#', $useragent, $matches) !== false AND !isset($browser['opera']))
229 if (isset($matches[1]))
231 $browser['ie'] = $matches[1];
235 // -------------------------------------------------------------------
237 // -------------------------------------------------------------------
238 # Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/125.4 (KHTML, like Gecko) Safari/125.9
239 if (preg_match('#safari/([0-9\.]+)#', $useragent, $matches) !== false)
241 if (isset($matches[1]))
243 $browser['safari'] = $matches[1];
247 // -------------------------------------------------------------------
249 // -------------------------------------------------------------------
250 # Mozilla/5.0 (compatible; Konqueror/3)
251 # Mozilla/5.0 (compatible; Konqueror/3.1; i686 Linux; 20020628)
252 if (preg_match('#konqueror/([0-9\.]+)#', $useragent, $matches) !== false)
254 if (isset($matches[1]))
256 $browser['konqueror'] = $matches[1];
260 // -------------------------------------------------------------------
262 // -------------------------------------------------------------------
263 # Mozilla/5.001 (windows; U; NT4.0; en-us) Gecko/25250101
264 # Mozilla/5.001 (Macintosh; N; PPC; ja) Gecko/25250101 MegaCorpBrowser/1.0 (MegaCorp, Inc.)
265 if (preg_match('#gecko/([0-9]+)#', $useragent, $matches) !== false AND !isset($browser['safari']))
267 if (isset($matches[1]))
269 $browser['mozilla'] = $matches[1];
272 // -------------------------------------------------------------------
274 // -------------------------------------------------------------------
275 # Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7) Gecko/20040628 Firefox/0.9.1
276 # Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4a) Gecko/20030423 Firebird Browser/0.6
277 if (preg_match('#(firebird|firefox)( browser)?/([0-9\.]+)#', $useragent, $matches) !== false)
279 if (isset($matches[3]))
281 $browser['firefox'] = $matches[3];
285 // -------------------------------------------------------------------
287 // -------------------------------------------------------------------
288 # Mozilla/5.0 (Macintosh; U; PPC; en-US; rv:0.9.4.1) Gecko/20020318 Netscape6/6.2.2
289 if (preg_match('#netscape([0-9].*?)?/([0-9\.]+)#', $useragent, $matches) !== false)
291 if (isset($matches[2]))
293 $browser['netscape'] = $matches[2];
297 // -------------------------------------------------------------------
299 // -------------------------------------------------------------------
300 # Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7) Gecko/20040623 Camino/0.8
301 if (preg_match('#camino/([0-9\.]+)#', $useragent, $matches) !== false)
303 if (isset($matches[1]))
305 $browser['camino'] = $matches[1];
310 if (isset($browser["$check"]))
314 if ($browser["$check"] >= $version)
316 return $browser["$check"];
325 return $browser["$check"];
335 * Generates a random string of random length (unless otherwise specified)
337 * @param integer Optional length
339 * @return string A random string
341 function rand($length = 0)
343 // custom high and lows
344 if (is_array($length))
346 $length = rand($length[0], $length[1]);
351 $length = rand(20, 65);
354 // Number of ints in our salt
355 $intcount = rand(0, intval($length / 2));
358 $charcount = $length - $intcount;
361 $upperchars = rand(1, intval($charcount / 2));
364 $lowerchars = $charcount - $upperchars;
367 for ($i = 0; $i < $intcount; $i++)
369 $string[] = rand(0, 9);
372 // Generate upper chars
373 for ($i = 0; $i < $upperchars; $i++)
375 $string[] = chr(rand(65, 90));
378 // Generate lower chars
379 for ($i = 0; $i < $lowerchars; $i++)
381 $string[] = chr(rand(97, 122));
384 // Randomly key the chars
385 foreach ($string AS $char)
388 $newstr["$rand"] = $char;
391 // Sort the chars by thier random assignment
396 foreach ($newstr AS $char)
405 * Sets the current array position to be the specified key. This function should be avoided on large arrays.
407 * @param array The array whose counter is to be updated
408 * @param mixed The key of the element of the array that the counter is to be set to
410 * @return mixed Return the elelment of the array that we just put the counter to
412 function array_set_current(&$array, $key)
415 while (current($array) !== false)
417 if (key($array) == $key)
423 return current($array);
427 * Calculates the microtime difference by taking a given microtime and subtracting it from the current one
429 * @param string The start microtime
431 * @return float Microtime difference
433 function fetch_microtime_diff($mtstart)
435 $mtend = microtime();
436 list ($starttime['micro'], $starttime['sec']) = explode(' ', $mtstart);
437 list ($endtime['micro'], $endtime['sec']) = explode(' ', $mtend);
438 return ($endtime['micro'] +
$endtime['sec']) - ($starttime['micro'] +
$starttime['sec']);
442 * Fetches the extension of a file by extracting everything after the last period
444 * @param string Filename
446 * @return string The extension for the specifid file name
448 function fetch_extension($filename)
450 return strval(end(explode('.', $filename)));
454 * Gets the maximum file size for attachment uploading, as specified by PHP. If no value is present, 10 MB (represented in bytes) is returned
456 * @return integer The maximum file upload size in bytes
458 function fetch_max_attachment_size()
460 if ($size = @ini_get('upload_max_filesize'))
462 if (preg_match('#[^0-9].#', $size))
468 return intval($size) * 1048576;
478 * Scans a specified directory path and returns an array of all the itmes in that directory. Directories found by this are end in a "/"
480 * @param string Path to scan
481 * @param bool Whether or not to recursively scan the directories encountered
482 * @param bool Ignore files beginning with a dot
483 * @param bool Ignore 'CVS' dirctories
485 * @return array A list of all the files in the specified path
487 function scandir($path, $recurse = true, $ignoredot = true, $ignorecvs = true, $basepath = '', $unset = 1)
496 if (substr($path, (strlen($path) - 1), 1) != '/')
501 if ($handle = opendir($path))
503 while (($file = readdir($handle)) !== false)
505 $isdot = ((substr($file, 0, 1) == '.') ? true : false);
506 $isdot = (($ignoredot) ? $isdot : true);
507 $iscvs = (($file == 'CVS') ? true : false);
508 $iscvs = (($ignorecvs) ? $iscvs : true);
509 if (!$isdot AND !$iscvs)
511 if (is_dir($path . $file))
513 $filelist["$basepath"][] = "$file/";
516 $this->scandir("$path$file", true, $ignoredot, $ignorecvs, "$basepath$file/", 0);
521 $filelist["$basepath"][] = $file;
531 /*=====================================================================*\
532 || ###################################################################
535 || ###################################################################
536 \*=====================================================================*/