Beispiel #1
0
 /**
  * Adds cookies set in HTTP response to the jar
  *
  * @param HTTP_Request2_Response $response HTTP response message
  * @param Net_URL2               $setter   original request URL, needed for
  *                               setting default domain/path
  */
 public function addCookiesFromResponse(HTTP_Request2_Response $response, Net_URL2 $setter)
 {
     foreach ($response->getCookies() as $cookie) {
         $this->store($cookie, $setter);
     }
 }
Beispiel #2
0
 /**
  * Adds cookies set in HTTP response to the jar
  *
  * @param HTTP_Request2_Response $response HTTP response message
  * @param Net_URL2               $setter   original request URL, needed for
  *                               setting default domain/path. If not given,
  *                               effective URL from response will be used.
  *
  * @return bool whether all cookies were successfully stored
  * @throws HTTP_Request2_LogicException
  */
 public function addCookiesFromResponse(HTTP_Request2_Response $response, Net_URL2 $setter = null)
 {
     if (null === $setter) {
         if (!($effectiveUrl = $response->getEffectiveUrl())) {
             throw new HTTP_Request2_LogicException('Response URL required for adding cookies from response', HTTP_Request2_Exception::MISSING_VALUE);
         }
         $setter = new Net_URL2($effectiveUrl);
     }
     $success = true;
     foreach ($response->getCookies() as $cookie) {
         $success = $this->store($cookie, $setter) && $success;
     }
     return $success;
 }