Completed
Pull Request — develop (#302)
by Michiel
04:08 queued 01:57
created

AbstractBootstrapCommand::process()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
/**
4
 * Copyright 2020 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\StepupMiddleware\MiddlewareBundle\Console\Command;
20
21
use Broadway\EventHandling\EventBusInterface;
22
use Rhumsaa\Uuid\Uuid;
23
use Surfnet\Stepup\Configuration\Value\Institution;
24
use Surfnet\StepupMiddleware\ApiBundle\Configuration\Repository\InstitutionConfigurationOptionsRepository;
25
use Surfnet\StepupMiddleware\ApiBundle\Identity\Repository\IdentityRepository;
26
use Surfnet\StepupMiddleware\ApiBundle\Identity\Repository\UnverifiedSecondFactorRepository;
27
use Surfnet\StepupMiddleware\ApiBundle\Identity\Repository\VerifiedSecondFactorRepository;
28
use Surfnet\StepupMiddleware\CommandHandlingBundle\Command\Command as MiddlewareCommand;
29
use Surfnet\StepupMiddleware\CommandHandlingBundle\Identity\Command\VetSecondFactorCommand;
30
use Surfnet\StepupMiddleware\CommandHandlingBundle\Pipeline\Pipeline;
31
use Surfnet\StepupMiddleware\MiddlewareBundle\Service\DBALConnectionHelper;
32
use Symfony\Component\Console\Command\Command;
33
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
34
35
abstract class AbstractBootstrapCommand extends Command
36
{
37
    /** @var Pipeline  */
38
    private $pipeline;
39
    /** @var EventBusInterface  */
40
    private $eventBus;
41
    /** @var DBALConnectionHelper  */
42
    private $connection;
43
    /** @var IdentityRepository  */
44
    protected $identityRepository;
45
    /** @var UnverifiedSecondFactorRepository  */
46
    protected $unverifiedSecondFactorRepository;
47
    /** @var VerifiedSecondFactorRepository */
48
    protected $verifiedSecondFactorRepository;
49
    /** @var InstitutionConfigurationOptionsRepository */
50
    private $institutionConfigurationRepository;
51
    /** @var TokenStorageInterface */
52
    protected $tokenStorage;
53
54
    public function __construct(
55
        Pipeline $pipeline,
56
        EventBusInterface $eventBus,
57
        DBALConnectionHelper $connection,
58
        IdentityRepository $identityRepository,
59
        UnverifiedSecondFactorRepository $unverifiedSecondFactorRepository,
60
        VerifiedSecondFactorRepository $verifiedSecondFactorRepository,
61
        InstitutionConfigurationOptionsRepository $institutionConfigurationOptionsRepository,
62
        TokenStorageInterface $tokenStorage
63
    ) {
64
        $this->pipeline = $pipeline;
65
        $this->eventBus = $eventBus;
66
        $this->connection = $connection;
67
        $this->identityRepository = $identityRepository;
68
        $this->unverifiedSecondFactorRepository = $unverifiedSecondFactorRepository;
69
        $this->verifiedSecondFactorRepository = $verifiedSecondFactorRepository;
70
        $this->institutionConfigurationRepository = $institutionConfigurationOptionsRepository;
71
        $this->tokenStorage = $tokenStorage;
72
    }
73
74
    protected function beginTransaction()
75
    {
76
        $this->connection->beginTransaction();
77
    }
78
79
    protected function finishTransaction()
80
    {
81
        $this->eventBus->flush();
0 ignored issues
show
Bug introduced by
It seems like you code against a concrete implementation and not the interface Broadway\EventHandling\EventBusInterface as the method flush() does only exist in the following implementations of said interface: Surfnet\StepupMiddleware...ndling\BufferedEventBus.

Let’s take a look at an example:

interface User
{
    /** @return string */
    public function getPassword();
}

class MyUser implements User
{
    public function getPassword()
    {
        // return something
    }

    public function getDisplayName()
    {
        // return some name.
    }
}

class AuthSystem
{
    public function authenticate(User $user)
    {
        $this->logger->info(sprintf('Authenticating %s.', $user->getDisplayName()));
        // do something.
    }
}

In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.

Available Fixes

  1. Change the type-hint for the parameter:

    class AuthSystem
    {
        public function authenticate(MyUser $user) { /* ... */ }
    }
    
  2. Add an additional type-check:

    class AuthSystem
    {
        public function authenticate(User $user)
        {
            if ($user instanceof MyUser) {
                $this->logger->info(/** ... */);
            }
    
            // or alternatively
            if ( ! $user instanceof MyUser) {
                throw new \LogicException(
                    '$user must be an instance of MyUser, '
                   .'other instances are not supported.'
                );
            }
    
        }
    }
    
Note: PHP Analyzer uses reverse abstract interpretation to narrow down the types inside the if block in such a case.
  1. Add the method to the interface:

    interface User
    {
        /** @return string */
        public function getPassword();
    
        /** @return string */
        public function getDisplayName();
    }
    
Loading history...
82
        $this->connection->commit();
83
    }
84
85
    protected function rollback()
86
    {
87
        $this->connection->rollBack();
88
    }
89
90
    protected function process(MiddlewareCommand $command)
91
    {
92
        $this->pipeline->process($command);
93
    }
94
95
    protected function requiresMailVerification(Institution $institution)
96
    {
97
        $configuration = $this->institutionConfigurationRepository->findConfigurationOptionsFor($institution);
98
        if ($configuration) {
99
            return $configuration->verifyEmailOption->isEnabled();
100
        }
101
        return true;
102
    }
103
104
    protected function vetSecondFactor($tokenType, $actorId, $identity, $secondFactorId, $verifiedSecondFactor, $phoneNumber)
105
    {
106
        $command = new VetSecondFactorCommand();
107
        $command->UUID = (string) Uuid::uuid4();
108
        $command->authorityId = $actorId;
109
        $command->identityId = $identity->id;
110
        $command->secondFactorId = $secondFactorId;
111
        $command->registrationCode = $verifiedSecondFactor->registrationCode;
112
        $command->secondFactorType = $tokenType;
113
        $command->secondFactorIdentifier = $phoneNumber;
114
        $command->documentNumber = '123987';
115
        $command->identityVerified = true;
116
        $this->pipeline->process($command);
117
    }
118
}
119