vendor/symfony/src/Symfony/Component/BrowserKit/CookieJar.php
changeset 0 7f95f8617b0b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/symfony/src/Symfony/Component/BrowserKit/CookieJar.php	Sat Sep 24 15:40:41 2011 +0200
@@ -0,0 +1,161 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Symfony\Component\BrowserKit;
+
+/**
+ * CookieJar.
+ *
+ * @author Fabien Potencier <fabien@symfony.com>
+ *
+ * @api
+ */
+class CookieJar
+{
+    protected $cookieJar = array();
+
+    /**
+     * Sets a cookie.
+     *
+     * @param Cookie $cookie A Cookie instance
+     *
+     * @api
+     */
+    public function set(Cookie $cookie)
+    {
+        $this->cookieJar[$cookie->getName()] = $cookie;
+    }
+
+    /**
+     * 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
+     *
+     * @api
+     */
+    public function get($name)
+    {
+        $this->flushExpiredCookies();
+
+        return isset($this->cookieJar[$name]) ? $this->cookieJar[$name] : null;
+    }
+
+    /**
+     * Removes a cookie by name.
+     *
+     * @param string $name The cookie name
+     *
+     * @api
+     */
+    public function expire($name)
+    {
+        unset($this->cookieJar[$name]);
+    }
+
+    /**
+     * Removes all the cookies from the jar.
+     *
+     * @api
+     */
+    public function clear()
+    {
+        $this->cookieJar = array();
+    }
+
+    /**
+     * Updates the cookie jar from a Response object.
+     *
+     * @param Response $response A Response object
+     * @param string   $uri    The base URL
+     */
+    public function updateFromResponse(Response $response, $uri = null)
+    {
+        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
+     * @param Boolean $returnsRawValue Returns raw value or urldecoded value
+     *
+     * @return array An array of cookie values
+     */
+    public function allValues($uri, $returnsRawValue = false)
+    {
+        $this->flushExpiredCookies();
+
+        $parts = array_replace(array('path' => '/'), parse_url($uri));
+
+        $cookies = array();
+        foreach ($this->cookieJar as $cookie) {
+            if ($cookie->getDomain()) {
+                $domain = ltrim($cookie->getDomain(), '.');
+                if ($domain != substr($parts['host'], -strlen($domain))) {
+                    continue;
+                }
+            }
+
+            if ($cookie->getPath() != substr($parts['path'], 0, strlen($cookie->getPath()))) {
+                continue;
+            }
+
+            if ($cookie->isSecure() && 'https' != $parts['scheme']) {
+                continue;
+            }
+
+            $cookies[$cookie->getName()] = $returnsRawValue ? $cookie->getRawValue() : $cookie->getValue();
+        }
+
+        return $cookies;
+    }
+
+    /**
+     * Returns not yet expired raw cookie values for the given URI.
+     *
+     * @param string $uri A URI
+     *
+     * @return array An array of cookie values
+     */
+    public function allRawValues($uri)
+    {
+        return $this->allValues($uri, true);
+    }
+
+    /**
+     * Removes all expired cookies.
+     */
+    public function flushExpiredCookies()
+    {
+        $cookies = $this->cookieJar;
+        foreach ($cookies as $name => $cookie) {
+            if ($cookie->isExpired()) {
+                unset($this->cookieJar[$name]);
+            }
+        }
+    }
+}