HttpCache.php 3.84 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\web;

use Yii;
use yii\base\ActionFilter;
use yii\base\Action;

/**
 * @author Da:Sourcerer <webmaster@dasourcerer.net>
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class HttpCache extends ActionFilter
{
	/**
	 * @var callback a PHP callback that returns the UNIX timestamp of the last modification time.
	 * The callback's signature should be:
	 *
	 * ~~~
	 * function ($action, $params)
	 * ~~~
	 *
	 * where `$action` is the [[Action]] object that this filter is currently handling;
Qiang Xue committed
30
	 * `$params` takes the value of [[params]]. The callback should return a UNIX timestamp.
31 32 33 34 35 36 37 38 39 40 41
	 */
	public $lastModified;
	/**
	 * @var callback a PHP callback that generates the Etag seed string.
	 * The callback's signature should be:
	 *
	 * ~~~
	 * function ($action, $params)
	 * ~~~
	 *
	 * where `$action` is the [[Action]] object that this filter is currently handling;
Qiang Xue committed
42 43
	 * `$params` takes the value of [[params]]. The callback should return a string serving
	 * as the seed for generating an Etag.
44 45 46 47 48 49 50
	 */
	public $etagSeed;
	/**
	 * @var mixed additional parameters that should be passed to the [[lastModified]] and [[etagSeed]] callbacks.
	 */
	public $params;
	/**
Qiang Xue committed
51
	 * @var string HTTP cache control header. If null, the header will not be sent.
52
	 */
Qiang Xue committed
53
	public $cacheControlHeader = 'Cache-Control: max-age=3600, public';
54 55 56 57 58 59 60 61 62

	/**
	 * This method is invoked right before an action is to be executed (after all possible filters.)
	 * You may override this method to do last-minute preparation for the action.
	 * @param Action $action the action to be executed.
	 * @return boolean whether the action should continue to be executed.
	 */
	public function beforeAction($action)
	{
Qiang Xue committed
63 64
		$verb = Yii::$app->request->getRequestMethod();
		if ($verb !== 'GET' && $verb !== 'HEAD' || $this->lastModified === null && $this->etagSeed === null) {
65 66 67 68 69 70 71 72 73 74 75 76
			return true;
		}

		$lastModified = $etag = null;
		if ($this->lastModified !== null) {
			$lastModified = call_user_func($this->lastModified, $action, $this->params);
		}
		if ($this->etagSeed !== null) {
			$seed = call_user_func($this->etagSeed, $action, $this->params);
			$etag = $this->generateEtag($seed);
		}

Qiang Xue committed
77
		$this->sendCacheControlHeader();
78 79 80 81
		if ($etag !== null) {
			header("ETag: $etag");
		}

Qiang Xue committed
82 83 84
		if ($this->validateCache($lastModified, $etag)) {
			header('HTTP/1.1 304 Not Modified');
			return false;
Qiang Xue committed
85 86 87
		}

		if ($lastModified !== null) {
88
			header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $lastModified) . ' GMT');
89
		}
90
		return true;
91 92
	}

Qiang Xue committed
93 94 95 96 97 98 99 100
	/**
	 * Validates if the HTTP cache contains valid content.
	 * @param integer $lastModified the calculated Last-Modified value in terms of a UNIX timestamp.
	 * If null, the Last-Modified header will not be validated.
	 * @param string $etag the calculated ETag value. If null, the ETag header will not be validated.
	 * @return boolean whether the HTTP cache is still valid.
	 */
	protected function validateCache($lastModified, $etag)
101
	{
Qiang Xue committed
102 103 104 105
		if ($lastModified !== null && (!isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || @strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) < $lastModified)) {
			return false;
		} else {
			return $etag === null || isset($_SERVER['HTTP_IF_NONE_MATCH']) && $_SERVER['HTTP_IF_NONE_MATCH'] === $etag;
106 107 108 109 110 111 112 113 114
		}
	}

	/**
	 * Sends the cache control header to the client
	 * @see cacheControl
	 */
	protected function sendCacheControlHeader()
	{
Qiang Xue committed
115 116
		session_cache_limiter('public');
		header('Pragma:', true);
Qiang Xue committed
117 118 119
		if ($this->cacheControlHeader !== null) {
			header($this->cacheControlHeader, true);
		}
120 121 122
	}

	/**
Qiang Xue committed
123
	 * Generates an Etag from the given seed string.
124 125 126 127 128 129 130
	 * @param string $seed Seed for the ETag
	 * @return string the generated Etag
	 */
	protected function generateEtag($seed)
	{
		return '"' . base64_encode(sha1($seed, true)) . '"';
	}
Zander Baldwin committed
131
}