Skip to content
Snippets Groups Projects
Commit 71f916ee authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix request

parent f7954199
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
...@@ -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'], []);
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment