Total Complexity | 56 |
Total Lines | 606 |
Duplicated Lines | 0 % |
Changes | 10 | ||
Bugs | 0 | Features | 0 |
Complex classes like SecondFactorController often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use SecondFactorController, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
54 | class SecondFactorController extends Controller |
||
55 | { |
||
56 | const MODE_SFO = 'sfo'; |
||
57 | const MODE_SSO = 'sso'; |
||
58 | |||
59 | public function selectSecondFactorForVerificationSsoAction(Request $request) |
||
60 | { |
||
61 | return $this->selectSecondFactorForVerificationAction(self::MODE_SSO, $request); |
||
62 | } |
||
63 | |||
64 | public function selectSecondFactorForVerificationSfoAction(Request $request) |
||
67 | } |
||
68 | |||
69 | public function selectSecondFactorForVerificationAction($authenticationMode, Request $request) |
||
70 | { |
||
71 | $this->supportsAuthenticationMode($authenticationMode); |
||
72 | $context = $this->getResponseContext($authenticationMode); |
||
73 | $originalRequestId = $context->getInResponseTo(); |
||
74 | /** @var \Surfnet\SamlBundle\Monolog\SamlAuthenticationLogger $logger */ |
||
75 | $logger = $this->get('surfnet_saml.logger')->forAuthentication($originalRequestId); |
||
76 | $logger->notice('Determining which second factor to use...'); |
||
77 | try { |
||
78 | // Retrieve all requirements to determine the required LoA |
||
79 | $requestedLoa = $context->getRequiredLoa(); |
||
80 | $spConfiguredLoas = $context->getServiceProvider()->get('configuredLoas'); |
||
81 | $identityNameId = $context->getIdentityNameId(); |
||
82 | $normalizedIdpSho = $context->getNormalizedSchacHomeOrganization(); |
||
83 | $normalizedUserSho = $this->getStepupService()->getNormalizedUserShoByIdentityNameId($identityNameId); |
||
84 | $requiredLoa = $this |
||
85 | ->getStepupService() |
||
86 | ->resolveHighestRequiredLoa( |
||
87 | $requestedLoa, |
||
88 | $spConfiguredLoas, |
||
89 | $normalizedIdpSho, |
||
90 | $normalizedUserSho |
||
91 | ); |
||
92 | } catch (LoaCannotBeGivenException $e) { |
||
93 | // Log the message of the domain exception, this contains a meaningful message. |
||
94 | $logger->notice($e->getMessage()); |
||
95 | return $this->forward( |
||
96 | 'SurfnetStepupGatewayGatewayBundle:Gateway:sendLoaCannotBeGiven', |
||
97 | ['authenticationMode' => $authenticationMode] |
||
98 | ); |
||
99 | } |
||
100 | |||
101 | $logger->notice(sprintf('Determined that the required Loa is "%s"', $requiredLoa)); |
||
102 | if ($this->getStepupService()->isIntrinsicLoa($requiredLoa)) { |
||
103 | $this->get('gateway.authentication_logger')->logIntrinsicLoaAuthentication($originalRequestId); |
||
104 | return $this->forward($context->getResponseAction()); |
||
105 | } |
||
106 | |||
107 | // The preconditions must be met in order to give SSO on 2FA |
||
108 | // 1: AuthNRequest is not force authn. 2: The SP allows SSO on 2FA. |
||
109 | if ($this->getCookieService()->preconditionsAreMet($context)) { |
||
110 | // Now read the SSO cookie |
||
111 | $ssoCookie = $this->getCookieService()->read($request); |
||
112 | // Test if the SSO cookie can satisfy the second factor authentication requirements |
||
113 | if ($this->getCookieService()->maySkipAuthentication($requiredLoa->getLevel(), $identityNameId, $ssoCookie)) { |
||
114 | $logger->notice('Skipping second factor authentication. Required LoA was met by the LoA recorded in the cookie'); |
||
115 | // We use the SF from the cookie as the SF that was used for authenticating the second factor authentication |
||
116 | $secondFactor = $this->getSecondFactorService()->findByUuid($ssoCookie->secondFactorId()); |
||
117 | $this->getResponseContext($authenticationMode)->saveSelectedSecondFactor($secondFactor); |
||
118 | $this->getResponseContext($authenticationMode)->markSecondFactorVerified(); |
||
119 | $this->getResponseContext($authenticationMode)->markVerifiedBySsoOn2faCookie( |
||
120 | $this->getCookieService()->getCookieFingerprint($request) |
||
121 | ); |
||
122 | $this->getAuthenticationLogger()->logSecondFactorAuthentication($originalRequestId, $authenticationMode); |
||
123 | return $this->forward($context->getResponseAction()); |
||
124 | } |
||
125 | } |
||
126 | |||
127 | $secondFactorCollection = $this |
||
128 | ->getStepupService() |
||
129 | ->determineViableSecondFactors( |
||
130 | $context->getIdentityNameId(), |
||
131 | $requiredLoa, |
||
132 | $this->get('gateway.service.whitelist') |
||
133 | ); |
||
134 | switch (count($secondFactorCollection)) { |
||
135 | case 0: |
||
136 | $logger->notice('No second factors can give the determined Loa'); |
||
137 | return $this->forward( |
||
138 | 'SurfnetStepupGatewayGatewayBundle:Gateway:sendLoaCannotBeGiven', |
||
139 | ['authenticationMode' => $authenticationMode] |
||
140 | ); |
||
141 | case 1: |
||
142 | $secondFactor = $secondFactorCollection->first(); |
||
143 | $logger->notice(sprintf( |
||
144 | 'Found "%d" second factors, using second factor of type "%s"', |
||
145 | count($secondFactorCollection), |
||
146 | $secondFactor->secondFactorType |
||
147 | )); |
||
148 | return $this->selectAndRedirectTo($secondFactor, $context, $authenticationMode); |
||
149 | default: |
||
150 | return $this->forward( |
||
151 | 'SurfnetStepupGatewayGatewayBundle:SecondFactor:chooseSecondFactor', |
||
152 | ['authenticationMode' => $authenticationMode, 'secondFactors' => $secondFactorCollection] |
||
153 | ); |
||
154 | } |
||
155 | } |
||
156 | |||
157 | /** |
||
158 | * The main WAYG screen |
||
159 | * - Shows the token selection screen if you own > 1 token |
||
160 | * - Directly goes to SF auth when identity owns 1 token |
||
161 | * |
||
162 | * @Template |
||
163 | * @param Request $request |
||
164 | * @param string $authenticationMode |
||
165 | * @return array|RedirectResponse|Response |
||
166 | * @SuppressWarnings(PHPMD.ExcessiveMethodLength) |
||
167 | */ |
||
168 | public function chooseSecondFactorAction(Request $request, $authenticationMode) |
||
169 | { |
||
170 | $this->supportsAuthenticationMode($authenticationMode); |
||
171 | $context = $this->getResponseContext($authenticationMode); |
||
172 | $originalRequestId = $context->getInResponseTo(); |
||
173 | |||
174 | /** @var \Surfnet\SamlBundle\Monolog\SamlAuthenticationLogger $logger */ |
||
175 | $logger = $this->get('surfnet_saml.logger')->forAuthentication($originalRequestId); |
||
176 | $logger->notice('Ask the user which one of his suitable second factor tokens to use...'); |
||
177 | |||
178 | try { |
||
179 | // Retrieve all requirements to determine the required LoA |
||
180 | $requestedLoa = $context->getRequiredLoa(); |
||
181 | $spConfiguredLoas = $context->getServiceProvider()->get('configuredLoas'); |
||
182 | |||
183 | $normalizedIdpSho = $context->getNormalizedSchacHomeOrganization(); |
||
184 | $normalizedUserSho = $this->getStepupService()->getNormalizedUserShoByIdentityNameId($context->getIdentityNameId()); |
||
185 | |||
186 | $requiredLoa = $this |
||
187 | ->getStepupService() |
||
188 | ->resolveHighestRequiredLoa( |
||
189 | $requestedLoa, |
||
190 | $spConfiguredLoas, |
||
191 | $normalizedIdpSho, |
||
192 | $normalizedUserSho |
||
193 | ); |
||
194 | } catch (LoaCannotBeGivenException $e) { |
||
195 | // Log the message of the domain exception, this contains a meaningful message. |
||
196 | $logger->notice($e->getMessage()); |
||
197 | return $this->forward('SurfnetStepupGatewayGatewayBundle:Gateway:sendLoaCannotBeGiven'); |
||
198 | } |
||
199 | |||
200 | $logger->notice(sprintf('Determined that the required Loa is "%s"', $requiredLoa)); |
||
201 | |||
202 | $secondFactors = $this |
||
203 | ->getStepupService() |
||
204 | ->determineViableSecondFactors( |
||
205 | $context->getIdentityNameId(), |
||
206 | $requiredLoa, |
||
207 | $this->get('gateway.service.whitelist') |
||
208 | ); |
||
209 | |||
210 | $command = new ChooseSecondFactorCommand(); |
||
211 | $command->secondFactors = $secondFactors; |
||
212 | |||
213 | $form = $this |
||
214 | ->createForm( |
||
215 | ChooseSecondFactorType::class, |
||
216 | $command, |
||
217 | ['action' => $this->generateUrl('gateway_verify_second_factor_choose_second_factor', ['authenticationMode' => $authenticationMode])] |
||
218 | ) |
||
219 | ->handleRequest($request); |
||
220 | $cancelForm = $this->buildCancelAuthenticationForm($authenticationMode)->handleRequest($request); |
||
221 | |||
222 | if ($form->isSubmitted() && $form->isValid()) { |
||
223 | $buttonName = $form->getClickedButton()->getName(); |
||
224 | $formResults = $request->request->get('gateway_choose_second_factor', false); |
||
225 | |||
226 | if (!isset($formResults[$buttonName])) { |
||
227 | throw new InvalidArgumentException( |
||
228 | sprintf( |
||
229 | 'Second factor type "%s" could not be found in the posted form results.', |
||
230 | $buttonName |
||
231 | ) |
||
232 | ); |
||
233 | } |
||
234 | |||
235 | $secondFactorType = $formResults[$buttonName]; |
||
236 | |||
237 | // Filter the selected second factor from the array collection |
||
238 | $secondFactorFiltered = $secondFactors->filter( |
||
239 | function ($secondFactor) use ($secondFactorType) { |
||
240 | return $secondFactorType === $secondFactor->secondFactorType; |
||
241 | } |
||
242 | ); |
||
243 | |||
244 | if ($secondFactorFiltered->isEmpty()) { |
||
245 | throw new InvalidArgumentException( |
||
246 | sprintf( |
||
247 | 'Second factor type "%s" could not be found in the collection of available second factors.', |
||
248 | $secondFactorType |
||
249 | ) |
||
250 | ); |
||
251 | } |
||
252 | |||
253 | $secondFactor = $secondFactorFiltered->first(); |
||
254 | |||
255 | $logger->notice(sprintf('User chose "%s" to use as second factor', $secondFactorType)); |
||
256 | |||
257 | // Forward to action to verify possession of second factor |
||
258 | return $this->selectAndRedirectTo($secondFactor, $context, $authenticationMode); |
||
259 | } else if ($form->isSubmitted() && !$form->isValid()) { |
||
260 | $form->addError( |
||
261 | new FormError( |
||
262 | $this->get('translator') |
||
263 | ->trans('gateway.form.gateway_choose_second_factor.unknown_second_factor_type') |
||
264 | ) |
||
265 | ); |
||
266 | } |
||
267 | |||
268 | return [ |
||
269 | 'form' => $form->createView(), |
||
270 | 'cancelForm' => $cancelForm->createView(), |
||
271 | 'secondFactors' => $secondFactors, |
||
272 | ]; |
||
273 | } |
||
274 | |||
275 | public function verifyGssfAction(Request $request) |
||
276 | { |
||
277 | if (!$request->get('authenticationMode', false)) { |
||
278 | throw new RuntimeException('Unable to determine the authentication mode in the GSSP verification action'); |
||
279 | } |
||
280 | $authenticationMode = $request->get('authenticationMode'); |
||
281 | $this->supportsAuthenticationMode($authenticationMode); |
||
282 | $context = $this->getResponseContext($authenticationMode); |
||
283 | |||
284 | $originalRequestId = $context->getInResponseTo(); |
||
285 | |||
286 | /** @var \Surfnet\SamlBundle\Monolog\SamlAuthenticationLogger $logger */ |
||
287 | $logger = $this->get('surfnet_saml.logger')->forAuthentication($originalRequestId); |
||
288 | $logger->info('Received request to verify GSSF'); |
||
289 | |||
290 | $selectedSecondFactor = $this->getSelectedSecondFactor($context, $logger); |
||
291 | |||
292 | $logger->info(sprintf( |
||
293 | 'Selected GSSF "%s" for verfication, forwarding to Saml handling', |
||
294 | $selectedSecondFactor |
||
295 | )); |
||
296 | |||
297 | /** @var \Surfnet\StepupGateway\GatewayBundle\Service\SecondFactorService $secondFactorService */ |
||
298 | $secondFactorService = $this->get('gateway.service.second_factor_service'); |
||
299 | /** @var \Surfnet\StepupGateway\GatewayBundle\Entity\SecondFactor $secondFactor */ |
||
300 | $secondFactor = $secondFactorService->findByUuid($selectedSecondFactor); |
||
301 | if (!$secondFactor) { |
||
302 | throw new RuntimeException(sprintf( |
||
303 | 'Requested verification of GSSF "%s", however that Second Factor no longer exists', |
||
304 | $selectedSecondFactor |
||
305 | )); |
||
306 | } |
||
307 | |||
308 | // Also send the response context service id, as later we need to know if this is regular SSO or SFO authn. |
||
309 | $responseContextServiceId = $context->getResponseContextServiceId(); |
||
310 | |||
311 | return $this->forward( |
||
312 | 'SurfnetStepupGatewaySamlStepupProviderBundle:SamlProxy:sendSecondFactorVerificationAuthnRequest', |
||
313 | [ |
||
314 | 'provider' => $secondFactor->secondFactorType, |
||
315 | 'subjectNameId' => $secondFactor->secondFactorIdentifier, |
||
316 | 'responseContextServiceId' => $responseContextServiceId, |
||
317 | ] |
||
318 | ); |
||
319 | } |
||
320 | |||
321 | public function gssfVerifiedAction(Request $request) |
||
322 | { |
||
323 | $authenticationMode = $request->get('authenticationMode'); |
||
324 | $this->supportsAuthenticationMode($authenticationMode); |
||
325 | $context = $this->getResponseContext($authenticationMode); |
||
326 | |||
327 | $originalRequestId = $context->getInResponseTo(); |
||
328 | |||
329 | /** @var \Surfnet\SamlBundle\Monolog\SamlAuthenticationLogger $logger */ |
||
330 | $logger = $this->get('surfnet_saml.logger')->forAuthentication($originalRequestId); |
||
331 | $logger->info('Attempting to mark GSSF as verified'); |
||
332 | |||
333 | $selectedSecondFactor = $this->getSelectedSecondFactor($context, $logger); |
||
334 | |||
335 | /** @var \Surfnet\StepupGateway\GatewayBundle\Entity\SecondFactor $secondFactor */ |
||
336 | $secondFactor = $this->get('gateway.service.second_factor_service')->findByUuid($selectedSecondFactor); |
||
337 | if (!$secondFactor) { |
||
338 | throw new RuntimeException( |
||
339 | sprintf( |
||
340 | 'Verification of GSSF "%s" succeeded, however that Second Factor no longer exists', |
||
341 | $selectedSecondFactor |
||
342 | ) |
||
343 | ); |
||
344 | } |
||
345 | |||
346 | $this->getAuthenticationLogger()->logSecondFactorAuthentication($originalRequestId, $authenticationMode); |
||
347 | $context->markSecondFactorVerified(); |
||
348 | |||
349 | $logger->info(sprintf( |
||
350 | 'Marked GSSF "%s" as verified, forwarding to Gateway controller to respond', |
||
351 | $selectedSecondFactor |
||
352 | )); |
||
353 | return $this->forward($context->getResponseAction()); |
||
354 | } |
||
355 | |||
356 | /** |
||
357 | * @Template |
||
358 | * @param Request $request |
||
359 | * @return array|Response |
||
360 | */ |
||
361 | public function verifyYubiKeySecondFactorAction(Request $request) |
||
362 | { |
||
363 | if (!$request->get('authenticationMode', false)) { |
||
364 | throw new RuntimeException('Unable to determine the authentication mode in Yubikey verification action'); |
||
365 | } |
||
366 | $authenticationMode = $request->get('authenticationMode'); |
||
367 | $this->supportsAuthenticationMode($authenticationMode); |
||
368 | $context = $this->getResponseContext($authenticationMode); |
||
369 | $originalRequestId = $context->getInResponseTo(); |
||
370 | |||
371 | /** @var \Surfnet\SamlBundle\Monolog\SamlAuthenticationLogger $logger */ |
||
372 | $logger = $this->get('surfnet_saml.logger')->forAuthentication($originalRequestId); |
||
373 | |||
374 | $selectedSecondFactor = $this->getSelectedSecondFactor($context, $logger); |
||
375 | |||
376 | $logger->notice('Verifying possession of Yubikey second factor'); |
||
377 | |||
378 | $command = new VerifyYubikeyOtpCommand(); |
||
379 | $command->secondFactorId = $selectedSecondFactor; |
||
380 | |||
381 | $form = $this->createForm(VerifyYubikeyOtpType::class, $command)->handleRequest($request); |
||
382 | $cancelForm = $this->buildCancelAuthenticationForm($authenticationMode)->handleRequest($request); |
||
383 | |||
384 | if ($form->isSubmitted() && $form->isValid()) { |
||
385 | $result = $this->getStepupService()->verifyYubikeyOtp($command); |
||
386 | if ($result->didOtpVerificationFail()) { |
||
387 | $form->addError( |
||
388 | new FormError($this->get('translator')->trans('gateway.form.verify_yubikey.otp_verification_failed')) |
||
389 | ); |
||
390 | |||
391 | // OTP field is rendered empty in the template. |
||
392 | return ['form' => $form->createView(), 'cancelForm' => $cancelForm->createView()]; |
||
393 | } elseif (!$result->didPublicIdMatch()) { |
||
394 | $form->addError( |
||
395 | new FormError($this->get('translator')->trans('gateway.form.verify_yubikey.public_id_mismatch')) |
||
396 | ); |
||
397 | |||
398 | // OTP field is rendered empty in the template. |
||
399 | return ['form' => $form->createView(), 'cancelForm' => $cancelForm->createView()]; |
||
400 | } |
||
401 | |||
402 | $this->getResponseContext($authenticationMode)->markSecondFactorVerified(); |
||
403 | $this->getAuthenticationLogger()->logSecondFactorAuthentication($originalRequestId, $authenticationMode); |
||
404 | |||
405 | $logger->info( |
||
406 | sprintf( |
||
407 | 'Marked Yubikey Second Factor "%s" as verified, forwarding to Saml Proxy to respond', |
||
408 | $selectedSecondFactor |
||
409 | ) |
||
410 | ); |
||
411 | return $this->forward($context->getResponseAction()); |
||
412 | } |
||
413 | |||
414 | // OTP field is rendered empty in the template. |
||
415 | return ['form' => $form->createView(), 'cancelForm' => $cancelForm->createView()]; |
||
416 | } |
||
417 | |||
418 | /** |
||
419 | * @Template |
||
420 | * @param Request $request |
||
421 | * @param string $authenticationMode |
||
422 | * @return array|Response |
||
423 | */ |
||
424 | public function verifySmsSecondFactorAction(Request $request) |
||
425 | { |
||
426 | if (!$request->get('authenticationMode', false)) { |
||
427 | throw new RuntimeException('Unable to determine the authentication mode in the SMS verification action'); |
||
428 | } |
||
429 | $authenticationMode = $request->get('authenticationMode'); |
||
430 | $this->supportsAuthenticationMode($authenticationMode); |
||
431 | $context = $this->getResponseContext($authenticationMode); |
||
432 | $originalRequestId = $context->getInResponseTo(); |
||
433 | |||
434 | /** @var \Surfnet\SamlBundle\Monolog\SamlAuthenticationLogger $logger */ |
||
435 | $logger = $this->get('surfnet_saml.logger')->forAuthentication($originalRequestId); |
||
436 | |||
437 | $selectedSecondFactor = $this->getSelectedSecondFactor($context, $logger); |
||
438 | |||
439 | $logger->notice('Verifying possession of SMS second factor, preparing to send'); |
||
440 | |||
441 | $command = new SendSmsChallengeCommand(); |
||
442 | $command->secondFactorId = $selectedSecondFactor; |
||
443 | |||
444 | $form = $this->createForm(SendSmsChallengeType::class, $command)->handleRequest($request); |
||
445 | $cancelForm = $this->buildCancelAuthenticationForm($authenticationMode)->handleRequest($request); |
||
446 | |||
447 | $stepupService = $this->getStepupService(); |
||
448 | $phoneNumber = InternationalPhoneNumber::fromStringFormat( |
||
449 | $stepupService->getSecondFactorIdentifier($selectedSecondFactor) |
||
450 | ); |
||
451 | |||
452 | $otpRequestsRemaining = $stepupService->getSmsOtpRequestsRemainingCount($selectedSecondFactor); |
||
453 | $maximumOtpRequests = $stepupService->getSmsMaximumOtpRequestsCount(); |
||
454 | $viewVariables = ['otpRequestsRemaining' => $otpRequestsRemaining, 'maximumOtpRequests' => $maximumOtpRequests]; |
||
455 | |||
456 | if ($form->isSubmitted() && !$form->isValid()) { |
||
457 | return array_merge( |
||
458 | $viewVariables, |
||
459 | [ |
||
460 | 'phoneNumber' => $phoneNumber, |
||
461 | 'form' => $form->createView(), |
||
462 | 'cancelForm' => $cancelForm->createView() |
||
463 | ] |
||
464 | ); |
||
465 | } |
||
466 | |||
467 | $logger->notice('Verifying possession of SMS second factor, sending challenge per SMS'); |
||
468 | |||
469 | if (!$stepupService->sendSmsChallenge($command)) { |
||
470 | $form->addError( |
||
471 | new FormError($this->get('translator')->trans('gateway.form.send_sms_challenge.sms_sending_failed')) |
||
472 | ); |
||
473 | |||
474 | return array_merge( |
||
475 | $viewVariables, |
||
476 | [ |
||
477 | 'phoneNumber' => $phoneNumber, |
||
478 | 'form' => $form->createView(), |
||
479 | 'cancelForm' => $cancelForm->createView() |
||
480 | ] |
||
481 | ); |
||
482 | } |
||
483 | return $this->redirect( |
||
484 | $this->generateUrl( |
||
485 | 'gateway_verify_second_factor_sms_verify_challenge', |
||
486 | ['authenticationMode' => $authenticationMode] |
||
487 | ) |
||
488 | ); |
||
489 | } |
||
490 | |||
491 | /** |
||
492 | * @Template |
||
493 | * @param Request $request |
||
494 | * @param string $authenticationMode |
||
495 | * @return array|Response |
||
496 | */ |
||
497 | public function verifySmsSecondFactorChallengeAction(Request $request) |
||
554 | } |
||
555 | |||
556 | public function cancelAuthenticationAction() |
||
557 | { |
||
558 | return $this->forward('SurfnetStepupGatewayGatewayBundle:Gateway:sendAuthenticationCancelledByUser'); |
||
559 | } |
||
560 | |||
561 | /** |
||
562 | * @return \Surfnet\StepupGateway\GatewayBundle\Service\StepupAuthenticationService |
||
563 | */ |
||
564 | private function getStepupService() |
||
565 | { |
||
566 | return $this->get('gateway.service.stepup_authentication'); |
||
567 | } |
||
568 | |||
569 | /** |
||
570 | * @return ResponseContext |
||
571 | */ |
||
572 | private function getResponseContext($authenticationMode) |
||
573 | { |
||
574 | switch ($authenticationMode) { |
||
575 | case self::MODE_SFO: |
||
576 | return $this->get($this->get('gateway.proxy.sfo.state_handler')->getResponseContextServiceId()); |
||
577 | break; |
||
578 | case self::MODE_SSO: |
||
579 | return $this->get($this->get('gateway.proxy.sso.state_handler')->getResponseContextServiceId()); |
||
580 | break; |
||
581 | } |
||
582 | } |
||
583 | |||
584 | /** |
||
585 | * @return \Surfnet\StepupGateway\GatewayBundle\Monolog\Logger\AuthenticationLogger |
||
586 | */ |
||
587 | private function getAuthenticationLogger() |
||
588 | { |
||
589 | return $this->get('gateway.authentication_logger'); |
||
590 | } |
||
591 | |||
592 | private function getCookieService(): CookieService |
||
593 | { |
||
594 | return $this->get('gateway.service.sso_2fa_cookie'); |
||
595 | } |
||
596 | private function getSecondFactorService(): SecondFactorService |
||
597 | { |
||
598 | return $this->get('gateway.service.second_factor_service'); |
||
599 | } |
||
600 | |||
601 | /** |
||
602 | * @param ResponseContext $context |
||
603 | * @param LoggerInterface $logger |
||
604 | * @return string |
||
605 | */ |
||
606 | private function getSelectedSecondFactor(ResponseContext $context, LoggerInterface $logger) |
||
607 | { |
||
608 | $selectedSecondFactor = $context->getSelectedSecondFactor(); |
||
609 | |||
610 | if (!$selectedSecondFactor) { |
||
611 | $logger->error('Cannot verify possession of an unknown second factor'); |
||
612 | |||
613 | throw new BadRequestHttpException('Cannot verify possession of an unknown second factor.'); |
||
614 | } |
||
615 | |||
616 | return $selectedSecondFactor; |
||
617 | } |
||
618 | |||
619 | private function selectAndRedirectTo(SecondFactor $secondFactor, ResponseContext $context, $authenticationMode) |
||
620 | { |
||
621 | $context->saveSelectedSecondFactor($secondFactor); |
||
622 | |||
623 | $this->getStepupService()->clearSmsVerificationState($secondFactor->secondFactorId); |
||
624 | |||
625 | $secondFactorTypeService = $this->get('surfnet_stepup.service.second_factor_type'); |
||
626 | $secondFactorType = new SecondFactorType($secondFactor->secondFactorType); |
||
627 | |||
628 | $route = 'gateway_verify_second_factor_'; |
||
629 | if ($secondFactorTypeService->isGssf($secondFactorType)) { |
||
630 | $route .= 'gssf'; |
||
631 | } else { |
||
632 | $route .= strtolower($secondFactor->secondFactorType); |
||
633 | } |
||
634 | |||
635 | return $this->redirect($this->generateUrl($route, ['authenticationMode' => $authenticationMode])); |
||
636 | } |
||
637 | |||
638 | /** |
||
639 | * @param string $authenticationMode |
||
640 | * @return FormInterface |
||
641 | */ |
||
642 | private function buildCancelAuthenticationForm($authenticationMode) |
||
653 | ); |
||
654 | } |
||
655 | |||
656 | private function supportsAuthenticationMode($authenticationMode) |
||
657 | { |
||
658 | if (!($authenticationMode === self::MODE_SSO || $authenticationMode === self::MODE_SFO)) { |
||
659 | throw new InvalidArgumentException('Invalid authentication mode requested'); |
||
660 | } |
||
661 | } |
||
662 | } |
||
663 |