You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.4 KiB
125 lines
3.4 KiB
12 years ago
|
<?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;
|
||
|
* `$params` takes the value of [[params]].
|
||
|
*/
|
||
|
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;
|
||
|
* `$params` takes the value of [[params]]. The callback should return a string.
|
||
|
*/
|
||
|
public $etagSeed;
|
||
|
/**
|
||
|
* @var mixed additional parameters that should be passed to the [[lastModified]] and [[etagSeed]] callbacks.
|
||
|
*/
|
||
|
public $params;
|
||
|
/**
|
||
|
* Http cache control headers. Set this to an empty string in order to keep this
|
||
|
* header from being sent entirely.
|
||
|
* @var string
|
||
|
*/
|
||
|
public $cacheControl = 'max-age=3600, public';
|
||
|
|
||
|
/**
|
||
|
* 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)
|
||
|
{
|
||
|
$requestMethod = Yii::$app->request->getRequestMethod();
|
||
|
if ($requestMethod !== 'GET' && $requestMethod !== 'HEAD') {
|
||
|
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);
|
||
|
}
|
||
|
|
||
|
if ($etag !== null) {
|
||
|
header("ETag: $etag");
|
||
|
}
|
||
|
$this->sendCacheControlHeader();
|
||
|
|
||
|
if ($this->hasChanged($lastModified, $etag)) {
|
||
|
if ($lastModified !== null) {
|
||
|
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', $lastModified) . ' GMT');
|
||
|
}
|
||
|
return true;
|
||
|
} else {
|
||
|
header('HTTP/1.1 304 Not Modified');
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
protected function hasChanged($lastModified, $etag)
|
||
|
{
|
||
|
$changed = !isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) || @strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) < $lastModified;
|
||
|
if (!$changed && $etag !== null) {
|
||
|
$changed = !isset($_SERVER['HTTP_IF_NONE_MATCH']) || $_SERVER['HTTP_IF_NONE_MATCH'] !== $etag;
|
||
|
}
|
||
|
return $changed;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sends the cache control header to the client
|
||
|
* @see cacheControl
|
||
|
*/
|
||
|
protected function sendCacheControlHeader()
|
||
|
{
|
||
|
if (Yii::$app->session->isActive) {
|
||
|
session_cache_limiter('public');
|
||
|
header('Pragma:', true);
|
||
|
}
|
||
|
header('Cache-Control: ' . $this->cacheControl, true);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Generates an Etag from a given seed string.
|
||
|
* @param string $seed Seed for the ETag
|
||
|
* @return string the generated Etag
|
||
|
*/
|
||
|
protected function generateEtag($seed)
|
||
|
{
|
||
|
return '"' . base64_encode(sha1($seed, true)) . '"';
|
||
|
}
|
||
|
}
|