]>
src.bluestatic.org Git - isso.git/blob - kernel.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 * Iris Studios Shared Object Framework Kernel
29 if (!function_exists('version_compare'))
31 trigger_error('You need PHP version 4.1.0 or newer to run ISSO', E_USER_ERROR
);
35 if (version_compare(PHP_VERSION
, '5.0.0', '>='))
37 if (ini_get('error_reporting') & E_NOTICE
)
39 error_reporting(ini_get('error_reporting') - E_NOTICE
);
41 if (ini_get('error_reporting') & E_USER_NOTICE
)
43 error_reporting(ini_get('error_reporting') - E_USER_NOTICE
);
47 $oldlevel = ini_get('error_reporting');
48 $newlevel = $oldlevel;
49 $levels = array(E_ERROR
=> E_USER_ERROR
, E_WARNING
=> E_USER_WARNING
, E_NOTICE
=> E_USER_NOTICE
);
50 foreach ($levels AS $php => $isso)
54 if (!($oldlevel & $isso))
61 if ($oldlevel & $isso)
67 error_reporting($newlevel);
69 if ((bool)ini_get('register_globals') === true)
71 $superglobals = array('_GET', '_COOKIE', '_FILES', '_POST', '_SERVER', '_ENV');
72 foreach ($superglobals AS $global)
74 if (is_array(${$global}))
76 foreach (${$global} AS $_key => $_val)
88 * Input cleaning type constant
93 define('TYPE_INT', 1);
98 define('TYPE_UINT', 2);
103 define('TYPE_FLOAT', 4);
108 define('TYPE_BOOL', 8);
113 define('TYPE_STR', 16);
116 * String - deliberate unclean
118 define('TYPE_STRUN', 32);
121 * No cleaning - here for use in API
123 define('TYPE_NOCLEAN', 64);
127 * Iris Studios Shared Object Framework (ISSO)
129 * This framework allows a common backend to be used amongst all Iris
130 * Studios applications and is built to be abstract and flexible.
131 * The base framework handles all loading and module management.
133 * @author Iris Studios, Inc.
134 * @copyright Copyright ©2002 - [#]year[#], Iris Studios, Inc.
135 * @version $Revision$
139 class Shared_Object_Framework
145 var $version = '[#]version[#]';
148 * Location of ISSO, used for internal linking
151 var $sourcepath = '';
154 * Path of the current application
160 * Web path used to get the web location of the installation of ISSO; only used for Printer module
166 * Name of the current application
169 var $application = '';
172 * Version of the current application
175 var $appversion = '';
178 * Whether debug mode is on or off
184 * List of all active debug messages
187 var $debuginfo = array();
190 * List of loaded modules
193 var $modules = array();
196 * An array of sanitized variables that have been cleaned for HTML tag openers and double quotes
202 * If we are running with magic_quotes_gpc on or off
205 var $magicquotes = 0;
207 // ###################################################################
211 function __construct()
214 set_error_handler(array(&$this, '_error_handler'));
217 $this->magicquotes
= get_magic_quotes_gpc();
218 set_magic_quotes_runtime(0);
220 // start input sanitize using variable_order GPC
221 if (!defined('ISSO_NO_INPUT_SANITIZE'))
223 $this->exec_sanitize_data();
226 if (defined('ISSO_CHECK_POST_REFERER'))
228 $this->exec_referer_check();
231 $GLOBALS['isso:null-framework'] = null;
234 // ###################################################################
236 * (PHP 4) Constructor
238 function Shared_Object_Framework()
240 $this->__construct();
243 // ###################################################################
245 * Prepares a path for being set as the sourcepath
249 * @param string Source path or URL
251 * @return string Prepared source path
253 function fetch_sourcepath($source)
255 if (substr($source, strlen($source) - 1) != DIRECTORY_SEPARATOR
)
257 $source .= DIRECTORY_SEPARATOR
;
262 // ###################################################################
264 * Loads a framework module
268 * @param string Name of the framework file to load
269 * @param string Internal variable to initialize as; to not instantiate (just require) leave it as NULL
270 * @param bool Globalize the internal variable?
272 * @return object Instantiated instance
274 function &load($framework, $asobject, $globalize = false)
276 // set the object interlock
277 if (!method_exists($GLOBALS['isso:null-framework'], 'load'))
279 $GLOBALS['isso:null-framework'] =& $this;
282 if ($this->is_loaded($framework))
284 return $this->modules
["$framework"];
287 if ($this->sourcepath == '')
289 trigger_error('Invalid sourcepath specified', E_USER_ERROR);
292 if (file_exists($this->sourcepath . $framework . '.php'))
294 require_once($this->sourcepath . $framework . '.php');
298 trigger_error('Could not find the framework ' . $this->sourcepath . $framework . '.php', E_USER_ERROR);
301 if ($asobject === null)
306 if (isset($this->$asobject))
308 trigger_error('Cannot instantiate framework `' . $framework . '` into `' . $asobject . '`', E_USER_ERROR);
311 $this->$asobject = new $framework($this);
313 $this->modules["$framework"] =& $this->$asobject;
317 $GLOBALS["$asobject"] =& $this->$asobject;
320 return $this->$asobject;
323 // ###################################################################
325 * Prints a list of all currently loaded framework modules
329 * @param bool Return the data as an array?
331 * @return mixed HTML output or an array of loaded modules
333 function show_modules($return = false)
335 foreach ($this->modules AS $object)
337 $modules[] = get_class($object);
346 $output = "\n\n
<ul
>\n\t<li
>";
347 $output .= implode("</li
>\n\t<li
>", $modules);
348 $output .= "</li
>\n</ul
>\n\n";
349 $this->message('Loaded Modules', $output, 1);
353 // ###################################################################
355 * Verifies to see if a framework has been loaded
359 * @param string Framework name
361 * @return bool Whether or not the framework has been loaded
363 function is_loaded($framework)
365 if (isset($this->modules["$framework"]))
375 // ###################################################################
377 * Prints an ISSO message
381 * @param string The title of the message
382 * @param string The content of the message
383 * @param integer Type of message to be printed
384 * @param bool Return the output?
385 * @param bool Show the debug stack?
387 * @return mixed Output or null
389 function message($title, $message, $type, $return = false, $stack = true)
414 $backtrace = debug_backtrace();
415 unset($backtrace[0]);
417 $output = "\n<br />\n<table cellpadding=\"4\" cellspacing=\"1\" border=\"0\" width=\"500\" style=\"background-color: $color; color: black; font-family: Verdana, sans-serif; font-size: 12px;\">";
418 $output .= "\n<tr style=\"color: $font; text-align: left\">\n\t<td><strong>$prefix: $title</strong></td>\n</tr>";
419 $output .= "\n<tr style=\"background-color: #FFFFFF; text-align: left\">\n\t<td>$message</td>\n</tr>";
420 $output .= (($stack AND $GLOBALS['isso:null-framework']->debug
) ? "\n<tr style=\"background-color: #FFFFFF; text-align: left\">\n\t<td><strong>Debug Stack:</strong> <pre>" . print_r($backtrace, true) . "</pre></td>\n</tr>" : '');
421 $output .= "\n</table>\n<br />\n";
433 // ###################################################################
435 * Custom error handler for ISSO; only handle E_WARNING, E_NOTICE,
436 * E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE
440 * @param integer Error number
441 * @param string Error message string
442 * @param string File that contains the error
443 * @param string The line number of the error
444 * @param string The active symbol table at which point the error occurred
446 function _error_handler($errno, $errstr, $errfile, $errline)
454 if (!(ini_get('error_reporting') & E_USER_ERROR
))
464 if (!(ini_get('error_reporting') & E_USER_WARNING
) AND !(ini_get('error_reporting') & E_WARNING
))
475 if (!(ini_get('error_reporting') & E_USER_NOTICE
) AND !(ini_get('error_reporting') & E_NOTICE
))
482 $errstr .= " in <strong>$errfile</strong> on line <strong>$errline</strong>";
484 $errstr = str_replace(array(getcwd(), dirname(getcwd())), '', $errstr);
486 $this->message($title, $errstr, $level);
488 if ($errno == E_USER_ERROR
)
494 // ###################################################################
496 * Creates a table that explains the error reporting levels and their
501 function explain_error_reporting()
504 'E_ERROR' => E_ERROR
,
505 'E_WARNING' => E_WARNING
,
506 'E_PARSE' => E_PARSE
,
507 'E_NOTICE' => E_NOTICE
,
508 'E_CORE_ERROR' => E_CORE_ERROR
,
509 'E_CORE_WARNING' => E_CORE_WARNING
,
510 'E_COMPILE_ERROR' => 64,
511 'E_COMPILE_WARNING' => 128,
512 'E_USER_ERROR' => E_USER_ERROR
,
513 'E_USER_WARNING' => E_USER_WARNING
,
514 'E_USER_NOTICE' => E_USER_NOTICE
,
519 $table = '<table cellspacing="0" cellpadding="2" border="0">';
521 foreach ($levels AS $name => $value)
525 <td>' . $name . '</td>
526 <td>' . (ini_get('error_reporting') & $value) . '</td>
533 $this->message('Error Reporting', $table, 1);
536 // ###################################################################
538 * Logs a debug message for verbose output
542 * @param string Message
544 function debug($message)
546 $this->debuginfo
[] = $message;
549 // ###################################################################
551 * Recursive XSS cleaner
555 * @param mixed Unsanitized REQUEST data
557 * @return mixed Sanitized data
559 function _sanitize_input_recursive($data)
561 foreach ($data AS $key => $value)
563 if (is_array($value))
565 $data["$key"] = $this->_sanitize_input_recursive($value);
569 $data["$key"] = $this->sanitize($value);
575 // ###################################################################
577 * Simple way to protect against HTML attacks with Unicode support
581 * @param string Unsanitzed text
583 * @return string Properly protected text that only encodes potential threats
585 function sanitize($text)
587 if ($this->magicquotes
)
589 return str_replace(array('<', '>', '\"', '"'), array('<', '>', '"', '"'), $text);
593 return str_replace(array('<', '>', '"'), array('<', '>', '"'), $text);
597 // ###################################################################
599 * Unicode-safe entity encoding system; similar to sanitize()
603 * @param string Unsanitized text
605 * @return string Unicode-safe sanitized text with entities preserved
607 function entity_encode($text)
609 $text = str_replace('&', '&', $text);
610 $text = $this->sanitize($text);
614 // ###################################################################
616 * Takes text that has been processed for HTML and unsanitizes it
620 * @param string Text that needs to be turned back into HTML
622 * @return string Unsanitized text
624 function unsanitize($text)
626 return str_replace(array('<', '>', '"'), array('<', '>', '"'), $text);
629 // ###################################################################
631 * Smart addslashes() that only applies itself it the Magic Quotes GPC
632 * is off. This should only be run on database query values.
636 * @param string Some string
637 * @param bool If the data is binary; if so it'll be run through DB::escape_stringing()
638 * @param bool Force magic quotes to be off
640 * @return string String that has slashes added
642 function escape($str, $binary = false, $force = true)
644 if ($this->magicquotes
AND !$force)
646 if (isset($this->db
) AND $binary)
648 if (is_resource($this->db
->link_id
))
650 return $this->db
->escape_string(str_replace(array("\'", '\"'), array("'", '"'), $str));
657 if (isset($this->db
) AND $binary)
659 if (is_resource($this->db
->link_id
))
661 return $this->db
->escape_string($str);
664 return addslashes($str);
668 // ###################################################################
670 * Runs through all of the input data and sanitizes it.
674 function exec_sanitize_data()
676 $this->in
= $this->_sanitize_input_recursive(array_merge($_GET, $_POST, $_COOKIE));
679 // ###################################################################
681 * Sanitize function for something other than a string (which
682 * everything is sanitized for if you use exec_sanitize_data(). Cleaned
683 * data is placed back into $isso->in; this makes it so you don't have
684 * to constantly intval() [etc.] data.
688 * @param array Array of elements to clean as varname => type
690 function input_clean_array($vars)
692 foreach ($vars AS $varname => $type)
694 $this->input_clean($varname, $type);
698 // ###################################################################
700 * Sanitize function that does a single variable as oppoesd to an array
701 * (see input_clean_array() for more details)
705 * @param string Variable name in $isso->in[]
706 * @param integer Sanitization type constant
708 function input_clean($varname, $type)
710 if (isset($this->in
["$varname"]))
712 $this->in["$varname"] = $this->clean($this->in
["$varname"], $type);
716 $this->in["$varname"] = null;
719 return $this->in
["$varname"];
722 // ###################################################################
724 * Cleaning function that does the work for input_clean(); this is
725 * moved here so it can be used to clean things that aren't in
731 * @param integer Sanitization type constant
733 * @return mixed Cleaned data
735 function clean($value, $type)
737 if ($type == TYPE_INT)
739 $value = intval($value);
741 else if ($type == TYPE_UINT)
743 $value = abs(intval($value));
745 else if ($type == TYPE_FLOAT)
747 $value = floatval($value);
749 else if ($type == TYPE_BOOL)
751 $value = (bool)$value;
753 else if ($type == TYPE_STR)
757 else if ($type == TYPE_STRUN)
759 $value = $this->unsanitize($value);
761 else if ($type == TYPE_NOCLEAN)
767 trigger_error('Invalid clean type `' . $type . '` specified', E_USER_ERROR);
773 // ###################################################################
775 * Checks to see if a POST refer is actually from us
779 function exec_referer_check()
781 if ($_SERVER['REQUEST_METHOD'] == 'POST')
783 $host = ($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_ENV['HTTP_HOST'];
785 if ($host AND $_SERVER['HTTP_REFERER'])
787 $parts = parse_url($_SERVER['HTTP_REFERER']);
788 $ourhost = $parts['host'] . (($parts['port']) ? ":$parts[port
]" : '');
790 if ($ourhost != $host)
792 trigger_error('No external hosts are allowed to POST to this application', E_USER_ERROR);
794 $this->debug('remote post check = ok');
798 $this->debug('remote post check = FAILED');
803 // ###################################################################
805 * Constructs a debug information box that contains various debugging
810 * @param bool Show template information?
812 * @return string Debugging block
814 function construct_debug_block($dotemplates)
825 // both template and template_fs are viable, so we need to determine the right one
826 if ($this->is_loaded('template'))
828 $tpl_obj =& $this->modules['template'];
830 else if ($this->is_loaded('template_fs'))
832 $tpl_obj =& $this->modules['template_fs'];
841 foreach ($tpl_obj->usage AS $name => $count)
843 if (in_array($name, $tpl_obj->uncached))
845 $optlist[] = $name . '[' . $count . ']';
847 $usage[] = $name . " ($count)";
850 $sizeof = sizeof($tpl_obj->uncached);
853 $debug .= "\n\t
<li
><strong style
=\"color
: red\"
>Uncached
Template(s
):</strong
> $sizeof ( " . implode(' ', $optlist) . " )</li
>";
858 $scinfo = 'Not Under Source Control';
861 $scinfo = constant('SVN');
863 if ($test == '$' . 'Id: $')
865 $scinfo = 'Not Under Source Control';
869 $scinfo = preg_replace('#\$' . '(Head)?URL: (.+?) \$#e', "end(explode('/', '\\2'))", $scinfo);
870 $scinfo = preg_replace('#\$' . '(LastModified)?Revision: (.+?) \$#', 'SVN \\2', $scinfo);
871 $scinfo = preg_replace('#\$' . 'Id: (.+?) ([0-9].+?) [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}(.+?) (.+?) \$#', '\\1 - SVN \\2', $scinfo);
875 $scinfo = trim($scinfo);
876 $debug .= "\n\t
<li
><strong
>Source Control
:</strong
> $scinfo</li
>";
879 if (is_object($this->modules['db_mysql']))
881 $debug .= "\n\t
<li
><strong
>Total Queries
:</strong
> " . sizeof($this->modules['db_mysql']->history) . " (<a href
=\"" . $this->sanitize($_SERVER['REQUEST_URI']) . ((strpos($_SERVER['REQUEST_URI'], '?') !== false) ? '&query=1' : '?query=1') . "\"
>?</a
>)</li
>";
884 // total execution time
885 if (defined('ISSO_MT_START'))
887 $this->load('functions', 'functions');
888 $debug .= "\n\t
<li
><strong
>Total Execution Time
:</strong
> " . round($this->modules['functions']->fetch_microtime_diff(ISSO_MT_START), 10) . "</li
>";
892 $debug .= "\n\t
<li
>\n\t\t<select
>\n\t\t\t<option
>Debug
Notices (" . sizeof($this->debuginfo) . ")</option
>";
893 foreach ((array)$this->debuginfo AS $msg)
895 $debug .= "\n\t\t\t
<option
>--- $msg</option
>";
897 $debug .= "\n\t\t
</select
>\n\t</li
>";
900 $modules = $this->show_modules(true);
901 $debug .= "\n\t
<li
>\n\t\t<select
>\n\t\t\t<option
>Loaded
Modules (" . sizeof($modules) . ")</option
>";
902 foreach ($modules AS $mod)
904 $debug .= "\n\t\t\t
<option
>--- $mod</option
>";
906 $debug .= "\n\t\t
</select
>\n\t</li
>";
911 $debug .= "\n\t
<li
>\n\t\t<select
>\n\t\t\t<option
>Template
Usage (" . array_sum($tpl_obj->usage) . ")</option
>";
912 foreach ($usage AS $tpl)
914 $debug .= "\n\t\t\t
<option
>--- $tpl</option
>";
916 $debug .= "\n\t\t
</select
>\n\t</li
>";
921 $debug = "\n\n
<!-- dev debug
-->\n<div align
=\"center\"
>\n\n<hr
/>\n" . $this->message('Debug Information', $debug, 1, true, false) . "\n
</div
>\n<!-- / dev debug
-->\n\n";
928 /*=====================================================================*\
929 || ###################################################################
932 || ###################################################################
933 \*=====================================================================*/