HttpCache.php 4.97 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?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;

/**
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
 * The HttpCache provides functionality for caching via HTTP Last-Modified and Etag headers.
 *
 * It is an action filter that can be added to a controller and handles the `beforeAction` event.
 *
 * To use AccessControl, declare it in the `behaviors()` method of your controller class.
 * In the following example the filter will be applied to the `list`-action and
 * the Last-Modified header will contain the date of the last update to the user table in the database.
 *
 * ~~~
 * public function behaviors()
 * {
 *     return [
 *         'httpCache' => [
 *             'class' => \yii\web\HttpCache::className(),
 *             'only' => ['list'],
 *             'lastModified' => function ($action, $params) {
 *                 $q = new Query();
 *                 return strtotime($q->from('users')->max('updated_timestamp'));
 *             },
 * //            'etagSeed' => function ($action, $params) {
 * //                return // generate etag seed here
 * //            }
 *         ],
 *     ];
 * }
 * ~~~
41
 *
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
 * @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
57
	 * `$params` takes the value of [[params]]. The callback should return a UNIX timestamp.
58 59 60 61 62 63 64 65 66 67 68
	 */
	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
69 70
	 * `$params` takes the value of [[params]]. The callback should return a string serving
	 * as the seed for generating an Etag.
71 72 73 74 75 76 77
	 */
	public $etagSeed;
	/**
	 * @var mixed additional parameters that should be passed to the [[lastModified]] and [[etagSeed]] callbacks.
	 */
	public $params;
	/**
Qiang Xue committed
78
	 * @var string HTTP cache control header. If null, the header will not be sent.
79
	 */
Qiang Xue committed
80
	public $cacheControlHeader = 'max-age=3600, public';
81 82 83 84 85 86 87 88 89

	/**
	 * 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
90
		$verb = Yii::$app->getRequest()->getMethod();
Qiang Xue committed
91
		if ($verb !== 'GET' && $verb !== 'HEAD' || $this->lastModified === null && $this->etagSeed === null) {
92 93 94 95 96 97 98 99 100 101 102 103
			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);
		}

104 105
		$this->sendCacheControlHeader();
		$response = Yii::$app->getResponse();
106
		if ($etag !== null) {
Qiang Xue committed
107
			$response->getHeaders()->set('Etag', $etag);
108 109
		}

Qiang Xue committed
110
		if ($this->validateCache($lastModified, $etag)) {
Qiang Xue committed
111
			$response->setStatusCode(304);
Qiang Xue committed
112
			return false;
Qiang Xue committed
113 114 115
		}

		if ($lastModified !== null) {
Qiang Xue committed
116
			$response->getHeaders()->set('Last-Modified', gmdate('D, d M Y H:i:s', $lastModified) . ' GMT');
117
		}
118
		return true;
119 120
	}

Qiang Xue committed
121 122 123 124 125 126 127 128
	/**
	 * 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)
129
	{
Qiang Xue committed
130 131 132 133
		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;
134 135 136 137 138 139 140
		}
	}

	/**
	 * Sends the cache control header to the client
	 * @see cacheControl
	 */
141
	protected function sendCacheControlHeader()
142
	{
Qiang Xue committed
143
		session_cache_limiter('public');
144
		$headers = Yii::$app->getResponse()->getHeaders();
Qiang Xue committed
145
		$headers->set('Pragma');
Qiang Xue committed
146
		if ($this->cacheControlHeader !== null) {
Qiang Xue committed
147
			$headers->set('Cache-Control', $this->cacheControlHeader);
Qiang Xue committed
148
		}
149 150 151
	}

	/**
Qiang Xue committed
152
	 * Generates an Etag from the given seed string.
153 154 155 156 157 158 159
	 * @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
160
}