LogoutResolveAction   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 64
Duplicated Lines 46.88 %

Coupling/Cohesion

Components 1
Dependencies 7

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 4
lcom 1
cbo 7
dl 30
loc 64
rs 10
c 0
b 0
f 0
ccs 14
cts 14
cp 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 10 1
B doExecute() 30 36 3

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
 * This file is part of the LightSAML-Logout package.
5
 *
6
 * (c) Milos Tomic <[email protected]>
7
 *
8
 * This source file is subject to the GPL-3 license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
12
namespace LightSaml\Logout\Action\Profile\Outbound\LogoutRequest;
13
14
use LightSaml\Action\ActionInterface;
15
use LightSaml\Action\Profile\AbstractProfileAction;
16
use LightSaml\Context\Profile\Helper\LogHelper;
17
use LightSaml\Context\Profile\ProfileContext;
18
use LightSaml\Logout\Resolver\Logout\LogoutSessionResolverInterface;
19
use Psr\Log\LoggerInterface;
20
21
class LogoutResolveAction extends AbstractProfileAction
22
{
23
    /** @var LogoutSessionResolverInterface */
24
    protected $logoutSessionResolver;
25
26
    /** @var ActionInterface */
27
    protected $logoutProceedAction;
28
29
    /**
30
     * @param LoggerInterface                $logger
31
     * @param LogoutSessionResolverInterface $logoutSessionResolver
32
     * @param ActionInterface                $logoutProceedAction
33 3
     */
34
    public function __construct(
35
        LoggerInterface $logger,
36
        LogoutSessionResolverInterface $logoutSessionResolver,
37
        ActionInterface $logoutProceedAction
38 3
    ) {
39
        parent::__construct($logger);
40 3
41 3
        $this->logoutSessionResolver = $logoutSessionResolver;
42 3
        $this->logoutProceedAction = $logoutProceedAction;
43
    }
44
45
    /**
46
     * @param ProfileContext $context
47 2
     */
48
    protected function doExecute(ProfileContext $context)
49 2
    {
50 2
        $logoutContext = $context->getLogoutContext();
51 2
        $ssoSessionState = $logoutContext->getSsoSessionState();
52 1 View Code Duplication
        if ($ssoSessionState) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across 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...
53 1
            $this->logger->debug(
54 1
                'SSO session already set',
55 1
                LogHelper::getActionContext($context, $this, array(
56
                    'sso_session' => $ssoSessionState,
57 2
                ))
58
            );
59
        } else {
60
            $this->logger->debug(
61
                'SSO session not defined, about to resolve it',
62
                LogHelper::getActionContext($context, $this, array())
63
            );
64
            $ssoSessionState = $this->logoutSessionResolver->resolve($context->getOwnEntityDescriptor()->getEntityID());
65
        }
66
67 View Code Duplication
        if ($ssoSessionState) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across 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...
68
            $this->logger->debug(
69
                'SSO session resolved and being used for logout profile',
70
                LogHelper::getActionContext($context, $this, array(
71
                    'sso_session' => $ssoSessionState,
72
                ))
73
            );
74
            $logoutContext->setSsoSessionState($ssoSessionState);
75
            $this->logoutProceedAction->execute($context);
76
        } else {
77
            $this->logger->debug(
78
                'There is no SSO session for logout',
79
                LogHelper::getActionContext($context, $this, array())
80
            );
81
            $logoutContext->setAllSsoSessionsTerminated(true);
82
        }
83
    }
84
}
85