GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( aa4ff3...5266c0 )
by Alex
22:35
created

TransitionApplier::applyTransitions()   B

Complexity

Conditions 6
Paths 9

Size

Total Lines 38
Code Lines 23

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 38
rs 8.439
c 0
b 0
f 0
cc 6
eloc 23
nc 9
nop 3
1
<?php
2
/**
3
 * This file is part of the Global Trading Technologies Ltd workflow-extension-bundle package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 *
8
 * (c) fduch <[email protected]>
9
 * @date 03.08.16
10
 */
11
12
namespace Gtt\Bundle\WorkflowExtensionsBundle\Actions;
13
14
use Gtt\Bundle\WorkflowExtensionsBundle\WorkflowContext;
15
use Gtt\Bundle\WorkflowExtensionsBundle\WorkflowSubject\SubjectManipulator;
16
use Symfony\Component\Workflow\Exception\LogicException as WorkflowLogicException;
17
use Psr\Log\LoggerInterface;
18
use Exception;
19
use Throwable;
20
21
/**
22
 * Applies workflow transitions
23
 */
24
class TransitionApplier
25
{
26
    /**
27
     * Subject manipulator
28
     *
29
     * @var SubjectManipulator
30
     */
31
    private $subjectManipulator;
32
33
    /**
34
     * Logger
35
     *
36
     * @var LoggerInterface
37
     */
38
    private $logger;
39
40
    /**
41
     * TransitionApplier constructor.
42
     *
43
     * @param SubjectManipulator $subjectManipulator subject manipulator
44
     * @param LoggerInterface    $logger             logger
45
     */
46
    public function __construct(SubjectManipulator $subjectManipulator, LoggerInterface $logger)
47
    {
48
        $this->subjectManipulator = $subjectManipulator;
49
        $this->logger             = $logger;
50
    }
51
52
    /**
53
     * Applies single transition
54
     *
55
     * @param WorkflowContext $workflowContext workflow context
56
     * @param string          $transition      transition to be applied
57
     */
58
    public function applyTransition(WorkflowContext $workflowContext, $transition)
59
    {
60
        $this->applyTransitions($workflowContext, [$transition]);
61
    }
62
63
    /**
64
     * Applies list of transitions
65
     *
66
     * @param WorkflowContext $workflowContext workflow context
67
     * @param array           $transitions     list of transitions to be applied
68
     * @param bool            $cascade         if this flag is set all the available transitions should be applied (it
69
     *                                         may be cascade); otherwise the first applied transition breaks execution
70
     */
71
    public function applyTransitions(WorkflowContext $workflowContext, array $transitions = [], $cascade = false)
72
    {
73
        $workflow      = $workflowContext->getWorkflow();
74
        $subject       = $workflowContext->getSubject();
75
        $loggerContext = $workflowContext->getLoggerContext();
76
77
        $this->logger->debug('Resolved workflow for subject', $loggerContext);
78
79
        foreach ($transitions as $transition) {
80
            try {
81
                // We do not call Workflow:can method here due to performance reasons in order to prevent
82
                // execution of all the doCan-listeners (guards) in case when transition can be applied.
83
                // Therefore we catch LogicException and interpreting it as case when transition can not be applied
84
                $workflow->apply($subject, $transition);
85
                $this->logger->info(sprintf('Workflow successfully applied transition "%s"', $transition), $loggerContext);
86
87
                if (!$cascade) {
88
                    break;
89
                }
90
            } catch (WorkflowLogicException $e) {
91
                // transition cannot be applied because of it is not allowed
92
                $this->logger->info(
93
                    sprintf('Workflow transition "%s" cannot be applied due to it is not allowed', $transition),
94
                    $loggerContext
95
                );
96
            } catch (Exception $e) {
97
                $this->logger->error(
98
                    sprintf('Workflow cannot apply transition "%s" due to exception. Details: %s', $transition, $e->getMessage()),
99
                    $loggerContext
100
                );
101
            } catch (Throwable $e) {
0 ignored issues
show
Bug introduced by
The class Throwable does not exist. Is this class maybe located in a folder that is not analyzed, or in a newer version of your dependencies than listed in your composer.lock/composer.json?
Loading history...
102
                $this->logger->critical(
103
                    sprintf('Workflow cannot apply transition "%s" due to exception. Details: %s', $transition, $e->getMessage()),
104
                    $loggerContext
105
                );
106
            }
107
        }
108
    }
109
}