Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * The Common Functions
- *
- * @package CloudCMS
- * @author Michael Beers
- */
- /**
- * Check the php version
- * @param $version
- */
- function is_php($version = '5.0.0')
- {
- static $_is_php;
- $version = (string)$version;
- if ( ! isset($_is_php[$version]))
- {
- $_is_php[$version] = (version_compare(PHP_VERSION, $version) < 0) ? FALSE : TRUE;
- }
- return $_is_php[$version];
- }
- /**
- * Check if file is really writable
- * @param $file
- */
- function is_really_writable($file)
- {
- if (DIRECTORY_SEPARATOR == '/' AND @ini_get("safe_mode") == FALSE)
- {
- return is_writable($file);
- }
- //Fix for windows servers
- if (is_dir($file))
- {
- $file = rtrim($file, '/').'/'.md5(mt_rand(1,100).mt_rand(1,100));
- if (($fp = @fopen($file, FOPEN_WRITE_CREATE)) === FALSE)
- {
- return FALSE;
- }
- fclose($fp);
- @chmod($file, DIR_WRITE_MODE);
- @unlink($file);
- return TRUE;
- }
- elseif ( ! is_file($file) OR ($fp = @fopen($file, FOPEN_WRITE_CREATE)) === FALSE)
- {
- return FALSE;
- }
- fclose($fp);
- return TRUE;
- }
- /**
- * Loading a class, this acts like a singleton
- * @param $class
- * @param $directory
- * @param $prefix
- */
- function &load_class($class, $directory = 'libraries', $prefix = 'CLOUD_')
- {
- static $_classes = array();
- if (isset($_classes[$class]))
- {
- return $_classes[$class];
- }
- $name = FALSE;
- foreach (array(BASEPATH, APPPATH) as $path)
- {
- if (file_exists($path.$directory.'/'.$class.EXT))
- {
- $name = $prefix.$class;
- if (class_exists($name) === FALSE)
- {
- require($path.$directory.'/'.$class.EXT);
- }
- break;
- }
- }
- if (file_exists(APPPATH.$directory.'/'.config_item('subclass_prefix').$class.EXT))
- {
- $name = config_item('subclass_prefix').$class;
- if (class_exists($name) === FALSE)
- {
- require(APPPATH.$directory.'/'.config_item('subclass_prefix').$class.EXT);
- }
- }
- if ($name === FALSE)
- {
- exit('Unable to locate the specified class: '.$class.EXT);
- }
- // Keep track of what we just loaded
- is_loaded($class);
- $_classes[$class] = new $name();
- return $_classes[$class];
- }
- /**
- * Track the loaded classes
- * @param $class
- */
- function is_loaded($class = '')
- {
- static $_is_loaded = array();
- if ($class != '')
- {
- $_is_loaded[strtolower($class)] = $class;
- }
- return $_is_loaded;
- }
- /**
- * Load the main config file
- * @param $replace
- */
- function &get_config($replace = array())
- {
- static $_config;
- if (isset($_config))
- {
- return $_config[0];
- }
- if ( ! defined('ENVIRONMENT') OR ! file_exists($file_path = APPPATH.'config/'.ENVIRONMENT.'/config'.EXT))
- {
- $file_path = APPPATH.'config/config'.EXT;
- }
- if ( ! file_exists($file_path))
- {
- exit('The configuration file does not exist.');
- }
- require($file_path);
- if ( ! isset($config) OR ! is_array($config))
- {
- exit('Your config file does not appear to be formatted correctly.');
- }
- if (count($replace) > 0)
- {
- foreach ($replace as $key => $val)
- {
- if (isset($config[$key]))
- {
- $config[$key] = $val;
- }
- }
- }
- return $_config[0] =& $config;
- }
- /**
- * Return a specified config file
- * @param $item
- */
- function config_item($item)
- {
- static $_config_item = array();
- if ( ! isset($_config_item[$item]))
- {
- $config =& get_config();
- if ( ! isset($config[$item]))
- {
- return FALSE;
- }
- $_config_item[$item] = $config[$item];
- }
- return $_config_item[$item];
- }
- /**
- * Error handler
- * @param $message
- * @param $status_code
- * @param $heading
- */
- function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered')
- {
- $_error =& load_class('Exceptions', 'core');
- echo $_error->show_error($heading, $message, 'error_general', $status_code);
- exit;
- }
- /**
- * 404 page handler
- * @param $page
- * @param $log_error
- */
- function show_404($page = '', $log_error = TRUE)
- {
- $_error =& load_class('Exceptions', 'core');
- $_error->show_404($page, $log_error);
- exit;
- }
- /**
- * Error logging interface
- * @param $level
- * @param $message
- * @param $php_error
- */
- function log_message($level = 'error', $message, $php_error = FALSE)
- {
- static $_log;
- if (config_item('log_threshold') == 0)
- {
- return;
- }
- $_log =& load_class('Log');
- $_log->write_log($level, $message, $php_error);
- }
- /**
- * Set HTTP Status headers
- * @param $code
- * @param $text
- */
- function set_status_header($code = 200, $text = '')
- {
- $stati = array(
- 200 => 'OK',
- 201 => 'Created',
- 202 => 'Accepted',
- 203 => 'Non-Authoritative Information',
- 204 => 'No Content',
- 205 => 'Reset Content',
- 206 => 'Partial Content',
- 300 => 'Multiple Choices',
- 301 => 'Moved Permanently',
- 302 => 'Found',
- 304 => 'Not Modified',
- 305 => 'Use Proxy',
- 307 => 'Temporary Redirect',
- 400 => 'Bad Request',
- 401 => 'Unauthorized',
- 403 => 'Forbidden',
- 404 => 'Not Found',
- 405 => 'Method Not Allowed',
- 406 => 'Not Acceptable',
- 407 => 'Proxy Authentication Required',
- 408 => 'Request Timeout',
- 409 => 'Conflict',
- 410 => 'Gone',
- 411 => 'Length Required',
- 412 => 'Precondition Failed',
- 413 => 'Request Entity Too Large',
- 414 => 'Request-URI Too Long',
- 415 => 'Unsupported Media Type',
- 416 => 'Requested Range Not Satisfiable',
- 417 => 'Expectation Failed',
- 500 => 'Internal Server Error',
- 501 => 'Not Implemented',
- 502 => 'Bad Gateway',
- 503 => 'Service Unavailable',
- 504 => 'Gateway Timeout',
- 505 => 'HTTP Version Not Supported'
- );
- if ($code == '' OR ! is_numeric($code))
- {
- show_error('Status codes must be numeric', 500);
- }
- if (isset($stati[$code]) AND $text == '')
- {
- $text = $stati[$code];
- }
- if ($text == '')
- {
- show_error('No status text available. Please check your status code number or supply your own message text.', 500);
- }
- $server_protocol = (isset($_SERVER['SERVER_PROTOCOL'])) ? $_SERVER['SERVER_PROTOCOL'] : FALSE;
- if (substr(php_sapi_name(), 0, 3) == 'cgi')
- {
- header("Status: {$code} {$text}", TRUE);
- }
- elseif ($server_protocol == 'HTTP/1.1' OR $server_protocol == 'HTTP/1.0')
- {
- header($server_protocol." {$code} {$text}", TRUE, $code);
- }
- else
- {
- header("HTTP/1.1 {$code} {$text}", TRUE, $code);
- }
- }
- /**
- * Exception handler
- * @param $severity
- * @param $message
- * @param $filepath
- * @param $line
- */
- function _exception_handler($severity, $message, $filepath, $line)
- {
- if ($severity == E_STRICT)
- {
- return;
- }
- $_error =& load_class('Exceptions', 'core');
- if (($severity & error_reporting()) == $severity)
- {
- $_error->show_php_error($severity, $message, $filepath, $line);
- }
- if (config_item('log_threshold') == 0)
- {
- return;
- }
- $_error->log_exception($severity, $message, $filepath, $line);
- }
- /**
- * Remove invisible characters
- * @param $str
- * @param $url_encoded
- */
- function remove_invisible_characters($str, $url_encoded = TRUE)
- {
- $non_displayables = array();
- if ($url_encoded)
- {
- $non_displayables[] = '/%0[0-8bcef]/'; // url encoded 00-08, 11, 12, 14, 15
- $non_displayables[] = '/%1[0-9a-f]/'; // url encoded 16-31
- }
- $non_displayables[] = '/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]+/S'; // 00-08, 11, 12, 14-31, 127
- do
- {
- $str = preg_replace($non_displayables, '', $str, -1, $count);
- }
- while ($count);
- return $str;
- }
Advertisement
Add Comment
Please, Sign In to add comment