Example #1
0
 protected function handle304Response(RequestInterface $request, Response $validateResponse, Response $response)
 {
     static $replaceHeaders = array('Date', 'Expires', 'Cache-Control', 'ETag', 'Last-Modified');
     if ($validateResponse->getEtag() != $response->getEtag()) {
         return false;
     }
     $modified = false;
     foreach ($replaceHeaders as $name) {
         if ($validateResponse->hasHeader($name)) {
             $modified = true;
             $response->setHeader($name, $validateResponse->getHeader($name));
         }
     }
     if ($modified && $this->canCache->canCacheResponse($response)) {
         $this->storage->cache($request, $response);
     }
     return true;
 }
Example #2
0
 /**
  * Revalidate a cached response
  *
  * @param RequestInterface $request  Request to revalidate
  * @param Response         $response Response to revalidate
  *
  * @return bool
  */
 public function revalidate(RequestInterface $request, Response $response)
 {
     $revalidate = clone $request;
     $revalidate->getEventDispatcher()->removeSubscriber($this);
     $revalidate->removeHeader('Pragma')->removeHeader('Cache-Control')->setHeader('If-Modified-Since', $response->getDate());
     if ($response->getEtag()) {
         $revalidate->setHeader('If-None-Match', '"' . $response->getEtag() . '"');
     }
     try {
         $validateResponse = $revalidate->send();
         if ($validateResponse->getStatusCode() == 200) {
             // The server does not support validation, so use this response
             $request->setResponse($validateResponse);
             // Store this response in cache if possible
             if ($validateResponse->canCache()) {
                 $this->saveCache($this->getCacheKey($request), $validateResponse, $validateResponse->getMaxAge());
             }
             return false;
         }
         if ($validateResponse->getStatusCode() == 304) {
             // Make sure that this response has the same ETage
             if ($validateResponse->getEtag() != $response->getEtag()) {
                 return false;
             }
             // Replace cached headers with any of these headers from the
             // origin server that might be more up to date
             $modified = false;
             foreach (array('Date', 'Expires', 'Cache-Control', 'ETag', 'Last-Modified') as $name) {
                 if ($validateResponse->hasHeader($name)) {
                     $modified = true;
                     $response->setHeader($name, $validateResponse->getHeader($name));
                 }
             }
             // Store the updated response in cache
             if ($modified && $response->canCache()) {
                 $this->saveCache($this->getCacheKey($request), $response, $response->getMaxAge());
             }
             return true;
         }
     } catch (BadResponseException $e) {
         // 404 errors mean the resource no longer exists, so remove from
         // cache, and prevent an additional request by throwing the exception
         if ($e->getResponse()->getStatusCode() == 404) {
             $this->getCacheAdapter()->delete($this->getCacheKey($request));
             throw $e;
         }
     }
     // Other exceptions encountered in the revalidation request are ignored
     // in hopes that sending a request to the origin server will fix it
     return false;
 }
 /**
  * Handle a 304 response and ensure that it is still valid
  *
  * @param RequestInterface $request          Request that was sent
  * @param Response         $validateResponse Response received
  * @param Response         $response         Original cached response
  *
  * @return bool Returns true if valid, false if invalid
  */
 protected function handle304Response(RequestInterface $request, Response $validateResponse, Response $response)
 {
     static $replaceHeaders = array('Date', 'Expires', 'Cache-Control', 'ETag', 'Last-Modified');
     // Make sure that this response has the same ETag
     if ($validateResponse->getEtag() != $response->getEtag()) {
         return false;
     }
     // Replace cached headers with any of these headers from the
     // origin server that might be more up to date
     $modified = false;
     foreach ($replaceHeaders as $name) {
         if ($validateResponse->hasHeader($name)) {
             $modified = true;
             $response->setHeader($name, $validateResponse->getHeader($name));
         }
     }
     // Store the updated response in cache
     if ($modified && $this->canCache->canCacheResponse($response)) {
         $this->storage->cache($request, $response);
     }
     return true;
 }