SamlListener::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 9.9666
c 0
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
3
/**
4
 * Copyright 2014 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\Firewall;
20
21
use Exception;
22
use Psr\Log\LoggerInterface;
23
use Surfnet\StepupRa\RaBundle\Security\Authentication\Handler\AuthenticationHandler;
24
use Surfnet\StepupRa\RaBundle\Security\Authentication\SamlInteractionProvider;
25
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
26
use Symfony\Component\Security\Core\Exception\AuthenticationException;
27
use Symfony\Component\Security\Http\Firewall\ListenerInterface;
28
29
/**
30
 * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
31
 */
32
class SamlListener implements ListenerInterface
0 ignored issues
show
Deprecated Code introduced by
The interface Symfony\Component\Securi...ewall\ListenerInterface has been deprecated with message: since Symfony 4.3, turn listeners into callables instead

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
33
{
34
    /**
35
     * @var AuthenticationHandler
36
     */
37
    private $authenticationHandler;
38
39
    /**
40
     * @var SamlInteractionProvider
41
     */
42
    private $samlInteractionProvider;
43
44
    /**
45
     * @var LoggerInterface
46
     */
47
    private $logger;
48
49
    public function __construct(
50
        AuthenticationHandler $authenticationHandler,
51
        SamlInteractionProvider $samlInteractionProvider,
52
        LoggerInterface $logger
53
    ) {
54
        $this->authenticationHandler = $authenticationHandler;
55
        $this->samlInteractionProvider = $samlInteractionProvider;
56
        $this->logger = $logger;
57
    }
58
59
    public function handle(GetResponseEvent $event)
60
    {
61
        try {
62
            $this->authenticationHandler->process($event);
63
        } catch (AuthenticationException $exception) {
64
            $this->samlInteractionProvider->reset();
65
66
            $this->logger->warning(sprintf(
67
                'Could not authenticate, AuthenticationException encountered: "%s"',
68
                $exception->getMessage()
69
            ));
70
71
            throw $exception;
72
        } catch (Exception $exception) {
73
            $this->samlInteractionProvider->reset();
74
75
            $this->logger->error(sprintf(
76
                'Could not authenticate, Exception of type "%s" encountered: %s',
77
                get_class($exception),
78
                $exception->getMessage()
79
            ));
80
81
            throw $exception;
82
        }
83
    }
84
}
85