]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Minify/extlib/minify/min/lib/HTTP/ConditionalGet.php
Issue #166 - we test exif data below, no need for error output
[quix0rs-gnu-social.git] / plugins / Minify / extlib / minify / min / lib / HTTP / ConditionalGet.php
1 <?php
2 /**
3  * Class HTTP_ConditionalGet  
4  * @package Minify
5  * @subpackage HTTP
6  */
7
8 /**
9  * Implement conditional GET via a timestamp or hash of content
10  *
11  * E.g. Content from DB with update time:
12  * <code>
13  * list($updateTime, $content) = getDbUpdateAndContent();
14  * $cg = new HTTP_ConditionalGet(array(
15  *     'lastModifiedTime' => $updateTime
16  *     ,'isPublic' => true
17  * ));
18  * $cg->sendHeaders();
19  * if ($cg->cacheIsValid) {
20  *     exit();
21  * }
22  * echo $content;
23  * </code>
24  * 
25  * E.g. Shortcut for the above
26  * <code>
27  * HTTP_ConditionalGet::check($updateTime, true); // exits if client has cache
28  * echo $content;
29  * </code>
30  *
31  * E.g. Content from DB with no update time:
32  * <code>
33  * $content = getContentFromDB();
34  * $cg = new HTTP_ConditionalGet(array(
35  *     'contentHash' => md5($content)
36  * ));
37  * $cg->sendHeaders();
38  * if ($cg->cacheIsValid) {
39  *     exit();
40  * }
41  * echo $content;
42  * </code>
43  * 
44  * E.g. Static content with some static includes:
45  * <code>
46  * // before content
47  * $cg = new HTTP_ConditionalGet(array(
48  *     'lastUpdateTime' => max(
49  *         filemtime(__FILE__)
50  *         ,filemtime('/path/to/header.inc')
51  *         ,filemtime('/path/to/footer.inc')
52  *     )
53  * ));
54  * $cg->sendHeaders();
55  * if ($cg->cacheIsValid) {
56  *     exit();
57  * }
58  * </code>
59  * @package Minify
60  * @subpackage HTTP
61  * @author Stephen Clay <steve@mrclay.org>
62  */
63 class HTTP_ConditionalGet {
64
65     /**
66      * Does the client have a valid copy of the requested resource?
67      * 
68      * You'll want to check this after instantiating the object. If true, do
69      * not send content, just call sendHeaders() if you haven't already.
70      *
71      * @var bool
72      */
73     public $cacheIsValid = null;
74
75     /**
76      * @param array $spec options
77      * 
78      * 'isPublic': (bool) if true, the Cache-Control header will contain 
79      * "public", allowing proxies to cache the content. Otherwise "private" will 
80      * be sent, allowing only browser caching. (default false)
81      * 
82      * 'lastModifiedTime': (int) if given, both ETag AND Last-Modified headers
83      * will be sent with content. This is recommended.
84      *
85      * 'encoding': (string) if set, the header "Vary: Accept-Encoding" will
86      * always be sent and a truncated version of the encoding will be appended
87      * to the ETag. E.g. "pub123456;gz". This will also trigger a more lenient 
88      * checking of the client's If-None-Match header, as the encoding portion of
89      * the ETag will be stripped before comparison.
90      * 
91      * 'contentHash': (string) if given, only the ETag header can be sent with
92      * content (only HTTP1.1 clients can conditionally GET). The given string 
93      * should be short with no quote characters and always change when the 
94      * resource changes (recommend md5()). This is not needed/used if 
95      * lastModifiedTime is given.
96      * 
97      * 'eTag': (string) if given, this will be used as the ETag header rather
98      * than values based on lastModifiedTime or contentHash. Also the encoding
99      * string will not be appended to the given value as described above.
100      * 
101      * 'invalidate': (bool) if true, the client cache will be considered invalid
102      * without testing. Effectively this disables conditional GET. 
103      * (default false)
104      * 
105      * 'maxAge': (int) if given, this will set the Cache-Control max-age in 
106      * seconds, and also set the Expires header to the equivalent GMT date. 
107      * After the max-age period has passed, the browser will again send a 
108      * conditional GET to revalidate its cache.
109      * 
110      * @return null
111      */
112     public function __construct($spec)
113     {
114         $scope = (isset($spec['isPublic']) && $spec['isPublic'])
115             ? 'public'
116             : 'private';
117         $maxAge = 0;
118         // backwards compatibility (can be removed later)
119         if (isset($spec['setExpires']) 
120             && is_numeric($spec['setExpires'])
121             && ! isset($spec['maxAge'])) {
122             $spec['maxAge'] = $spec['setExpires'] - $_SERVER['REQUEST_TIME'];
123         }
124         if (isset($spec['maxAge'])) {
125             $maxAge = $spec['maxAge'];
126             $this->_headers['Expires'] = self::gmtDate(
127                 $_SERVER['REQUEST_TIME'] + $spec['maxAge'] 
128             );
129         }
130         $etagAppend = '';
131         if (isset($spec['encoding'])) {
132             $this->_stripEtag = true;
133             $this->_headers['Vary'] = 'Accept-Encoding';
134             if ('' !== $spec['encoding']) {
135                 if (0 === strpos($spec['encoding'], 'x-')) {
136                     $spec['encoding'] = substr($spec['encoding'], 2);
137                 }
138                 $etagAppend = ';' . substr($spec['encoding'], 0, 2);
139             }
140         }
141         if (isset($spec['lastModifiedTime'])) {
142             $this->_setLastModified($spec['lastModifiedTime']);
143             if (isset($spec['eTag'])) { // Use it
144                 $this->_setEtag($spec['eTag'], $scope);
145             } else { // base both headers on time
146                 $this->_setEtag($spec['lastModifiedTime'] . $etagAppend, $scope);
147             }
148         } elseif (isset($spec['eTag'])) { // Use it
149             $this->_setEtag($spec['eTag'], $scope);
150         } elseif (isset($spec['contentHash'])) { // Use the hash as the ETag
151             $this->_setEtag($spec['contentHash'] . $etagAppend, $scope);
152         }
153         $this->_headers['Cache-Control'] = "max-age={$maxAge}, {$scope}";
154         // invalidate cache if disabled, otherwise check
155         $this->cacheIsValid = (isset($spec['invalidate']) && $spec['invalidate'])
156             ? false
157             : $this->_isCacheValid();
158     }
159     
160     /**
161      * Get array of output headers to be sent
162      * 
163      * In the case of 304 responses, this array will only contain the response
164      * code header: array('_responseCode' => 'HTTP/1.0 304 Not Modified')
165      * 
166      * Otherwise something like: 
167      * <code>
168      * array(
169      *     'Cache-Control' => 'max-age=0, public'
170      *     ,'ETag' => '"foobar"'
171      * )
172      * </code>
173      *
174      * @return array 
175      */
176     public function getHeaders()
177     {
178         return $this->_headers;
179     }
180
181     /**
182      * Set the Content-Length header in bytes
183      * 
184      * With most PHP configs, as long as you don't flush() output, this method
185      * is not needed and PHP will buffer all output and set Content-Length for 
186      * you. Otherwise you'll want to call this to let the client know up front.
187      * 
188      * @param int $bytes
189      * 
190      * @return int copy of input $bytes
191      */
192     public function setContentLength($bytes)
193     {
194         return $this->_headers['Content-Length'] = $bytes;
195     }
196
197     /**
198      * Send headers
199      * 
200      * @see getHeaders()
201      * 
202      * Note this doesn't "clear" the headers. Calling sendHeaders() will
203      * call header() again (but probably have not effect) and getHeaders() will
204      * still return the headers.
205      *
206      * @return null
207      */
208     public function sendHeaders()
209     {
210         $headers = $this->_headers;
211         if (array_key_exists('_responseCode', $headers)) {
212             header($headers['_responseCode']);
213             unset($headers['_responseCode']);
214         }
215         foreach ($headers as $name => $val) {
216             header($name . ': ' . $val);
217         }
218     }
219     
220     /**
221      * Exit if the client's cache is valid for this resource
222      *
223      * This is a convenience method for common use of the class
224      *
225      * @param int $lastModifiedTime if given, both ETag AND Last-Modified headers
226      * will be sent with content. This is recommended.
227      *
228      * @param bool $isPublic (default false) if true, the Cache-Control header 
229      * will contain "public", allowing proxies to cache the content. Otherwise 
230      * "private" will be sent, allowing only browser caching.
231      *
232      * @param array $options (default empty) additional options for constructor
233      *
234      * @return null     
235      */
236     public static function check($lastModifiedTime = null, $isPublic = false, $options = array())
237     {
238         if (null !== $lastModifiedTime) {
239             $options['lastModifiedTime'] = (int)$lastModifiedTime;
240         }
241         $options['isPublic'] = (bool)$isPublic;
242         $cg = new HTTP_ConditionalGet($options);
243         $cg->sendHeaders();
244         if ($cg->cacheIsValid) {
245             exit();
246         }
247     }
248     
249     
250     /**
251      * Get a GMT formatted date for use in HTTP headers
252      * 
253      * <code>
254      * header('Expires: ' . HTTP_ConditionalGet::gmtdate($time));
255      * </code>  
256      *
257      * @param int $time unix timestamp
258      * 
259      * @return string
260      */
261     public static function gmtDate($time)
262     {
263         return gmdate('D, d M Y H:i:s \G\M\T', $time);
264     }
265     
266     protected $_headers = array();
267     protected $_lmTime = null;
268     protected $_etag = null;
269     protected $_stripEtag = false;
270     
271     protected function _setEtag($hash, $scope)
272     {
273         $this->_etag = '"' . substr($scope, 0, 3) . $hash . '"';
274         $this->_headers['ETag'] = $this->_etag;
275     }
276
277     protected function _setLastModified($time)
278     {
279         $this->_lmTime = (int)$time;
280         $this->_headers['Last-Modified'] = self::gmtDate($time);
281     }
282
283     /**
284      * Determine validity of client cache and queue 304 header if valid
285      */
286     protected function _isCacheValid()
287     {
288         if (null === $this->_etag) {
289             // lmTime is copied to ETag, so this condition implies that the
290             // server sent neither ETag nor Last-Modified, so the client can't 
291             // possibly has a valid cache.
292             return false;
293         }
294         $isValid = ($this->resourceMatchedEtag() || $this->resourceNotModified());
295         if ($isValid) {
296             $this->_headers['_responseCode'] = 'HTTP/1.0 304 Not Modified';
297         }
298         return $isValid;
299     }
300
301     protected function resourceMatchedEtag()
302     {
303         if (!isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
304             return false;
305         }
306         $clientEtagList = get_magic_quotes_gpc()
307             ? stripslashes($_SERVER['HTTP_IF_NONE_MATCH'])
308             : $_SERVER['HTTP_IF_NONE_MATCH'];
309         $clientEtags = explode(',', $clientEtagList);
310         
311         $compareTo = $this->normalizeEtag($this->_etag);
312         foreach ($clientEtags as $clientEtag) {
313             if ($this->normalizeEtag($clientEtag) === $compareTo) {
314                 // respond with the client's matched ETag, even if it's not what
315                 // we would've sent by default
316                 $this->_headers['ETag'] = trim($clientEtag);
317                 return true;
318             }
319         }
320         return false;
321     }
322     
323     protected function normalizeEtag($etag) {
324         $etag = trim($etag);
325         return $this->_stripEtag
326             ? preg_replace('/;\\w\\w"$/', '"', $etag)
327             : $etag;
328     }
329
330     protected function resourceNotModified()
331     {
332         if (!isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
333             return false;
334         }
335         $ifModifiedSince = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
336         if (false !== ($semicolon = strrpos($ifModifiedSince, ';'))) {
337             // IE has tacked on extra data to this header, strip it
338             $ifModifiedSince = substr($ifModifiedSince, 0, $semicolon);
339         }
340         if ($ifModifiedSince == self::gmtDate($this->_lmTime)) {
341             // Apache 2.2's behavior. If there was no ETag match, send the 
342             // non-encoded version of the ETag value.
343             $this->_headers['ETag'] = $this->normalizeEtag($this->_etag);
344             return true;
345         }
346         return false;
347     }
348 }