Browse Source

move 'is' method to the str class where it belongs.

Taylor Otwell 12 years ago
parent
commit
34cb9a00f4
4 changed files with 47 additions and 18 deletions
  1. 2 1
      laravel/routing/route.php
  2. 24 0
      laravel/str.php
  3. 2 17
      laravel/uri.php
  4. 19 0
      paths.php

+ 2 - 1
laravel/routing/route.php

@@ -1,6 +1,7 @@
 <?php namespace Laravel\Routing;
 <?php namespace Laravel\Routing;
 
 
 use Closure;
 use Closure;
+use Laravel\Str;
 use Laravel\URI;
 use Laravel\URI;
 use Laravel\Bundle;
 use Laravel\Bundle;
 use Laravel\Request;
 use Laravel\Request;
@@ -198,7 +199,7 @@ class Route {
 		// if they match we'll attach the filter.
 		// if they match we'll attach the filter.
 		foreach (Filter::$patterns as $pattern => $filter)
 		foreach (Filter::$patterns as $pattern => $filter)
 		{
 		{
-			if (URI::is($pattern, $this->uri))
+			if (Str::is($pattern, $this->uri))
 			{
 			{
 				$filters[] = $filter;
 				$filters[] = $filter;
 			}
 			}

+ 24 - 0
laravel/str.php

@@ -300,6 +300,30 @@ class Str {
 		return substr(str_shuffle(str_repeat(static::pool($type), 5)), 0, $length);
 		return substr(str_shuffle(str_repeat(static::pool($type), 5)), 0, $length);
 	}
 	}
 
 
+	/**
+	 * Determine if a given string matches a given pattern.
+	 *
+	 * @param  string  $pattern
+	 * @param  string  $value
+	 * @return bool
+	 */
+	public static function is($pattern, $value)
+	{
+		// Asterisks are translated into zero-or-more regular expression wildcards
+		// to make it convenient to check if the URI starts with a given pattern
+		// such as "library/*". This is only done when not root.
+		if ($pattern !== '/')
+		{
+			$pattern = str_replace('*', '(.*)', $pattern).'\z';
+		}
+		else
+		{
+			$pattern = '^/$';
+		}
+
+		return preg_match('#'.$pattern.'#', $value);
+	}
+
 	/**
 	/**
 	 * Get the character pool for a given type of random string.
 	 * Get the character pool for a given type of random string.
 	 *
 	 *

+ 2 - 17
laravel/uri.php

@@ -60,26 +60,11 @@ class URI {
 	 * Determine if the current URI matches a given pattern.
 	 * Determine if the current URI matches a given pattern.
 	 *
 	 *
 	 * @param  string  $pattern
 	 * @param  string  $pattern
-	 * @param  string  $uri
 	 * @return bool
 	 * @return bool
 	 */
 	 */
-	public static function is($pattern, $uri = null)
+	public static function is($pattern)
 	{
 	{
-		$uri = $uri ?: static::current();
-
-		// Asterisks are translated into zero-or-more regular expression wildcards
-		// to make it convenient to check if the URI starts with a given pattern
-		// such as "library/*". This is only done when not root.
-		if ($pattern !== '/')
-		{
-			$pattern = str_replace('*', '(.*)', $pattern).'\z';
-		}
-		else
-		{
-			$pattern = '^/$';
-		}
-
-		return preg_match('#'.$pattern.'#', $uri);
+		return Str::is($pattern, static::current());
 	}
 	}
 
 
 	/**
 	/**

+ 19 - 0
paths.php

@@ -8,6 +8,25 @@
  * @link     http://laravel.com
  * @link     http://laravel.com
  */
  */
 
 
+/*
+|----------------------------------------------------------------
+| Application Environemtns
+|----------------------------------------------------------------
+|
+| Laravel takes a dead simple approach to environments, and we
+| think you'll love it. Just specify which URLs belongs to a
+| given environment, and when you access your application
+| from a URL matching that pattern, we'll be sure to
+| merge in that environment's configuration files.
+|
+*/
+
+$environments = array(
+
+	'local' => array('*localhost*', '*.dev'),
+
+);
+
 // --------------------------------------------------------------
 // --------------------------------------------------------------
 // The path to the application directory.
 // The path to the application directory.
 // --------------------------------------------------------------
 // --------------------------------------------------------------