Commit ab6e3645 by Taylor Otwell

added simpler and easier environment handling.

parent 34cb9a00
...@@ -108,93 +108,122 @@ Autoloader::namespaces(array( ...@@ -108,93 +108,122 @@ Autoloader::namespaces(array(
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Set The CLI Options Array | Magic Quotes Strip Slashes
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| If the current request is from the Artisan command-line interface, we | Even though "Magic Quotes" are deprecated in PHP 5.3.x, they may still
| will parse the command line arguments and options and set them the | be enabled on the server. To account for this, we will strip slashes
| array of options in the $_SERVER global array for convenience. | on all input arrays if magic quotes are enabled for the server.
| |
*/ */
if (defined('STDIN')) if (magic_quotes())
{ {
$console = CLI\Command::options($_SERVER['argv']); $magics = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
list($arguments, $options) = $console; foreach ($magics as &$magic)
{
$magic = array_strip_slashes($magic);
}
}
$options = array_change_key_case($options, CASE_UPPER); /*
|--------------------------------------------------------------------------
| Create The HttpFoundation Request
|--------------------------------------------------------------------------
|
| Laravel uses the HttpFoundation Symfony component to handle the request
| and response functionality for the framework. This allows us to not
| worry about that boilerplate code and focus on what matters.
|
*/
$_SERVER['CLI'] = $options; use Symfony\Component\HttpFoundation\LaravelRequest as RequestFoundation;
}
Request::$foundation = RequestFoundation::createFromGlobals();
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Set The CLI Laravel Environment | Determine The Application Environment
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| Next we'll set the LARAVEL_ENV variable if the current request is from | Next we're ready to determine the application environment. This may be
| the Artisan command-line interface. Since the environment is often | set either via the command line options, or, if the request is from
| specified within an Apache .htaccess file, we need to set it here | the web, via the mapping of URIs to environments that lives in
| when the request is not coming through Apache. | the "paths.php" file for the application and is parsed.
| |
*/ */
if (isset($_SERVER['CLI']['ENV'])) if (Request::cli())
{
foreach (Request::foundation()->server->get('argv') as $argument)
{
if (starts_with($argument, '--env='))
{
$environment = substr($argument, 6);
break;
}
}
}
else
{ {
$_SERVER['LARAVEL_ENV'] = $_SERVER['CLI']['ENV']; $environment = Request::detect_env($environments);
} }
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Register The Laravel Bundles | Set The Application Environment
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| Finally we will register all of the bundles that have been defined for | Once we have determined the application environment, we will set it on
| the application. None of them will be started, yet but will be setup | the global server array of the HttpFoundation request. This makes it
| so that they may be started by the develop at any time. | available throughout the application, thought it is mainly only
| used to determine which configuration files to merge in.
| |
*/ */
$bundles = require path('app').'bundles'.EXT; if ( ! is_null($environment))
foreach ($bundles as $bundle => $config)
{ {
Bundle::register($bundle, $config); Request::foundation()->server->set('LARAVEL_ENV', $environment);
} }
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Magic Quotes Strip Slashes | Set The CLI Options Array
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| Even though "Magic Quotes" are deprecated in PHP 5.3.x, they may still | If the current request is from the Artisan command-line interface, we
| be enabled on the server. To account for this, we will strip slashes | will parse the command line arguments and options and set them the
| on all input arrays if magic quotes are enabled for the server. | array of options in the $_SERVER global array for convenience.
| |
*/ */
if (magic_quotes()) if (defined('STDIN'))
{ {
$magics = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST); $console = CLI\Command::options($_SERVER['argv']);
foreach ($magics as &$magic) list($arguments, $options) = $console;
{
$magic = array_strip_slashes($magic); $options = array_change_key_case($options, CASE_UPPER);
}
$_SERVER['CLI'] = $options;
} }
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Create The HttpFoundation Request | Register The Laravel Bundles
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| Laravel uses the HttpFoundation Symfony component to handle the request | Finally we will register all of the bundles that have been defined for
| and response functionality for the framework. This allows us to not | the application. None of them will be started, yet but will be setup
| worry about that boilerplate code and focus on what matters. | so that they may be started by the develop at any time.
| |
*/ */
use Symfony\Component\HttpFoundation\LaravelRequest as RequestFoundation; $bundles = require path('app').'bundles'.EXT;
Request::$foundation = RequestFoundation::createFromGlobals(); foreach ($bundles as $bundle => $config)
\ No newline at end of file {
Bundle::register($bundle, $config);
}
\ No newline at end of file
...@@ -209,6 +209,31 @@ class Request { ...@@ -209,6 +209,31 @@ class Request {
} }
/** /**
* Detect the current environment from an environment configuration.
*
* @param array $environments
* @return string|null
*/
public static function detect_env(array $environments)
{
$root = static::foundation()->getRootUrl();
foreach ($environments as $environment => $patterns)
{
// Essentially we just want to loop through each environment pattern
// and determine if the current URI matches the pattern and if so
// we'll simply return the environment for that URI pattern.
foreach ($patterns as $pattern)
{
if (Str::is($pattern, $root))
{
return $environment;
}
}
}
}
/**
* Get the main route handling the request. * Get the main route handling the request.
* *
* @return Route * @return Route
......
...@@ -70,9 +70,7 @@ class URL { ...@@ -70,9 +70,7 @@ class URL {
} }
else else
{ {
$f = Request::foundation(); $base = Request::foundation()->getRootUrl();
$base = $f->getScheme().'://'.$f->getHttpHost().$f->getBasePath();
} }
return static::$base = $base; return static::$base = $base;
......
...@@ -24,4 +24,14 @@ class LaravelRequest extends Request { ...@@ -24,4 +24,14 @@ class LaravelRequest extends Request {
return $request; return $request;
} }
/**
* Get the root URL of the application.
*
* @return string
*/
public function getRootUrl()
{
return $this->getScheme().'://'.$this->getHttpHost().$this->getBasePath();
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment