Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
b7c8717a
Commit
b7c8717a
authored
6 years ago
by
Jaime Pérez Crespo
Browse files
Options
Downloads
Patches
Plain Diff
Start using the RunnableResponse.
Now we can test properly the controllers executing old code.
parent
be8b4f3a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/core/lib/Controller.php
+8
-4
8 additions, 4 deletions
modules/core/lib/Controller.php
with
8 additions
and
4 deletions
modules/core/lib/Controller.php
+
8
−
4
View file @
b7c8717a
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
namespace
SimpleSAML\Module\core
;
namespace
SimpleSAML\Module\core
;
use
SimpleSAML\Error\Exception
;
use
SimpleSAML\Error\Exception
;
use
SimpleSAML\HTTP\RunnableResponse
;
use
Symfony\Component\HttpFoundation\RedirectResponse
;
use
Symfony\Component\HttpFoundation\RedirectResponse
;
use
Symfony\Component\HttpFoundation\Request
;
use
Symfony\Component\HttpFoundation\Request
;
...
@@ -91,10 +93,10 @@ class Controller
...
@@ -91,10 +93,10 @@ class Controller
* @param Request $request The request that lead to this login operation.
* @param Request $request The request that lead to this login operation.
* @param string|null $as The name of the authentication source to use, if any. Optional.
* @param string|null $as The name of the authentication source to use, if any. Optional.
*
*
* @return \SimpleSAML\XHTML\Template|RedirectResponse An HTML template or a redirect response.
* @return \SimpleSAML\XHTML\Template|\SimpleSAML\HTTP\RunnableResponse|RedirectResponse An HTML template, a
* redirect or a "runnable" response.
*
*
* @throws \SimpleSAML\Error\Exception
* @throws \SimpleSAML\Error\Exception
* @throws \SimpleSAML\Error\CriticalConfigurationError
*/
*/
public
function
login
(
Request
$request
,
$as
=
null
)
public
function
login
(
Request
$request
,
$as
=
null
)
{
{
...
@@ -143,7 +145,7 @@ class Controller
...
@@ -143,7 +145,7 @@ class Controller
'ErrorURL'
=>
$url
,
'ErrorURL'
=>
$url
,
'ReturnTo'
=>
$url
,
'ReturnTo'
=>
$url
,
);
);
$auth
->
login
(
$params
);
return
new
RunnableResponse
([
$auth
,
'
login
'
],
[
$params
]
);
}
}
...
@@ -152,11 +154,13 @@ class Controller
...
@@ -152,11 +154,13 @@ class Controller
*
*
* @param string $as The name of the auth source.
* @param string $as The name of the auth source.
*
*
* @return \SimpleSAML\HTTP\RunnableResponse A runnable response which will actually perform logout.
*
* @throws \SimpleSAML\Error\CriticalConfigurationError
* @throws \SimpleSAML\Error\CriticalConfigurationError
*/
*/
public
function
logout
(
$as
)
public
function
logout
(
$as
)
{
{
$as
=
new
\SimpleSAML\Auth\Simple
(
$as
);
$as
=
new
\SimpleSAML\Auth\Simple
(
$as
);
$as
->
logout
(
$this
->
config
->
getBasePath
()
.
'logout.php'
);
return
new
RunnableResponse
([
$as
,
'
logout
'
],
[
$this
->
config
->
getBasePath
()
.
'logout.php'
]
);
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment