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