Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 1 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Greg Aker | 741de1c | 2010-11-10 14:52:57 -0600 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.1.6 or newer |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 6 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 7 | * NOTICE OF LICENSE |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * This source file is subject to the Open Software License (OSL 3.0) that is |
| 12 | * bundled with this package in the files license.txt / license.rst. It is |
| 13 | * also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/OSL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 19 | * @package CodeIgniter |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
| 27 | |
| 28 | // ------------------------------------------------------------------------ |
| 29 | |
| 30 | /** |
| 31 | * Output Class |
| 32 | * |
| 33 | * Responsible for sending final output to browser |
| 34 | * |
| 35 | * @package CodeIgniter |
| 36 | * @subpackage Libraries |
| 37 | * @category Output |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 38 | * @author EllisLab Dev Team |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 39 | * @link http://codeigniter.com/user_guide/libraries/output.html |
| 40 | */ |
| 41 | class CI_Output { |
| 42 | |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 43 | /** |
| 44 | * Current output string |
| 45 | * |
| 46 | * @var string |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 47 | */ |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 48 | protected $final_output; |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 49 | /** |
| 50 | * Cache expiration time |
| 51 | * |
| 52 | * @var int |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 53 | */ |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 54 | protected $cache_expiration = 0; |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 55 | /** |
| 56 | * List of server headers |
| 57 | * |
| 58 | * @var array |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 59 | */ |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 60 | protected $headers = array(); |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 61 | /** |
| 62 | * List of mime types |
| 63 | * |
| 64 | * @var array |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 65 | */ |
| 66 | protected $mime_types = array(); |
| 67 | /** |
Thor (atiredmachine) | 242115c | 2012-01-24 23:08:11 -0800 | [diff] [blame] | 68 | * Mime-type for the current page |
| 69 | * |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 70 | * @var string |
Thor (atiredmachine) | 242115c | 2012-01-24 23:08:11 -0800 | [diff] [blame] | 71 | */ |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 72 | protected $mime_type = 'text/html'; |
Thor (atiredmachine) | 242115c | 2012-01-24 23:08:11 -0800 | [diff] [blame] | 73 | /** |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 74 | * Determines wether profiler is enabled |
| 75 | * |
| 76 | * @var book |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 77 | */ |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 78 | protected $enable_profiler = FALSE; |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 79 | /** |
| 80 | * Determines if output compression is enabled |
| 81 | * |
| 82 | * @var bool |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 83 | */ |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 84 | protected $_zlib_oc = FALSE; |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 85 | /** |
| 86 | * List of profiler sections |
| 87 | * |
| 88 | * @var array |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 89 | */ |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 90 | protected $_profiler_sections = array(); |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 91 | /** |
| 92 | * Whether or not to parse variables like {elapsed_time} and {memory_usage} |
| 93 | * |
| 94 | * @var bool |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 95 | */ |
| 96 | protected $parse_exec_vars = TRUE; |
Derek Jones | ee71c80 | 2010-03-10 10:05:05 -0600 | [diff] [blame] | 97 | |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 98 | public function __construct() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 99 | { |
Pascal Kriete | 676e1cd | 2010-04-09 21:16:16 +0200 | [diff] [blame] | 100 | $this->_zlib_oc = @ini_get('zlib.output_compression'); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 101 | |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 102 | // Get mime types for later |
Greg Aker | d96f882 | 2011-12-27 16:23:47 -0600 | [diff] [blame] | 103 | if (defined('ENVIRONMENT') AND file_exists(APPPATH.'config/'.ENVIRONMENT.'/mimes.php')) |
| 104 | { |
| 105 | include APPPATH.'config/'.ENVIRONMENT.'/mimes.php'; |
| 106 | } |
| 107 | else |
| 108 | { |
| 109 | include APPPATH.'config/mimes.php'; |
| 110 | } |
| 111 | |
Eric Barnes | bb5d4f7 | 2011-03-18 13:39:58 -0400 | [diff] [blame] | 112 | |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 113 | $this->mime_types = $mimes; |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 114 | log_message('debug', 'Output Class Initialized'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 115 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 116 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 117 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 118 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 119 | /** |
| 120 | * Get Output |
| 121 | * |
| 122 | * Returns the current output string |
| 123 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 124 | * @return string |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 125 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 126 | public function get_output() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 127 | { |
| 128 | return $this->final_output; |
| 129 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 130 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 131 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 132 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 133 | /** |
| 134 | * Set Output |
| 135 | * |
| 136 | * Sets the output string |
| 137 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 138 | * @param string |
| 139 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 140 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 141 | public function set_output($output) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 142 | { |
| 143 | $this->final_output = $output; |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 144 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | // -------------------------------------------------------------------- |
| 148 | |
| 149 | /** |
| 150 | * Append Output |
| 151 | * |
| 152 | * Appends data onto the output string |
| 153 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 154 | * @param string |
| 155 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 156 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 157 | public function append_output($output) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 158 | { |
| 159 | if ($this->final_output == '') |
| 160 | { |
| 161 | $this->final_output = $output; |
| 162 | } |
| 163 | else |
| 164 | { |
| 165 | $this->final_output .= $output; |
| 166 | } |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 167 | |
| 168 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | // -------------------------------------------------------------------- |
| 172 | |
| 173 | /** |
| 174 | * Set Header |
| 175 | * |
| 176 | * Lets you set a server header which will be outputted with the final display. |
| 177 | * |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 178 | * Note: If a file is cached, headers will not be sent. We need to figure out |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 179 | * how to permit header data to be saved with the cache data... |
| 180 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 181 | * @param string |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 182 | * @param bool |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 183 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 184 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 185 | public function set_header($header, $replace = TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 186 | { |
Pascal Kriete | 676e1cd | 2010-04-09 21:16:16 +0200 | [diff] [blame] | 187 | // If zlib.output_compression is enabled it will compress the output, |
| 188 | // but it will not modify the content-length header to compensate for |
| 189 | // the reduction, causing the browser to hang waiting for more data. |
| 190 | // We'll just skip content-length in those cases. |
Pascal Kriete | 676e1cd | 2010-04-09 21:16:16 +0200 | [diff] [blame] | 191 | if ($this->_zlib_oc && strncasecmp($header, 'content-length', 14) == 0) |
| 192 | { |
| 193 | return; |
| 194 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 195 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 196 | $this->headers[] = array($header, $replace); |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 197 | return $this; |
| 198 | } |
| 199 | |
| 200 | // -------------------------------------------------------------------- |
| 201 | |
| 202 | /** |
| 203 | * Set Content Type Header |
| 204 | * |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 205 | * @param string extension of the file we're outputting |
| 206 | * @return void |
| 207 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 208 | public function set_content_type($mime_type) |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 209 | { |
| 210 | if (strpos($mime_type, '/') === FALSE) |
| 211 | { |
| 212 | $extension = ltrim($mime_type, '.'); |
| 213 | |
| 214 | // Is this extension supported? |
| 215 | if (isset($this->mime_types[$extension])) |
| 216 | { |
| 217 | $mime_type =& $this->mime_types[$extension]; |
| 218 | |
| 219 | if (is_array($mime_type)) |
| 220 | { |
| 221 | $mime_type = current($mime_type); |
| 222 | } |
| 223 | } |
| 224 | } |
Thor (atiredmachine) | 242115c | 2012-01-24 23:08:11 -0800 | [diff] [blame] | 225 | |
| 226 | $this->mime_type = $mime_type; |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 227 | |
| 228 | $header = 'Content-Type: '.$mime_type; |
| 229 | |
| 230 | $this->headers[] = array($header, TRUE); |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 231 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 235 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 236 | /** |
| 237 | * Set HTTP Status Header |
Derek Jones | 817163a | 2009-07-11 17:05:58 +0000 | [diff] [blame] | 238 | * moved to Common procedural functions in 1.7.2 |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 239 | * |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 240 | * @param int the status code |
| 241 | * @param string |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 242 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 243 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 244 | public function set_status_header($code = 200, $text = '') |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 245 | { |
Derek Jones | 817163a | 2009-07-11 17:05:58 +0000 | [diff] [blame] | 246 | set_status_header($code, $text); |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 247 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 248 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 249 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 250 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 251 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 252 | /** |
| 253 | * Enable/disable Profiler |
| 254 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 255 | * @param bool |
| 256 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 257 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 258 | public function enable_profiler($val = TRUE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 259 | { |
| 260 | $this->enable_profiler = (is_bool($val)) ? $val : TRUE; |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 261 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 262 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 263 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 264 | // -------------------------------------------------------------------- |
Derek Jones | ee71c80 | 2010-03-10 10:05:05 -0600 | [diff] [blame] | 265 | |
| 266 | /** |
| 267 | * Set Profiler Sections |
| 268 | * |
| 269 | * Allows override of default / config settings for Profiler section display |
| 270 | * |
Derek Jones | ee71c80 | 2010-03-10 10:05:05 -0600 | [diff] [blame] | 271 | * @param array |
| 272 | * @return void |
| 273 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 274 | public function set_profiler_sections($sections) |
Derek Jones | ee71c80 | 2010-03-10 10:05:05 -0600 | [diff] [blame] | 275 | { |
| 276 | foreach ($sections as $section => $enable) |
| 277 | { |
| 278 | $this->_profiler_sections[$section] = ($enable !== FALSE) ? TRUE : FALSE; |
| 279 | } |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 280 | |
| 281 | return $this; |
Derek Jones | ee71c80 | 2010-03-10 10:05:05 -0600 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 285 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 286 | /** |
| 287 | * Set Cache |
| 288 | * |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 289 | * @param integer |
| 290 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 291 | */ |
Michiel Vugteveen | 0609d58 | 2012-01-08 13:26:17 +0100 | [diff] [blame] | 292 | public function cache($time) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 293 | { |
| 294 | $this->cache_expiration = ( ! is_numeric($time)) ? 0 : $time; |
Phil Sturgeon | 60ed1a3 | 2011-03-08 21:43:54 +0000 | [diff] [blame] | 295 | return $this; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 296 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 297 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 298 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 299 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 300 | /** |
| 301 | * Display Output |
| 302 | * |
| 303 | * All "view" data is automatically put into this variable by the controller class: |
| 304 | * |
| 305 | * $this->final_output |
| 306 | * |
| 307 | * This function sends the finalized output data to the browser along |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 308 | * with any server headers and profile data. It also stops the |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 309 | * benchmark timer so the page rendering speed and memory usage can be shown. |
| 310 | * |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 311 | * @param string |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 312 | * @return mixed |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 313 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 314 | public function _display($output = '') |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 315 | { |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 316 | // Note: We use globals because we can't use $CI =& get_instance() |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 317 | // since this function is sometimes called by the caching mechanism, |
| 318 | // which happens before the CI super object is available. |
| 319 | global $BM, $CFG; |
Derek Jones | d763349 | 2010-09-28 13:14:57 -0500 | [diff] [blame] | 320 | |
| 321 | // Grab the super object if we can. |
Greg Aker | cc92210 | 2010-11-17 20:25:08 -0600 | [diff] [blame] | 322 | if (class_exists('CI_Controller')) |
Derek Jones | d763349 | 2010-09-28 13:14:57 -0500 | [diff] [blame] | 323 | { |
| 324 | $CI =& get_instance(); |
| 325 | } |
| 326 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 327 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 328 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 329 | // Set the output data |
| 330 | if ($output == '') |
| 331 | { |
| 332 | $output =& $this->final_output; |
| 333 | } |
Thor (atiredmachine) | 63678a2 | 2012-01-24 16:56:01 -0800 | [diff] [blame] | 334 | |
| 335 | // -------------------------------------------------------------------- |
| 336 | |
| 337 | // Is minify requested? |
| 338 | if ($CFG->item('minify_output') === TRUE) |
| 339 | { |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 340 | $output = $this->minify($output, $this->mime_type); |
Thor (atiredmachine) | 63678a2 | 2012-01-24 16:56:01 -0800 | [diff] [blame] | 341 | } |
| 342 | |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 343 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 344 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 345 | |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 346 | // Do we need to write a cache file? Only if the controller does not have its |
Derek Jones | d763349 | 2010-09-28 13:14:57 -0500 | [diff] [blame] | 347 | // own _output() method and we are not dealing with a cache file, which we |
| 348 | // can determine by the existence of the $CI object above |
| 349 | if ($this->cache_expiration > 0 && isset($CI) && ! method_exists($CI, '_output')) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 350 | { |
| 351 | $this->_write_cache($output); |
| 352 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 353 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 354 | // -------------------------------------------------------------------- |
| 355 | |
| 356 | // Parse out the elapsed time and memory usage, |
| 357 | // then swap the pseudo-variables with the data |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 358 | |
| 359 | $elapsed = $BM->elapsed_time('total_execution_time_start', 'total_execution_time_end'); |
Derek Jones | 4652049 | 2010-03-02 13:53:25 -0600 | [diff] [blame] | 360 | |
| 361 | if ($this->parse_exec_vars === TRUE) |
| 362 | { |
| 363 | $memory = ( ! function_exists('memory_get_usage')) ? '0' : round(memory_get_usage()/1024/1024, 2).'MB'; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 364 | |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 365 | $output = str_replace(array('{elapsed_time}', '{memory_usage}'), array($elapsed, $memory), $output); |
Derek Jones | 4652049 | 2010-03-02 13:53:25 -0600 | [diff] [blame] | 366 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 367 | |
| 368 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 369 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 370 | // Is compression requested? |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 371 | if ($CFG->item('compress_output') === TRUE && $this->_zlib_oc == FALSE |
| 372 | && extension_loaded('zlib') |
| 373 | && isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== FALSE) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 374 | { |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 375 | ob_start('ob_gzhandler'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 379 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 380 | // Are there any server headers to send? |
| 381 | if (count($this->headers) > 0) |
| 382 | { |
| 383 | foreach ($this->headers as $header) |
| 384 | { |
| 385 | @header($header[0], $header[1]); |
| 386 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 387 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 388 | |
| 389 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 390 | |
Derek Jones | d763349 | 2010-09-28 13:14:57 -0500 | [diff] [blame] | 391 | // Does the $CI object exist? |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 392 | // If not we know we are dealing with a cache file so we'll |
| 393 | // simply echo out the data and exit. |
Derek Jones | d763349 | 2010-09-28 13:14:57 -0500 | [diff] [blame] | 394 | if ( ! isset($CI)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 395 | { |
| 396 | echo $output; |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 397 | log_message('debug', 'Final output sent to browser'); |
| 398 | log_message('debug', 'Total execution time: '.$elapsed); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 399 | return TRUE; |
| 400 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 401 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 402 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 403 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 404 | // Do we need to generate profile data? |
| 405 | // If so, load the Profile class and run it. |
| 406 | if ($this->enable_profiler == TRUE) |
| 407 | { |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 408 | $CI->load->library('profiler'); |
Derek Jones | ee71c80 | 2010-03-10 10:05:05 -0600 | [diff] [blame] | 409 | if ( ! empty($this->_profiler_sections)) |
| 410 | { |
| 411 | $CI->profiler->set_sections($this->_profiler_sections); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 412 | } |
Derek Jones | ee71c80 | 2010-03-10 10:05:05 -0600 | [diff] [blame] | 413 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 414 | // If the output data contains closing </body> and </html> tags |
| 415 | // we will remove them and add them back after we insert the profile data |
Andrey Andreev | cba20b1 | 2012-01-09 10:16:41 +0200 | [diff] [blame] | 416 | $output = preg_replace('|</body>.*?</html>|is', '', $output, -1, $count).$CI->profiler->run(); |
| 417 | if ($count > 0) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 418 | { |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 419 | $output .= '</body></html>'; |
| 420 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 421 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 422 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 423 | // Does the controller contain a function named _output()? |
Derek Jones | 37f4b9c | 2011-07-01 17:56:50 -0500 | [diff] [blame] | 424 | // If so send the output there. Otherwise, echo it. |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 425 | if (method_exists($CI, '_output')) |
| 426 | { |
| 427 | $CI->_output($output); |
| 428 | } |
| 429 | else |
| 430 | { |
Andrey Andreev | edc8755 | 2012-01-09 09:35:10 +0200 | [diff] [blame] | 431 | echo $output; // Send it to the browser! |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 432 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 433 | |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 434 | log_message('debug', 'Final output sent to browser'); |
| 435 | log_message('debug', 'Total execution time: '.$elapsed); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 436 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 437 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 438 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 439 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 440 | /** |
| 441 | * Write a Cache File |
| 442 | * |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 443 | * @param string |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 444 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 445 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 446 | public function _write_cache($output) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 447 | { |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 448 | $CI =& get_instance(); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 449 | $path = $CI->config->item('cache_path'); |
Greg Aker | 2eaa407 | 2010-12-21 11:44:08 -0600 | [diff] [blame] | 450 | $cache_path = ($path == '') ? APPPATH.'cache/' : $path; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 451 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 452 | if ( ! is_dir($cache_path) OR ! is_really_writable($cache_path)) |
| 453 | { |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 454 | log_message('error', 'Unable to write cache file: '.$cache_path); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 455 | return; |
| 456 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 457 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 458 | $uri = $CI->config->item('base_url'). |
| 459 | $CI->config->item('index_page'). |
| 460 | $CI->uri->uri_string(); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 461 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 462 | $cache_path .= md5($uri); |
| 463 | |
| 464 | if ( ! $fp = @fopen($cache_path, FOPEN_WRITE_CREATE_DESTRUCTIVE)) |
| 465 | { |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 466 | log_message('error', 'Unable to write cache file: '.$cache_path); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 467 | return; |
| 468 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 469 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 470 | $expire = time() + ($this->cache_expiration * 60); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 471 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 472 | if (flock($fp, LOCK_EX)) |
| 473 | { |
| 474 | fwrite($fp, $expire.'TS--->'.$output); |
| 475 | flock($fp, LOCK_UN); |
| 476 | } |
| 477 | else |
| 478 | { |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 479 | log_message('error', 'Unable to secure a file lock for file at: '.$cache_path); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 480 | return; |
| 481 | } |
| 482 | fclose($fp); |
Derek Jones | 172e161 | 2009-10-13 14:32:48 +0000 | [diff] [blame] | 483 | @chmod($cache_path, FILE_WRITE_MODE); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 484 | |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 485 | log_message('debug', 'Cache file written: '.$cache_path); |
Thor (atiredmachine) | c8efb80 | 2012-01-24 13:33:39 -0800 | [diff] [blame] | 486 | |
| 487 | // Send HTTP cache-control headers to browser to match file cache settings. |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 488 | $this->set_cache_header($_SERVER['REQUEST_TIME'], $expire); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | // -------------------------------------------------------------------- |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 492 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 493 | /** |
| 494 | * Update/serve a cached file |
| 495 | * |
David Behler | 07b5342 | 2011-08-15 00:25:06 +0200 | [diff] [blame] | 496 | * @param object config class |
| 497 | * @param object uri class |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 498 | * @return void |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 499 | */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 500 | public function _display_cache(&$CFG, &$URI) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 501 | { |
Greg Aker | 2eaa407 | 2010-12-21 11:44:08 -0600 | [diff] [blame] | 502 | $cache_path = ($CFG->item('cache_path') == '') ? APPPATH.'cache/' : $CFG->item('cache_path'); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 503 | |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 504 | // Build the file path. The file name is an MD5 hash of the full URI |
| 505 | $uri = $CFG->item('base_url').$CFG->item('index_page').$URI->uri_string; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 506 | $filepath = $cache_path.md5($uri); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 507 | |
Andrey Andreev | c90d651 | 2012-01-08 04:35:02 +0200 | [diff] [blame] | 508 | if ( ! @file_exists($filepath) OR ! $fp = @fopen($filepath, FOPEN_READ)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 509 | { |
| 510 | return FALSE; |
| 511 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 512 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 513 | flock($fp, LOCK_SH); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 514 | |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 515 | $cache = (filesize($filepath) > 0) ? fread($fp, filesize($filepath)) : ''; |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 516 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 517 | flock($fp, LOCK_UN); |
| 518 | fclose($fp); |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 519 | |
| 520 | // Strip out the embedded timestamp |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 521 | if ( ! preg_match('/(\d+TS--->)/', $cache, $match)) |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 522 | { |
| 523 | return FALSE; |
| 524 | } |
Barry Mieny | dd67197 | 2010-10-04 16:33:58 +0200 | [diff] [blame] | 525 | |
Thor (atiredmachine) | c8efb80 | 2012-01-24 13:33:39 -0800 | [diff] [blame] | 526 | $last_modified = filemtime($cache_path); |
| 527 | $expire = trim(str_replace('TS--->', '', $match[1])); |
| 528 | |
| 529 | // Has the file expired? |
| 530 | if ($_SERVER['REQUEST_TIME'] >= $expire && is_really_writable($cache_path)) |
Derek Jones | d99e603 | 2010-03-19 19:57:33 -0500 | [diff] [blame] | 531 | { |
Thor (atiredmachine) | c8efb80 | 2012-01-24 13:33:39 -0800 | [diff] [blame] | 532 | // If so we'll delete it. |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 533 | @unlink($filepath); |
| 534 | log_message('debug', 'Cache file has expired. File deleted.'); |
| 535 | return FALSE; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 536 | } |
Thor (atiredmachine) | c8efb80 | 2012-01-24 13:33:39 -0800 | [diff] [blame] | 537 | else |
| 538 | { |
| 539 | // Or else send the HTTP cache control headers. |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 540 | $this->set_cache_header($last_modified, $expire); |
Thor (atiredmachine) | c8efb80 | 2012-01-24 13:33:39 -0800 | [diff] [blame] | 541 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 542 | |
| 543 | // Display the cache |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 544 | $this->_display(str_replace($match[0], '', $cache)); |
| 545 | log_message('debug', 'Cache file is current. Sending it to browser.'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 546 | return TRUE; |
| 547 | } |
| 548 | |
Thor (atiredmachine) | c8efb80 | 2012-01-24 13:33:39 -0800 | [diff] [blame] | 549 | |
| 550 | // -------------------------------------------------------------------- |
| 551 | /** |
| 552 | * Set the HTTP headers to match the server-side file cache settings |
| 553 | * in order to reduce bandwidth. |
| 554 | * |
| 555 | * @param int timestamp of when the page was last modified |
| 556 | * @param int timestamp of when should the requested page expire from cache |
| 557 | * @return void |
| 558 | */ |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 559 | public function set_cache_header($last_modified, $expiration) |
Thor (atiredmachine) | c8efb80 | 2012-01-24 13:33:39 -0800 | [diff] [blame] | 560 | { |
| 561 | $max_age = $expiration - $_SERVER['REQUEST_TIME']; |
| 562 | |
| 563 | if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && ($last_modified <= strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']))) |
| 564 | { |
| 565 | $this->set_status_header(304); |
| 566 | exit; |
| 567 | } |
| 568 | else |
| 569 | { |
| 570 | header('Pragma: public'); |
| 571 | header('Cache-Control: max-age=' . $max_age . ', public'); |
| 572 | header('Expires: '.gmdate('D, d M Y H:i:s', $expiration).' GMT'); |
| 573 | header('Last-modified: '.gmdate('D, d M Y H:i:s', $last_modified).' GMT'); |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | |
Thor (atiredmachine) | 63678a2 | 2012-01-24 16:56:01 -0800 | [diff] [blame] | 578 | |
| 579 | |
| 580 | // -------------------------------------------------------------------- |
| 581 | /** |
| 582 | * Reduce excessive size of HTML content. |
| 583 | * |
| 584 | * @param string |
| 585 | * @param string |
| 586 | * @return string |
| 587 | */ |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 588 | public function minify($output, $type='text/html') |
Thor (atiredmachine) | 63678a2 | 2012-01-24 16:56:01 -0800 | [diff] [blame] | 589 | { |
| 590 | switch ($type) |
| 591 | { |
Thor (atiredmachine) | 1d0661a | 2012-01-24 21:39:16 -0800 | [diff] [blame] | 592 | case 'text/html': |
Thor (atiredmachine) | f59ec6f | 2012-01-24 22:19:14 -0800 | [diff] [blame] | 593 | |
| 594 | $size_before = strlen($output); |
| 595 | |
Thor (atiredmachine) | 5c078ce | 2012-01-26 17:18:35 -0800 | [diff] [blame^] | 596 | // Find all the <pre>,<code>,<textarea>, and <javascript> tags |
| 597 | // We'll want to return them to this unprocessed state later. |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 598 | preg_match_all('{<pre.+</pre>}msU', $output, $pres_clean); |
| 599 | preg_match_all('{<code.+</code>}msU', $output, $codes_clean); |
| 600 | preg_match_all('{<textarea.+</textarea>}msU', $output, $textareas_clean); |
Thor (atiredmachine) | 5c078ce | 2012-01-26 17:18:35 -0800 | [diff] [blame^] | 601 | preg_match_all('{<script.+</script>}msU', $output, $javascript_clean); |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 602 | |
Thor (atiredmachine) | d68c819 | 2012-01-24 20:56:21 -0800 | [diff] [blame] | 603 | // Minify the CSS in all the <style> tags. |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 604 | preg_match_all('{<style.+</style>}msU', $output, $style_clean); |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 605 | foreach ($style_clean[0] as $s) |
| 606 | { |
Thor (atiredmachine) | 1d0661a | 2012-01-24 21:39:16 -0800 | [diff] [blame] | 607 | $output = str_replace($s, $this->minify($s,'text/css'), $output); |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 608 | } |
Thor (atiredmachine) | 5c078ce | 2012-01-26 17:18:35 -0800 | [diff] [blame^] | 609 | |
| 610 | // Minify the javascript in <script> tags. |
| 611 | foreach ($javascript_clean[0] as $s) |
| 612 | { |
| 613 | $javascript_mini[] = $this->minify($s,'text/javascript'); |
| 614 | } |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 615 | |
Thor (atiredmachine) | a2ae6e1 | 2012-01-24 20:57:48 -0800 | [diff] [blame] | 616 | // Replace multiple spaces with a single space. |
Thor (atiredmachine) | 5c078ce | 2012-01-26 17:18:35 -0800 | [diff] [blame^] | 617 | $output = preg_replace('!\s{2,}!',' ', $output); |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 618 | |
Thor (atiredmachine) | 5de1175 | 2012-01-24 22:08:36 -0800 | [diff] [blame] | 619 | // Remove comments (non-MSIE conditionals) |
Thor (atiredmachine) | 5528c0e | 2012-01-25 01:02:28 -0800 | [diff] [blame] | 620 | $output = preg_replace('{\s*<!--[^\[].*-->\s*}msU', '', $output); |
Thor (atiredmachine) | 5de1175 | 2012-01-24 22:08:36 -0800 | [diff] [blame] | 621 | |
Thor (atiredmachine) | a2ae6e1 | 2012-01-24 20:57:48 -0800 | [diff] [blame] | 622 | // Remove spaces around block-level elements. |
Thor (atiredmachine) | 5c078ce | 2012-01-26 17:18:35 -0800 | [diff] [blame^] | 623 | $output = preg_replace('{\s*(</?(html|head|title|meta|script|link|style|body|h[1-6]|div|p|br).*>)\s+}msU', '$1', $output); |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 624 | |
Thor (atiredmachine) | d68c819 | 2012-01-24 20:56:21 -0800 | [diff] [blame] | 625 | // Replace mangled <pre> etc. tags with unprocessed ones. |
Thor (atiredmachine) | f59ec6f | 2012-01-24 22:19:14 -0800 | [diff] [blame] | 626 | |
Thor (atiredmachine) | 5c078ce | 2012-01-26 17:18:35 -0800 | [diff] [blame^] | 627 | if ( ! empty($pres_clean)) |
| 628 | { |
| 629 | preg_match_all('{<pre.+</pre>}msU', $output, $pres_messed); |
| 630 | $output = str_replace($pres_messed[0], $pres_clean[0], $output); |
| 631 | } |
Thor (atiredmachine) | f59ec6f | 2012-01-24 22:19:14 -0800 | [diff] [blame] | 632 | |
Thor (atiredmachine) | 5c078ce | 2012-01-26 17:18:35 -0800 | [diff] [blame^] | 633 | if ( ! empty($codes_clean)) |
| 634 | { |
| 635 | preg_match_all('{<code.+</code>}msU', $output, $codes_messed); |
| 636 | $output = str_replace($codes_messed[0], $codes_clean[0], $output); |
| 637 | } |
| 638 | |
| 639 | if ( ! empty($codes_clean)) |
| 640 | { |
| 641 | preg_match_all('{<textarea.+</textarea>}msU', $output, $textareas_messed); |
| 642 | $output = str_replace($textareas_messed[0], $textareas_clean[0], $output); |
| 643 | } |
| 644 | |
| 645 | if (isset($javascript_mini)) |
| 646 | { |
| 647 | preg_match_all('{<script.+</script>}msU', $output, $javascript_messed); |
| 648 | $output = str_replace($javascript_messed[0], $javascript_mini, $output); |
| 649 | } |
| 650 | |
| 651 | $size_removed = $size_before - strlen($output); |
| 652 | $savings_percent = round(($size_removed / $size_before * 100)); |
| 653 | |
| 654 | log_message('debug', 'Minifier shaved '.($size_removed / 1000).'KB ('.$savings_percent.'%) off final HTML output.'); |
Thor (atiredmachine) | 63678a2 | 2012-01-24 16:56:01 -0800 | [diff] [blame] | 655 | |
Thor (atiredmachine) | 63678a2 | 2012-01-24 16:56:01 -0800 | [diff] [blame] | 656 | break; |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 657 | |
| 658 | |
Thor (atiredmachine) | 1d0661a | 2012-01-24 21:39:16 -0800 | [diff] [blame] | 659 | case 'text/css': |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 660 | |
Thor (atiredmachine) | 5c078ce | 2012-01-26 17:18:35 -0800 | [diff] [blame^] | 661 | //Remove CSS comments |
| 662 | $output = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $output); |
| 663 | |
| 664 | // Remove spaces around curly brackets, colons, |
| 665 | // semi-colons, parenthesis, commas |
| 666 | $output = preg_replace('!\s*(:|;|,|}|{|\(|\))\s*!', '$1', $output); |
| 667 | |
| 668 | break; |
| 669 | |
| 670 | |
| 671 | case 'text/javascript': |
| 672 | |
| 673 | // Replace multiple spaces with a single newline. |
| 674 | $output = preg_replace('!\s{2,}!',"\n", $output); |
| 675 | |
| 676 | // Remove excessive newlines. |
| 677 | $output = preg_replace('!(;|{|})\n!','$1', $output); |
Thor (atiredmachine) | 79db4cd | 2012-01-24 20:44:51 -0800 | [diff] [blame] | 678 | |
| 679 | break; |
Thor (atiredmachine) | 63678a2 | 2012-01-24 16:56:01 -0800 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | return $output; |
| 683 | } |
| 684 | |
| 685 | |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 686 | } |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 687 | |
| 688 | /* End of file Output.php */ |
Andrey Andreev | 1f5fbb6 | 2012-01-07 20:53:29 +0200 | [diff] [blame] | 689 | /* Location: ./system/core/Output.php */ |