Browse Source

added cookie jar that holds cookies until end of request.

Taylor Otwell 13 years ago
parent
commit
4cf7f0c627
2 changed files with 52 additions and 7 deletions
  1. 36 7
      laravel/cookie.php
  2. 16 0
      laravel/laravel.php

+ 36 - 7
laravel/cookie.php

@@ -9,6 +9,13 @@ if (trim(Config::get('application.key')) === '')
 
 
 class Cookie {
 class Cookie {
 
 
+	/**
+	 * The cookies that have been set.
+	 *
+	 * @var array
+	 */
+	public static $jar = array();
+
 	/**
 	/**
 	 * Determine if a cookie exists.
 	 * Determine if a cookie exists.
 	 *
 	 *
@@ -82,22 +89,44 @@ class Cookie {
 	 */
 	 */
 	public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false)
 	public static function put($name, $value, $minutes = 0, $path = '/', $domain = null, $secure = false)
 	{
 	{
-		if (headers_sent()) return false;
-
 		$time = ($minutes !== 0) ? time() + ($minutes * 60) : 0;
 		$time = ($minutes !== 0) ? time() + ($minutes * 60) : 0;
 
 
-		$_COOKIE[$name] = static::sign($name, $value);
+		$_COOKIE[$name] = $value = static::sign($name, $value);
 
 
 		// A cookie payload can't exceed 4096 bytes, so if the payload
 		// A cookie payload can't exceed 4096 bytes, so if the payload
 		// is greater than that, we'll raise an exception to warn the
 		// is greater than that, we'll raise an exception to warn the
-		// developer of the problem since it may cause problems with
-		// the application, especially if using cookie sessions.
-		if (strlen($_COOKIE[$name]) > 4000)
+		// developer of the problem since it may cause bad problems.
+		if (strlen($value) > 4000)
 		{
 		{
 			throw new \Exception("Payload too large for cookie.");
 			throw new \Exception("Payload too large for cookie.");
 		}
 		}
 
 
-		return setcookie($name, $_COOKIE[$name], $time, $path, $domain, $secure);
+		static::$jar[$name] = compact(
+
+			'name', 'value', 'time', 'path', 'domain', 'secure'
+
+		);
+	}
+
+	/**
+	 * Send all of the cookies to the browser.
+	 *
+	 * @return void
+	 */
+	public static function send()
+	{
+		if (headers_sent()) return false;
+
+		// All cookies are stored in the "jar" when set and not sent
+		// immediately to the browser. This just makes testing the
+		// cookie functionality of an application much easier, as
+		// the jar can be inspected by the developer.
+		foreach (static::$jar as $cookie)
+		{
+			extract($cookie);
+
+			setcookie($name, $value, $time, $path, $domain, $secure);
+		}
 	}
 	}
 
 
 	/**
 	/**

+ 16 - 0
laravel/laravel.php

@@ -181,6 +181,22 @@ if (Config::get('session.driver') !== '')
 	Session::save();
 	Session::save();
 }
 }
 
 
+/**
+ * Send all of the cookies to the browser. The cookies are
+ * stored in a "jar" until the end of a request, primarily
+ * to make testing the cookie functionality of the site
+ * much easier since the jar can be inspected.
+ */
+if (Config::get('application.key') !== '')
+{
+	Cookie::send();	
+}
+
+/**
+ * Send the final response to the browser and fire the
+ * final event indicating that the processing for the
+ * current request is completed.
+ */
 $response->send();
 $response->send();
 
 
 Event::fire('laravel: done');
 Event::fire('laravel: done');