Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
f79dd1ba
Commit
f79dd1ba
authored
Aug 29, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
finished refactoring of the redirect generator.
parent
9be3d1a5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
72 deletions
+29
-72
container.php
laravel/config/container.php
+4
-32
redirect.php
laravel/redirect.php
+23
-39
response.php
laravel/response.php
+2
-1
No files found.
laravel/config/container.php
View file @
f79dd1ba
...
...
@@ -12,8 +12,6 @@ return array(
{
$config
=
$container
->
resolve
(
'laravel.config'
);
$connections
=
$config
->
get
(
'database.connections'
);
return
new
Database\Manager
(
$config
->
get
(
'database.connections'
),
$config
->
get
(
'database.default'
));
}),
...
...
@@ -24,28 +22,6 @@ return array(
}),
'laravel.form'
=>
array
(
'singleton'
=>
true
,
'resolver'
=>
function
(
$container
)
{
$request
=
$container
->
resolve
(
'laravel.request'
);
$html
=
$container
->
resolve
(
'laravel.html'
);
$url
=
$container
->
resolve
(
'laravel.url'
);
$token
=
(
$container
->
registered
(
'laravel.session.driver'
))
?
$container
->
resolve
(
'laravel.session.driver'
)
->
get
(
'csrf_token'
)
:
null
;
return
new
Form
(
$request
,
$html
,
$url
,
$token
);
}),
'laravel.html'
=>
array
(
'singleton'
=>
true
,
'resolver'
=>
function
(
$container
)
{
$encoding
=
$container
->
resolve
(
'laravel.config'
)
->
get
(
'application.encoding'
);
return
new
HTML
(
$container
->
resolve
(
'laravel.url'
),
$encoding
);
}),
'laravel.input'
=>
array
(
'singleton'
=>
true
,
'resolver'
=>
function
(
$container
)
{
$application
=
$container
->
resolve
(
'laravel.application'
);
...
...
@@ -75,11 +51,9 @@ return array(
}),
'laravel.re
sponder
'
=>
array
(
'singleton'
=>
true
,
'resolver'
=>
function
(
$container
)
'laravel.re
direct
'
=>
array
(
'singleton'
=>
true
,
'resolver'
=>
function
(
$container
)
{
require_once
SYS_PATH
.
'response'
.
PHP
;
return
new
Response_Factory
(
$container
->
resolve
(
'laravel.view'
),
$container
->
resolve
(
'laravel.file'
));
return
new
Redirect
(
$container
->
resolve
(
'laravel.url'
));
}),
...
...
@@ -91,13 +65,11 @@ return array(
'laravel.url'
=>
array
(
'singleton'
=>
true
,
'resolver'
=>
function
(
$container
)
{
$config
=
$container
->
resolve
(
'laravel.config'
);
$request
=
$container
->
resolve
(
'laravel.request'
);
$base
=
$con
fig
->
get
(
'application.url'
);
$base
=
$con
tainer
->
resolve
(
'laravel.config'
)
->
get
(
'application.url'
);
$index
=
$con
fig
->
get
(
'application.index'
);
$index
=
$con
tainer
->
resolve
(
'laravel.config'
)
->
get
(
'application.index'
);
return
new
URL
(
$container
->
resolve
(
'laravel.router'
),
$base
,
$index
,
$request
->
secure
);
}),
...
...
laravel/redirect.php
View file @
f79dd1ba
...
...
@@ -3,18 +3,18 @@
class
Redirect
extends
Response
{
/**
* Create a redirect response.
*
* <code>
* // Create a redirect for the "user/profile" URI
* return Redirect::to('user/profile');
* Create a new redirect generator instance.
*
* // Create a redirect using the 301 status code
* return Redirect::to('user/profile', 301);
*
* // Create a redirect using the "refresh" method
* return Redirect::to('user/profile', 302, 'refresh');
* </code>
* @param URL $url
* @return void
*/
public
function
__construct
(
URL
$url
)
{
$this
->
url
=
$url
;
}
/**
* Create a redirect response.
*
* @param string $url
* @param int $status
...
...
@@ -22,36 +22,33 @@ class Redirect extends Response {
* @param bool $https
* @return Redirect
*/
public
static
function
to
(
$url
,
$status
=
302
,
$method
=
'location'
,
$https
=
false
)
public
function
to
(
$url
,
$status
=
302
,
$method
=
'location'
,
$https
=
false
)
{
$url
=
URL
::
to
(
$url
,
$https
);
$url
=
$this
->
url
->
to
(
$url
,
$https
);
parent
::
__construct
(
''
,
$status
);
if
(
$method
==
'location'
)
{
return
parent
::
__construct
(
''
,
$status
)
->
header
(
'Refresh'
,
'0;url='
.
$url
);
return
$this
->
header
(
'Refresh'
,
'0;url='
.
$url
);
}
else
{
return
parent
::
__construct
(
''
,
$status
)
->
header
(
'Location'
,
$url
);
return
$this
->
header
(
'Location'
,
$url
);
}
}
/**
* Create a redirect response to a HTTPS URL.
*
* <code>
* // Create a HTTPS redirect to the "user/profile" URI
* return Redirect::to_secure('user/profile');
* </code>
*
* @param string $url
* @param int $status
* @param string $method
* @return Response
*/
public
static
function
to_secure
(
$url
,
$status
=
302
,
$method
=
'location'
)
public
function
to_secure
(
$url
,
$status
=
302
,
$method
=
'location'
)
{
return
static
::
to
(
$url
,
$status
,
$method
,
true
);
return
$this
->
to
(
$url
,
$status
,
$method
,
true
);
}
/**
...
...
@@ -59,11 +56,6 @@ class Redirect extends Response {
*
* This is useful for passing status messages or other temporary data to the next request.
*
* <code>
* // Flash a status message to the session on a redirect
* return Redirect::to('user/profile')->with('status', 'Welcome Back!');
* </code>
*
* @param string $key
* @param mixed $value
* @return Response
...
...
@@ -76,28 +68,20 @@ class Redirect extends Response {
}
/**
* Magic Method to handle redirecting to named routes.
*
* <code>
* // Create a redirect to the "profile" route
* return Redirect::to_profile();
*
* // Create a redirect to the "profile" route using HTTPS
* return Redirect::to_secure_profile();
* </code>
* Magic Method to handle creation of redirects to named routes.
*/
public
static
function
__callStatic
(
$method
,
$parameters
)
public
function
__call
(
$method
,
$parameters
)
{
$parameters
=
(
isset
(
$parameters
[
0
]))
?
$parameters
[
0
]
:
array
();
if
(
strpos
(
$method
,
'to_secure_'
)
===
0
)
{
return
static
::
to
(
URL
::
to_route
(
substr
(
$method
,
10
),
$parameters
,
true
));
return
$this
->
to
(
$this
->
url
->
to_route
(
substr
(
$method
,
10
),
$parameters
,
true
));
}
if
(
strpos
(
$method
,
'to_'
)
===
0
)
{
return
static
::
to
(
URL
::
to_route
(
substr
(
$method
,
3
),
$parameters
));
return
$this
->
to
(
$this
->
url
->
to_route
(
substr
(
$method
,
3
),
$parameters
));
}
throw
new
\Exception
(
"Method [
$method
] is not defined on the Redirect class."
);
...
...
laravel/response.php
View file @
f79dd1ba
...
...
@@ -178,6 +178,7 @@ class Response {
*
* @param mixed $content
* @param int $status
* @return void
*/
public
function
__construct
(
$content
,
$status
=
200
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment