123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_Output {
-
- public $final_output;
-
- public $cache_expiration = 0;
-
- public $headers = array();
-
- public $mimes = array();
-
- protected $mime_type = 'text/html';
-
- public $enable_profiler = FALSE;
-
- protected $_zlib_oc = FALSE;
-
- protected $_compress_output = FALSE;
-
- protected $_profiler_sections = array();
-
- public $parse_exec_vars = TRUE;
-
- protected static $func_overload;
-
- public function __construct()
- {
- $this->_zlib_oc = (bool) ini_get('zlib.output_compression');
- $this->_compress_output = (
- $this->_zlib_oc === FALSE
- && config_item('compress_output') === TRUE
- && extension_loaded('zlib')
- );
- isset(self::$func_overload) OR self::$func_overload = (extension_loaded('mbstring') && ini_get('mbstring.func_overload'));
-
- $this->mimes =& get_mimes();
- log_message('info', 'Output Class Initialized');
- }
-
-
- public function get_output()
- {
- return $this->final_output;
- }
-
-
- public function set_output($output)
- {
- $this->final_output = $output;
- return $this;
- }
-
-
- public function append_output($output)
- {
- $this->final_output .= $output;
- return $this;
- }
-
-
- public function set_header($header, $replace = TRUE)
- {
-
-
-
-
- if ($this->_zlib_oc && strncasecmp($header, 'content-length', 14) === 0)
- {
- return $this;
- }
- $this->headers[] = array($header, $replace);
- return $this;
- }
-
-
- public function set_content_type($mime_type, $charset = NULL)
- {
- if (strpos($mime_type, '/') === FALSE)
- {
- $extension = ltrim($mime_type, '.');
-
- if (isset($this->mimes[$extension]))
- {
- $mime_type =& $this->mimes[$extension];
- if (is_array($mime_type))
- {
- $mime_type = current($mime_type);
- }
- }
- }
- $this->mime_type = $mime_type;
- if (empty($charset))
- {
- $charset = config_item('charset');
- }
- $header = 'Content-Type: '.$mime_type
- .(empty($charset) ? '' : '; charset='.$charset);
- $this->headers[] = array($header, TRUE);
- return $this;
- }
-
-
- public function get_content_type()
- {
- for ($i = 0, $c = count($this->headers); $i < $c; $i++)
- {
- if (sscanf($this->headers[$i][0], 'Content-Type: %[^;]', $content_type) === 1)
- {
- return $content_type;
- }
- }
- return 'text/html';
- }
-
-
- public function get_header($header)
- {
-
- $headers = array_merge(
-
- array_map('array_shift', $this->headers),
- headers_list()
- );
- if (empty($headers) OR empty($header))
- {
- return NULL;
- }
-
- for ($c = count($headers) - 1; $c > -1; $c--)
- {
- if (strncasecmp($header, $headers[$c], $l = self::strlen($header)) === 0)
- {
- return trim(self::substr($headers[$c], $l+1));
- }
- }
- return NULL;
- }
-
-
- public function set_status_header($code = 200, $text = '')
- {
- set_status_header($code, $text);
- return $this;
- }
-
-
- public function enable_profiler($val = TRUE)
- {
- $this->enable_profiler = is_bool($val) ? $val : TRUE;
- return $this;
- }
-
-
- public function set_profiler_sections($sections)
- {
- if (isset($sections['query_toggle_count']))
- {
- $this->_profiler_sections['query_toggle_count'] = (int) $sections['query_toggle_count'];
- unset($sections['query_toggle_count']);
- }
- foreach ($sections as $section => $enable)
- {
- $this->_profiler_sections[$section] = ($enable !== FALSE);
- }
- return $this;
- }
-
-
- public function cache($time)
- {
- $this->cache_expiration = is_numeric($time) ? $time : 0;
- return $this;
- }
-
-
- public function _display($output = '')
- {
-
-
-
- $BM =& load_class('Benchmark', 'core');
- $CFG =& load_class('Config', 'core');
-
- if (class_exists('CI_Controller', FALSE))
- {
- $CI =& get_instance();
- }
-
-
- if ($output === '')
- {
- $output =& $this->final_output;
- }
-
-
-
-
- if ($this->cache_expiration > 0 && isset($CI) && ! method_exists($CI, '_output'))
- {
- $this->_write_cache($output);
- }
-
-
-
- $elapsed = $BM->elapsed_time('total_execution_time_start', 'total_execution_time_end');
- if ($this->parse_exec_vars === TRUE)
- {
- $memory = round(memory_get_usage() / 1024 / 1024, 2).'MB';
- $output = str_replace(array('{elapsed_time}', '{memory_usage}'), array($elapsed, $memory), $output);
- }
-
-
- if (isset($CI)
- && $this->_compress_output === TRUE
- && isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== FALSE)
- {
- ob_start('ob_gzhandler');
- }
-
-
- if (count($this->headers) > 0)
- {
- foreach ($this->headers as $header)
- {
- @header($header[0], $header[1]);
- }
- }
-
-
-
-
- if ( ! isset($CI))
- {
- if ($this->_compress_output === TRUE)
- {
- if (isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== FALSE)
- {
- header('Content-Encoding: gzip');
- header('Content-Length: '.self::strlen($output));
- }
- else
- {
-
-
- $output = gzinflate(self::substr($output, 10, -8));
- }
- }
- echo $output;
- log_message('info', 'Final output sent to browser');
- log_message('debug', 'Total execution time: '.$elapsed);
- return;
- }
-
-
-
- if ($this->enable_profiler === TRUE)
- {
- $CI->load->library('profiler');
- if ( ! empty($this->_profiler_sections))
- {
- $CI->profiler->set_sections($this->_profiler_sections);
- }
-
-
- $output = preg_replace('|</body>.*?</html>|is', '', $output, -1, $count).$CI->profiler->run();
- if ($count > 0)
- {
- $output .= '</body></html>';
- }
- }
-
-
- if (method_exists($CI, '_output'))
- {
- $CI->_output($output);
- }
- else
- {
- echo $output;
- }
- log_message('info', 'Final output sent to browser');
- log_message('debug', 'Total execution time: '.$elapsed);
- }
-
-
- public function _write_cache($output)
- {
- $CI =& get_instance();
- $path = $CI->config->item('cache_path');
- $cache_path = ($path === '') ? APPPATH.'cache/' : $path;
- if ( ! is_dir($cache_path) OR ! is_really_writable($cache_path))
- {
- log_message('error', 'Unable to write cache file: '.$cache_path);
- return;
- }
- $uri = $CI->config->item('base_url')
- .$CI->config->item('index_page')
- .$CI->uri->uri_string();
- if (($cache_query_string = $CI->config->item('cache_query_string')) && ! empty($_SERVER['QUERY_STRING']))
- {
- if (is_array($cache_query_string))
- {
- $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
- }
- else
- {
- $uri .= '?'.$_SERVER['QUERY_STRING'];
- }
- }
- $cache_path .= md5($uri);
- if ( ! $fp = @fopen($cache_path, 'w+b'))
- {
- log_message('error', 'Unable to write cache file: '.$cache_path);
- return;
- }
- if ( ! flock($fp, LOCK_EX))
- {
- log_message('error', 'Unable to secure a file lock for file at: '.$cache_path);
- fclose($fp);
- return;
- }
-
-
-
- if ($this->_compress_output === TRUE)
- {
- $output = gzencode($output);
- if ($this->get_header('content-type') === NULL)
- {
- $this->set_content_type($this->mime_type);
- }
- }
- $expire = time() + ($this->cache_expiration * 60);
-
- $cache_info = serialize(array(
- 'expire' => $expire,
- 'headers' => $this->headers
- ));
- $output = $cache_info.'ENDCI--->'.$output;
- for ($written = 0, $length = self::strlen($output); $written < $length; $written += $result)
- {
- if (($result = fwrite($fp, self::substr($output, $written))) === FALSE)
- {
- break;
- }
- }
- flock($fp, LOCK_UN);
- fclose($fp);
- if ( ! is_int($result))
- {
- @unlink($cache_path);
- log_message('error', 'Unable to write the complete cache content at: '.$cache_path);
- return;
- }
- chmod($cache_path, 0640);
- log_message('debug', 'Cache file written: '.$cache_path);
-
- $this->set_cache_header($_SERVER['REQUEST_TIME'], $expire);
- }
-
-
- public function _display_cache(&$CFG, &$URI)
- {
- $cache_path = ($CFG->item('cache_path') === '') ? APPPATH.'cache/' : $CFG->item('cache_path');
-
- $uri = $CFG->item('base_url').$CFG->item('index_page').$URI->uri_string;
- if (($cache_query_string = $CFG->item('cache_query_string')) && ! empty($_SERVER['QUERY_STRING']))
- {
- if (is_array($cache_query_string))
- {
- $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
- }
- else
- {
- $uri .= '?'.$_SERVER['QUERY_STRING'];
- }
- }
- $filepath = $cache_path.md5($uri);
- if ( ! file_exists($filepath) OR ! $fp = @fopen($filepath, 'rb'))
- {
- return FALSE;
- }
- flock($fp, LOCK_SH);
- $cache = (filesize($filepath) > 0) ? fread($fp, filesize($filepath)) : '';
- flock($fp, LOCK_UN);
- fclose($fp);
-
- if ( ! preg_match('/^(.*)ENDCI--->/', $cache, $match))
- {
- return FALSE;
- }
- $cache_info = unserialize($match[1]);
- $expire = $cache_info['expire'];
- $last_modified = filemtime($filepath);
-
- if ($_SERVER['REQUEST_TIME'] >= $expire && is_really_writable($cache_path))
- {
-
- @unlink($filepath);
- log_message('debug', 'Cache file has expired. File deleted.');
- return FALSE;
- }
-
- $this->set_cache_header($last_modified, $expire);
-
- foreach ($cache_info['headers'] as $header)
- {
- $this->set_header($header[0], $header[1]);
- }
-
- $this->_display(self::substr($cache, self::strlen($match[0])));
- log_message('debug', 'Cache file is current. Sending it to browser.');
- return TRUE;
- }
-
-
- public function delete_cache($uri = '')
- {
- $CI =& get_instance();
- $cache_path = $CI->config->item('cache_path');
- if ($cache_path === '')
- {
- $cache_path = APPPATH.'cache/';
- }
- if ( ! is_dir($cache_path))
- {
- log_message('error', 'Unable to find cache path: '.$cache_path);
- return FALSE;
- }
- if (empty($uri))
- {
- $uri = $CI->uri->uri_string();
- if (($cache_query_string = $CI->config->item('cache_query_string')) && ! empty($_SERVER['QUERY_STRING']))
- {
- if (is_array($cache_query_string))
- {
- $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
- }
- else
- {
- $uri .= '?'.$_SERVER['QUERY_STRING'];
- }
- }
- }
- $cache_path .= md5($CI->config->item('base_url').$CI->config->item('index_page').ltrim($uri, '/'));
- if ( ! @unlink($cache_path))
- {
- log_message('error', 'Unable to delete cache file for '.$uri);
- return FALSE;
- }
- return TRUE;
- }
-
-
- public function set_cache_header($last_modified, $expiration)
- {
- $max_age = $expiration - $_SERVER['REQUEST_TIME'];
- if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && $last_modified <= strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']))
- {
- $this->set_status_header(304);
- exit;
- }
- header('Pragma: public');
- header('Cache-Control: max-age='.$max_age.', public');
- header('Expires: '.gmdate('D, d M Y H:i:s', $expiration).' GMT');
- header('Last-modified: '.gmdate('D, d M Y H:i:s', $last_modified).' GMT');
- }
-
-
- protected static function strlen($str)
- {
- return (self::$func_overload)
- ? mb_strlen($str, '8bit')
- : strlen($str);
- }
-
-
- protected static function substr($str, $start, $length = NULL)
- {
- if (self::$func_overload)
- {
-
-
- isset($length) OR $length = ($start >= 0 ? self::strlen($str) - $start : -$start);
- return mb_substr($str, $start, $length, '8bit');
- }
- return isset($length)
- ? substr($str, $start, $length)
- : substr($str, $start);
- }
- }
|