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
71f916ee
Commit
71f916ee
authored
3 years ago
by
Tim van Dijen
Browse files
Options
Downloads
Patches
Plain Diff
Fix request
parent
f7954199
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/exampleauth/lib/Auth/Source/External.php
+5
-3
5 additions, 3 deletions
modules/exampleauth/lib/Auth/Source/External.php
modules/exampleauth/lib/Controller/ExampleAuth.php
+2
-3
2 additions, 3 deletions
modules/exampleauth/lib/Controller/ExampleAuth.php
with
7 additions
and
6 deletions
modules/exampleauth/lib/Auth/Source/External.php
+
5
−
3
View file @
71f916ee
...
@@ -183,16 +183,18 @@ class External extends Auth\Source
...
@@ -183,16 +183,18 @@ class External extends Auth\Source
* This function resumes the authentication process after the user has
* This function resumes the authentication process after the user has
* entered his or her credentials.
* entered his or her credentials.
*
*
* @param \Symfony\Component\HttpFoundation\Request $request
*
* @throws \SimpleSAML\Error\BadRequest
* @throws \SimpleSAML\Error\BadRequest
* @throws \SimpleSAML\Error\Exception
* @throws \SimpleSAML\Error\Exception
*/
*/
public
static
function
resume
():
void
public
static
function
resume
(
Request
$request
):
void
{
{
/*
/*
* First we need to restore the $state-array. We should have the identifier for
* First we need to restore the $state-array. We should have the identifier for
* it in the 'State' request parameter.
* it in the 'State' request parameter.
*/
*/
if
(
!
isset
(
$_REQUEST
[
'State'
]
))
{
if
(
!
$request
->
has
(
'State'
))
{
throw
new
Error\BadRequest
(
'Missing "State" parameter.'
);
throw
new
Error\BadRequest
(
'Missing "State" parameter.'
);
}
}
...
@@ -201,7 +203,7 @@ class External extends Auth\Source
...
@@ -201,7 +203,7 @@ class External extends Auth\Source
* match the string we used in the saveState-call above.
* match the string we used in the saveState-call above.
*/
*/
/** @var array $state */
/** @var array $state */
$state
=
Auth\State
::
loadState
(
$
_REQUEST
[
'State'
]
,
'exampleauth:External'
);
$state
=
Auth\State
::
loadState
(
$
request
->
get
(
'State'
)
,
'exampleauth:External'
);
/*
/*
* Now we have the $state-array, and can use it to locate the authentication
* Now we have the $state-array, and can use it to locate the authentication
...
...
This diff is collapsed.
Click to expand it.
modules/exampleauth/lib/Controller/ExampleAuth.php
+
2
−
3
View file @
71f916ee
...
@@ -200,7 +200,7 @@ class ExampleAuth
...
@@ -200,7 +200,7 @@ class ExampleAuth
*
*
* @return \SimpleSAML\HTTP\RunnableResponse
* @return \SimpleSAML\HTTP\RunnableResponse
*/
*/
public
function
resume
(
/** @scrutinizer ignore-unused */
Request
$request
):
RunnableResponse
public
function
resume
(
Request
$request
):
RunnableResponse
{
{
/**
/**
* This page serves as the point where the user's authentication
* This page serves as the point where the user's authentication
...
@@ -208,7 +208,6 @@ class ExampleAuth
...
@@ -208,7 +208,6 @@ class ExampleAuth
*
*
* It simply passes control back to the class.
* It simply passes control back to the class.
*/
*/
return
new
RunnableResponse
([
External
::
class
,
'resume'
],
[
$request
]);
return
new
RunnableResponse
([
External
::
class
,
'resume'
],
[]);
}
}
}
}
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