InitiateSamlAuthenticationHandler   A
last analyzed

Complexity

Total Complexity 10

Size/Duplication

Total Lines 108
Duplicated Lines 15.74 %

Coupling/Cohesion

Components 1
Dependencies 10

Importance

Changes 0
Metric Value
wmc 10
lcom 1
cbo 10
dl 17
loc 108
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 17 17 1
B process() 0 42 8
A setNext() 0 4 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\StepupRa\RaBundle\Security\Authentication\Handler;
20
21
use Psr\Log\LoggerInterface;
22
use Surfnet\SamlBundle\Monolog\SamlAuthenticationLogger;
23
use Surfnet\StepupRa\RaBundle\Security\Authentication\AuthenticatedSessionStateHandler;
24
use Surfnet\StepupRa\RaBundle\Security\Authentication\SamlAuthenticationStateHandler;
25
use Surfnet\StepupRa\RaBundle\Security\Authentication\SamlInteractionProvider;
26
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
27
use Symfony\Component\Routing\RouterInterface;
28
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
29
30
class InitiateSamlAuthenticationHandler implements AuthenticationHandler
31
{
32
    /**
33
     * @var AuthenticationHandler|null
34
     */
35
    private $nextHandler;
36
37
    /**
38
     * @var TokenStorageInterface
39
     */
40
    private $tokenStorage;
41
42
    /**
43
     * @var AuthenticatedSessionStateHandler
44
     */
45
    private $authenticatedSession;
46
47
    /**
48
     * @var SamlAuthenticationStateHandler
49
     */
50
    private $samlAuthenticationStateHandler;
51
52
    /**
53
     * @var SamlInteractionProvider
54
     */
55
    private $samlInteractionProvider;
56
57
    /**
58
     * @var RouterInterface
59
     */
60
    private $router;
61
62
    /**
63
     * @var SamlAuthenticationLogger
64
     */
65
    private $authenticationLogger;
66
67
    /**
68
     * @var LoggerInterface
69
     */
70
    private $logger;
71
72 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...
73
        TokenStorageInterface $tokenStorageInterface,
74
        AuthenticatedSessionStateHandler $authenticatedSession,
75
        SamlAuthenticationStateHandler $samlAuthenticationStateHandler,
76
        SamlInteractionProvider $samlInteractionProvider,
77
        RouterInterface $router,
78
        SamlAuthenticationLogger $authenticationLogger,
79
        LoggerInterface $logger
80
    ) {
81
        $this->tokenStorage                   = $tokenStorageInterface;
82
        $this->authenticatedSession           = $authenticatedSession;
83
        $this->samlAuthenticationStateHandler = $samlAuthenticationStateHandler;
84
        $this->samlInteractionProvider        = $samlInteractionProvider;
85
        $this->router                         = $router;
86
        $this->authenticationLogger           = $authenticationLogger;
87
        $this->logger                         = $logger;
88
    }
89
90
    public function process(GetResponseEvent $event)
91
    {
92
        $acsUri = $this->router->generate('ra_serviceprovider_consume_assertion');
93
94
        // we have no logged in user, and have sent an authentication request, but do not receive a response POSTed
95
        // back to our ACS. This means that a user may have inadvertedly triggered the sending of an AuthnRequest
96
        // one of the common causes of this is the prefetching of pages by browsers to give users the illusion of speed.
97
        // In any case, we reset the login and send a new AuthnRequest.
98
        if ($this->tokenStorage->getToken() === null
99
            && $this->samlInteractionProvider->isSamlAuthenticationInitiated()
100
            && $event->getRequest()->getMethod() !== 'POST'
101
            && $event->getRequest()->getRequestUri() !== $acsUri
102
        ) {
103
            $this->logger->notice(
104
                'No authenticated user, a AuthnRequest was sent, but the current request is not a POST to our ACS '
105
                . 'thus we assume the user attempts to access the application again (possibly after a browser '
106
                . 'prefetch). Resetting the login state so that a new AuthnRequest can be sent.'
107
            );
108
109
            $this->samlInteractionProvider->reset();
110
        }
111
112
        if ($this->tokenStorage->getToken() === null
113
            && !$this->samlInteractionProvider->isSamlAuthenticationInitiated()
114
        ) {
115
            $this->logger->notice('No authenticated user, no saml AuthnRequest pending, sending new AuthnRequest');
116
117
            $this->authenticatedSession->setCurrentRequestUri($event->getRequest()->getUri());
118
            $event->setResponse($this->samlInteractionProvider->initiateSamlRequest());
119
120
            $logger = $this->authenticationLogger->forAuthentication(
121
                $this->samlAuthenticationStateHandler->getRequestId()
122
            );
123
            $logger->notice('Sending AuthnRequest');
124
125
            return;
126
        }
127
128
        if ($this->nextHandler) {
129
            $this->nextHandler->process($event);
130
        }
131
    }
132
133
    public function setNext(AuthenticationHandler $handler)
134
    {
135
        $this->nextHandler = $handler;
136
    }
137
}
138