Completed
Push — master ( ad34f0...67a90e )
by Stefano
32s
created

src/Handler/ValidatedDescriptionHandler.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

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 3
    public function __construct(DescriptionInterface $description, SchemaValidator $schemaValidator = null)
28
    {
29 3
        $this->description = $description;
30 3
        $this->validator = $schemaValidator ?: new SchemaValidator();
31 3
    }
32
33
    /**
34
     * @param callable $handler
35
     * @return \Closure
36
     */
37
    public function __invoke(callable $handler)
38
    {
39 3
        return function (CommandInterface $command) use ($handler) {
40 3
            $errors = [];
41 3
            $operation = $this->description->getOperation($command->getName());
42
43 3 View Code Duplication
            foreach ($operation->getParams() as $name => $schema) {
0 ignored issues
show
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...
44 1
                $value = $command[$name];
45 1
                if (! $this->validator->validate($schema, $value)) {
46 1
                    $errors = array_merge($errors, $this->validator->getErrors());
47 1
                } elseif ($value !== $command[$name]) {
48
                    // Update the config value if it changed and no validation
49
                    // errors were encountered
50
                    $command[$name] = $value;
51
                }
52 3
            }
53
54 3
            if ($params = $operation->getAdditionalParameters()) {
55 1 View Code Duplication
                foreach ($command->toArray() as $name => $value) {
0 ignored issues
show
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...
56
                    // It's only additional if it isn't defined in the schema
57 1
                    if (! $operation->hasParam($name)) {
58
                        // Always set the name so that error messages are useful
59 1
                        $params->setName($name);
60 1
                        if (! $this->validator->validate($params, $value)) {
61 1
                            $errors = array_merge($errors, $this->validator->getErrors());
62 1
                        } elseif ($value !== $command[$name]) {
63
                            $command[$name] = $value;
64
                        }
65 1
                    }
66 1
                }
67 1
            }
68
69 3
            if ($errors) {
70 2
                throw new CommandException('Validation errors: ' . implode("\n", $errors), $command);
71
            }
72
73 1
            return $handler($command);
74 3
        };
75
    }
76
}
77