Completed
Push — develop ( 39f69e...2cda13 )
by
unknown
12s
created

ProcessSamlAuthenticationHandler   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 106
Duplicated Lines 16.04 %

Coupling/Cohesion

Components 1
Dependencies 12

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 7
c 1
b 0
f 0
lcom 1
cbo 12
dl 17
loc 106
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
B process() 0 40 5
A setNext() 0 4 1
A __construct() 17 17 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
/**
4
 * Copyright 2016 SURFnet bv
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 *     http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
19
namespace Surfnet\StepupSelfService\SelfServiceBundle\Security\Authentication\Handler;
20
21
use Surfnet\SamlBundle\Monolog\SamlAuthenticationLogger;
22
use Surfnet\SamlBundle\SAML2\Response\Assertion\InResponseTo;
23
use Surfnet\StepupSelfService\SelfServiceBundle\Security\Authentication\AuthenticatedSessionStateHandler;
24
use Surfnet\StepupSelfService\SelfServiceBundle\Security\Authentication\SamlAuthenticationStateHandler;
25
use Surfnet\StepupSelfService\SelfServiceBundle\Security\Authentication\SamlInteractionProvider;
26
use Surfnet\StepupSelfService\SelfServiceBundle\Security\Authentication\Token\SamlToken;
27
use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;
28
use Symfony\Component\HttpFoundation\RedirectResponse;
29
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
30
use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface;
31
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
32
use Symfony\Component\Security\Core\Exception\AuthenticationException;
33
34
/**
35
 * @SuppressWarnings(PHPMD.CouplingBetweenObjects) SamlResponse parsing, validation authentication and error handling
36
 *                                                 requires quite a few classes as it is fairly complex.
37
 */
38
class ProcessSamlAuthenticationHandler implements AuthenticationHandler
39
{
40
    /**
41
     * @var AuthenticationHandler
42
     */
43
    private $nextHandler;
44
45
    /**
46
     * @var TokenStorageInterface
47
     */
48
    private $tokenStorage;
49
50
    /**
51
     * @var SamlInteractionProvider
52
     */
53
    private $samlInteractionProvider;
54
55
    /**
56
     * @var SamlAuthenticationStateHandler
57
     */
58
    private $authenticationStateHandler;
59
60
    /**
61
     * @var AuthenticatedSessionStateHandler
62
     */
63
    private $authenticatedSession;
64
65
    /**
66
     * @var AuthenticationManagerInterface
67
     */
68
    private $authenticationManager;
69
70
    /**
71
     * @var SamlAuthenticationLogger
72
     */
73
    private $authenticationLogger;
74
75
    /**
76
     * @var EngineInterface
77
     */
78
    private $templating;
79
80 View Code Duplication
    public function __construct(
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
81
        TokenStorageInterface $tokenStorage,
82
        SamlInteractionProvider $samlInteractionProvider,
83
        SamlAuthenticationStateHandler $authenticationStateHandler,
84
        AuthenticatedSessionStateHandler $authenticatedSession,
85
        AuthenticationManagerInterface $authenticationManager,
86
        SamlAuthenticationLogger $authenticationLogger,
87
        EngineInterface $templating
88
    ) {
89
        $this->tokenStorage               = $tokenStorage;
90
        $this->samlInteractionProvider    = $samlInteractionProvider;
91
        $this->authenticationStateHandler = $authenticationStateHandler;
92
        $this->authenticatedSession       = $authenticatedSession;
93
        $this->authenticationManager      = $authenticationManager;
94
        $this->authenticationLogger       = $authenticationLogger;
95
        $this->templating                 = $templating;
96
    }
97
98
    public function process(GetResponseEvent $event)
99
    {
100
        if ($this->tokenStorage->getToken() === null
101
            && $this->samlInteractionProvider->isSamlAuthenticationInitiated()
102
        ) {
103
            $expectedInResponseTo = $this->authenticationStateHandler->getRequestId();
104
            $logger               = $this->authenticationLogger->forAuthentication($expectedInResponseTo);
105
106
            $logger->notice('No authenticated user and AuthnRequest pending, attempting to process SamlResponse');
107
108
            $assertion = $this->samlInteractionProvider->processSamlResponse($event->getRequest());
109
110
            if (!InResponseTo::assertEquals($assertion, $expectedInResponseTo)) {
111
                throw new AuthenticationException('Unknown or unexpected InResponseTo in SAMLResponse');
112
            }
113
114
            $logger->notice('Successfully processed SAMLResponse, attempting to authenticate');
115
116
            $token            = new SamlToken();
117
            $token->assertion = $assertion;
118
119
            $authToken = $this->authenticationManager->authenticate($token);
120
121
            $this->authenticatedSession->logAuthenticationMoment();
122
            $this->tokenStorage->setToken($authToken);
123
124
            // migrate the session to prevent session hijacking
125
            $this->authenticatedSession->migrate();
126
127
            $event->setResponse(new RedirectResponse($this->authenticatedSession->getCurrentRequestUri()));
128
129
            $logger->notice('Authentication succeeded, redirecting to original location');
130
131
            return;
132
        }
133
134
        if ($this->nextHandler) {
135
            $this->nextHandler->process($event);
136
        }
137
    }
138
139
    public function setNext(AuthenticationHandler $handler)
140
    {
141
        $this->nextHandler = $handler;
142
    }
143
}
144