1 | <?php |
||
28 | class SamlController extends Controller |
||
29 | { |
||
30 | /** |
||
31 | * @param string $secondFactorId |
||
32 | * |
||
33 | * @return \Symfony\Component\HttpFoundation\RedirectResponse |
||
34 | * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException |
||
35 | * @throws \Symfony\Component\Security\Core\Exception\AccessDeniedException |
||
36 | */ |
||
37 | public function testSecondFactorAction($secondFactorId) |
||
38 | { |
||
39 | $logger = $this->get('logger'); |
||
40 | $logger->notice('Starting second factor test'); |
||
41 | |||
42 | $secondFactorService = $this->get('surfnet_stepup_self_service_self_service.service.second_factor'); |
||
43 | $identity = $this->getIdentity(); |
||
44 | |||
45 | if (!$secondFactorService->identityHasSecondFactorOfStateWithId($identity->id, 'vetted', $secondFactorId)) { |
||
46 | $logger->error( |
||
47 | sprintf( |
||
48 | 'Identity "%s" tried to test second factor "%s", but does not own that second factor or it is not vetted', |
||
|
|||
49 | $identity->id, |
||
50 | $secondFactorId |
||
51 | ) |
||
52 | ); |
||
53 | |||
54 | throw $this->createNotFoundException(); |
||
55 | } |
||
56 | |||
57 | $loaResolutionService = $this->get('surfnet_stepup.service.loa_resolution'); |
||
58 | $authenticationRequestFactory = $this->get('self_service.test_second_factor_authentication_request_factory'); |
||
59 | |||
60 | $secondFactor = $secondFactorService->findOneVetted($secondFactorId); |
||
61 | $secondFactorType = new SecondFactorType($secondFactor->type); |
||
62 | |||
63 | $authenticationRequest = $authenticationRequestFactory->createSecondFactorTestRequest( |
||
64 | $identity->nameId, |
||
65 | $loaResolutionService->getLoaByLevel($secondFactorType->getLevel()) |
||
66 | ); |
||
67 | |||
68 | $this->get('session')->set('second_factor_test_request_id', $authenticationRequest->getRequestId()); |
||
69 | |||
70 | $samlLogger = $this->get('surfnet_saml.logger')->forAuthentication($authenticationRequest->getRequestId()); |
||
71 | $samlLogger->notice('Sending authentication request to the second factor test IDP'); |
||
72 | |||
73 | return $this->get('surfnet_saml.http.redirect_binding')->createRedirectResponseFor($authenticationRequest); |
||
74 | } |
||
75 | |||
76 | public function consumeAssertionAction(Request $httpRequest) |
||
77 | { |
||
78 | $logger = $this->get('logger'); |
||
79 | |||
80 | $logger->notice('Received an authentication response for testing a second factor'); |
||
81 | |||
82 | $session = $this->get('session'); |
||
83 | |||
84 | if (!$session->has('second_factor_test_request_id')) { |
||
85 | $logger->error( |
||
86 | 'Received an authentication response for testing a second factor, but no second factor test response was expected' |
||
87 | ); |
||
88 | |||
89 | throw $this->createAccessDeniedException('Did not expect an authentication response'); |
||
90 | } |
||
91 | |||
92 | $initiatedRequestId = $session->get('second_factor_test_request_id'); |
||
93 | |||
94 | $samlLogger = $this->get('surfnet_saml.logger')->forAuthentication($initiatedRequestId); |
||
95 | |||
96 | $session->remove('second_factor_test_request_id'); |
||
97 | |||
98 | $postBinding = $this->get('surfnet_saml.http.post_binding'); |
||
99 | |||
100 | try { |
||
101 | $assertion = $postBinding->processResponse( |
||
102 | $httpRequest, |
||
103 | $this->get('self_service.second_factor_test_idp'), |
||
104 | $this->get('surfnet_saml.hosted.service_provider') |
||
105 | ); |
||
106 | |||
107 | if (!InResponseTo::assertEquals($assertion, $initiatedRequestId)) { |
||
108 | $samlLogger->error( |
||
109 | sprintf( |
||
110 | 'Expected a response to the request with ID "%s", but the SAMLResponse was a response to a different request', |
||
111 | $initiatedRequestId |
||
112 | ) |
||
113 | ); |
||
114 | |||
115 | throw new AuthenticationException('Unexpected InResponseTo in SAMLResponse'); |
||
116 | } |
||
117 | |||
118 | $session->getFlashBag()->add('success', 'ss.test_second_factor.verification_successful'); |
||
119 | } catch (Exception $exception) { |
||
120 | $session->getFlashBag()->add('error', 'ss.test_second_factor.verification_failed'); |
||
121 | } |
||
122 | |||
123 | return $this->redirectToRoute('ss_second_factor_list'); |
||
124 | } |
||
125 | |||
126 | public function metadataAction() |
||
133 | } |
||
134 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.