This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Components/BrowserKit/CookieJar.php

136 lines
3.0 KiB
PHP
Raw Normal View History

2010-04-19 13:12:42 +01:00
<?php
namespace Symfony\Components\BrowserKit;
/*
2010-04-24 00:22:16 +01:00
* This file is part of the Symfony package.
2010-04-19 13:12:42 +01:00
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* CookieJar.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class CookieJar
{
protected $cookieJar = array();
/**
* Sets a cookie.
*
* @param Cookie $cookie A Cookie instance
*/
public function set(Cookie $cookie)
2010-04-19 13:12:42 +01:00
{
$this->cookieJar[$cookie->getName()] = $cookie;
2010-04-19 13:12:42 +01:00
}
/**
* Gets a cookie by name.
*
* @param string $name The cookie name
*
* @return Cookie|null A Cookie instance or null if the cookie does not exist
*/
public function get($name)
2010-04-19 13:12:42 +01:00
{
$this->flushExpiredCookies();
2010-04-19 13:12:42 +01:00
return isset($this->cookieJar[$name]) ? $this->cookieJar[$name] : null;
}
2010-04-19 13:12:42 +01:00
/**
* Removes a cookie by name.
*
* @param string $name The cookie name
*/
public function expire($name)
2010-04-19 13:12:42 +01:00
{
unset($this->cookieJar[$name]);
}
/**
* Removes all the cookies from the jar.
*/
public function clear()
{
$this->cookieJar = array();
}
/**
* Updates the cookie jar from a Response object.
*
* @param Response $response A Response object
* @param string $url The base URL
*/
2010-06-23 15:24:24 +01:00
public function updateFromResponse(Response $response, $uri = null)
{
2010-06-23 15:24:24 +01:00
foreach ($response->getHeader('Set-Cookie', false) as $cookie) {
$this->set(Cookie::fromString($cookie), $uri);
}
}
/**
* Returns not yet expired cookies.
*
* @return array An array of cookies
*/
public function all()
{
$this->flushExpiredCookies();
return $this->cookieJar;
}
/**
* Returns not yet expired cookie values for the given URI.
*
* @param string $uri A URI
*
* @return array An array of cookie values
*/
public function getValues($uri)
{
$this->flushExpiredCookies();
$parts = parse_url($uri);
$cookies = array();
foreach ($this->cookieJar as $cookie) {
if ($cookie->getDomain() && $cookie->getDomain() != substr($parts['host'], -strlen($cookie->getDomain()))) {
continue;
}
if ($cookie->getPath() != substr($parts['path'], 0, strlen($cookie->getPath()))) {
continue;
}
if ($cookie->isSecure() && 'https' != $parts['scheme']) {
continue;
}
$cookies[$cookie->getName()] = $cookie->getValue();
}
return $cookies;
}
/**
* Removes all expired cookies.
*/
public function flushExpiredCookies()
{
$cookies = $this->cookieJar;
foreach ($cookies as $name => $cookie) {
if ($cookie->isExpired()) {
unset($this->cookieJar[$name]);
}
}
}
2010-04-19 13:12:42 +01:00
}