Completed
Pull Request — 1.x (#124)
by Sosuke
02:00
created

JsonSchemaInterceptor::getNamedArguments()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 12
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 12
ccs 7
cts 7
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 7
nc 2
nop 1
crap 2
1
<?php
2
/**
3
 * This file is part of the BEAR.Resource package.
4
 *
5
 * @license http://opensource.org/licenses/MIT MIT
6
 */
7
namespace BEAR\Resource\Interceptor;
8
9
use BEAR\Resource\Annotation\JsonSchema;
10
use BEAR\Resource\Code;
11
use BEAR\Resource\Exception\JsonSchemaErrorException;
12
use BEAR\Resource\Exception\JsonSchemaException;
13
use BEAR\Resource\Exception\JsonSchemaNotFoundException;
14
use BEAR\Resource\ResourceObject;
15
use JsonSchema\Constraints\Constraint;
16
use JsonSchema\Validator;
17
use Ray\Aop\MethodInterceptor;
18
use Ray\Aop\MethodInvocation;
19
use Ray\Aop\WeavedInterface;
20
use Ray\Di\Di\Named;
21
22
final class JsonSchemaInterceptor implements MethodInterceptor
23
{
24
    /**
25
     * @var string
26
     */
27
    private $schemaDir;
28
29
    /**
30
     * @var string
31
     */
32
    private $validateDir;
33
34
    /**
35
     * @param string $schemaDir
36
     * @param string $validateDir
37
     *
38
     * @Named("schemaDir=json_schema_dir,validateDir=json_validate_dir")
39
     */
40 7
    public function __construct($schemaDir, $validateDir)
41
    {
42 7
        $this->schemaDir = $schemaDir;
43 7
        $this->validateDir = $validateDir;
44 7
    }
45
46
    /**
47
     * {@inheritdoc}
48
     */
49 7
    public function invoke(MethodInvocation $invocation)
50
    {
51
        /* @var $jsonSchema JsonSchema */
52 7
        $jsonSchema = $invocation->getMethod()->getAnnotation(JsonSchema::class);
53
54 7
        if ($jsonSchema->params) {
55 3
            $arguments = $this->getNamedArguments($invocation);
56 3
            $this->validateRequest($jsonSchema, $arguments);
57
        }
58
59
        /** @var $ro ResourceObject */
60 6
        $ro = $invocation->proceed();
61 6
        if ($ro->code !== 200) {
62 1
            return $ro;
63
        }
64 5
        $this->validateResponse($jsonSchema, $ro);
65
66 2
        return $ro;
67
    }
68
69 3
    private function validateRequest(JsonSchema $jsonSchema, array $arguments)
70
    {
71 3
        $schemaFile = $this->validateDir . '/' . $jsonSchema->params;
72 3
        $this->validateFileExists($schemaFile);
73 3
        $this->validate($arguments, $schemaFile);
74 2
    }
75
76 5
    private function validateResponse(JsonSchema $jsonSchema, ResourceObject $ro)
77
    {
78 5
        $schemeFile = $this->getSchemaFile($jsonSchema, $ro);
79 4
        $body = isset($ro->body[$jsonSchema->key]) ? $ro->body[$jsonSchema->key] : $ro->body;
80 4
        $this->validate($body, $schemeFile);
81 2
    }
82
83 5
    private function validate($scanObject, $schemaFile)
84
    {
85 5
        $validator = new Validator;
86 5
        $schema = (object) ['$ref' => 'file://' . $schemaFile];
87 5
        $validator->validate($scanObject, $schema, Constraint::CHECK_MODE_TYPE_CAST);
88 5
        $isValid = $validator->isValid();
89 5
        if ($isValid) {
90 3
            return;
91
        }
92 3
        $e = null;
93 3
        foreach ($validator->getErrors() as $error) {
94 3
            $msg = sprintf('[%s] %s', $error['property'], $error['message']);
95 3
            $e = $e ? new JsonSchemaErrorException($msg, 0, $e) : new JsonSchemaErrorException($msg);
96
        }
97 3
        throw new JsonSchemaException($schemaFile, Code::ERROR, $e);
98
    }
99
100 5
    private function getSchemaFile(JsonSchema $jsonSchema, ResourceObject $ro) : string
101
    {
102 5
        if (! $jsonSchema->schema) {
103
            // for BC only
104 1
            $ref = new \ReflectionClass($ro);
105 1
            $roFileName = $ro instanceof WeavedInterface ? $roFileName = $ref->getParentClass()->getFileName() : $ref->getFileName();
106 1
            $bcFile = str_replace('.php', '.json', $roFileName);
107 1
            if (file_exists($bcFile)) {
108 1
                return $bcFile;
109
            }
110
        }
111 4
        $schemaFile = $this->schemaDir . '/' . $jsonSchema->schema;
112 4
        $this->validateFileExists($schemaFile);
113
114 3
        return $schemaFile;
115
    }
116
117 5
    private function validateFileExists(string $schemaFile)
118
    {
119 5
        if (! file_exists($schemaFile) || is_dir($schemaFile)) {
120 1
            throw new JsonSchemaNotFoundException($schemaFile);
121
        }
122 4
    }
123
124 3
    private function getNamedArguments(MethodInvocation $invocation)
125
    {
126 3
        $parameters = $invocation->getMethod()->getParameters();
127 3
        $values = $invocation->getArguments();
128
129 3
        $arguments = [];
130 3
        foreach ($parameters as $index => $parameter) {
131 3
            $arguments[$parameter->name] = $values[$index] ?? $parameter->getDefaultValue();
132
        }
133
134 3
        return $arguments;
135
    }
136
}
137