Passed
Push — master ( 87ef73...0a8b5d )
by Stefano
03:00
created

ValidatedDescriptionHandler   A

Complexity

Total Complexity 13

Size/Duplication

Total Lines 70
Duplicated Lines 18.57 %

Coupling/Cohesion

Components 0
Dependencies 4

Test Coverage

Coverage 94.12%

Importance

Changes 0
Metric Value
wmc 13
lcom 0
cbo 4
dl 13
loc 70
ccs 32
cts 34
cp 0.9412
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 2
C __invoke() 13 45 11

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 namespace GuzzleHttp\Command\Guzzle\Handler;
2
3
use GuzzleHttp\Command\CommandInterface;
4
use GuzzleHttp\Command\Exception\CommandException;
5
use GuzzleHttp\Command\Guzzle\DescriptionInterface;
6
use GuzzleHttp\Command\Guzzle\SchemaValidator;
7
8
/**
9
 * Handler used to validate command input against a service description.
10
 *
11
 * @author Stefano Kowalke <[email protected]>
12
 */
13
class ValidatedDescriptionHandler
14
{
15
    /** @var SchemaValidator $validator */
16
    private $validator;
17
18
    /** @var DescriptionInterface $description */
19
    private $description;
20
21
    /**
22
     * ValidatedDescriptionHandler constructor.
23
     *
24
     * @param DescriptionInterface $description
25
     * @param SchemaValidator|null $schemaValidator
26
     */
27 4
    public function __construct(DescriptionInterface $description, SchemaValidator $schemaValidator = null)
28
    {
29 4
        $this->description = $description;
30 4
        $this->validator = $schemaValidator ?: new SchemaValidator();
31 4
    }
32
33
    /**
34
     * @param callable $handler
35
     * @return \Closure
36
     */
37
    public function __invoke(callable $handler)
38
    {
39 4
        return function (CommandInterface $command) use ($handler) {
40 4
            $errors = [];
41 4
            $operation = $this->description->getOperation($command->getName());
42
43 4
            foreach ($operation->getParams() as $name => $schema) {
44 2
                $value = $command[$name];
45
46 2
                if ($value) {
47 1
                    $value = $schema->filter($value);
48 1
                }
49
50 2 View Code Duplication
                if (! $this->validator->validate($schema, $value)) {
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...
51 1
                    $errors = array_merge($errors, $this->validator->getErrors());
52 2
                } elseif ($value !== $command[$name]) {
53
                    // Update the config value if it changed and no validation errors were encountered.
54
                    // This happen when the user extending an operation
55
                    // See https://github.com/guzzle/guzzle-services/issues/145
56 1
                    $command[$name] = $value;
57 1
                }
58 4
            }
59
60 4
            if ($params = $operation->getAdditionalParameters()) {
61 1
                foreach ($command->toArray() as $name => $value) {
62
                    // It's only additional if it isn't defined in the schema
63 1
                    if (! $operation->hasParam($name)) {
64
                        // Always set the name so that error messages are useful
65 1
                        $params->setName($name);
66 1 View Code Duplication
                        if (! $this->validator->validate($params, $value)) {
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...
67 1
                            $errors = array_merge($errors, $this->validator->getErrors());
68 1
                        } elseif ($value !== $command[$name]) {
69
                            $command[$name] = $value;
70
                        }
71 1
                    }
72 1
                }
73 1
            }
74
75 4
            if ($errors) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $errors of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
76 2
                throw new CommandException('Validation errors: ' . implode("\n", $errors), $command);
77
            }
78
79 2
            return $handler($command);
80 4
        };
81
    }
82
}
83