1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace BEAR\Resource; |
6
|
|
|
|
7
|
|
|
use BEAR\Resource\Annotation\Embed; |
8
|
|
|
use BEAR\Resource\Exception\BadRequestException; |
9
|
|
|
use BEAR\Resource\Exception\EmbedException; |
10
|
|
|
use BEAR\Resource\Exception\LinkException; |
11
|
|
|
use Override; |
12
|
|
|
use Ray\Aop\MethodInterceptor; |
13
|
|
|
use Ray\Aop\MethodInvocation; |
14
|
|
|
|
15
|
|
|
use function array_shift; |
16
|
|
|
use function assert; |
17
|
|
|
use function is_array; |
18
|
|
|
use function is_string; |
19
|
|
|
use function uri_template; |
20
|
|
|
|
21
|
|
|
/** @psalm-import-type Query from Types */ |
22
|
|
|
final class EmbedInterceptor implements MethodInterceptor |
23
|
|
|
{ |
24
|
|
|
private const SELF_LINK = '_self'; |
25
|
|
|
|
26
|
|
|
private readonly ResourceInterface $resource; |
27
|
|
|
|
28
|
|
|
public function __construct( |
29
|
|
|
ResourceInterface $resource, |
30
|
|
|
) { |
31
|
|
|
$this->resource = clone $resource; |
|
|
|
|
32
|
|
|
} |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* {@inheritDoc} |
36
|
|
|
* |
37
|
|
|
* @throws EmbedException |
38
|
|
|
*/ |
39
|
|
|
#[Override] |
40
|
|
|
public function invoke(MethodInvocation $invocation) |
41
|
|
|
{ |
42
|
|
|
$ro = $invocation->getThis(); |
43
|
|
|
assert($ro instanceof ResourceObject); |
44
|
|
|
$query = $this->getArgsByInvocation($invocation); |
45
|
|
|
$embeds = $invocation->getMethod()->getAnnotations(); |
46
|
|
|
$this->embedResource($embeds, $ro, $query); |
47
|
|
|
|
48
|
|
|
return $invocation->proceed(); |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* @param array<Embed|object> $embeds |
53
|
|
|
* @param Query $query |
|
|
|
|
54
|
|
|
* |
55
|
|
|
* @throws EmbedException |
56
|
|
|
* |
57
|
|
|
* @psalm-suppress NoInterfaceProperties |
58
|
|
|
* @psalm-suppress MixedMethodCall |
59
|
|
|
*/ |
60
|
|
|
private function embedResource(array $embeds, ResourceObject $ro, array $query): void |
61
|
|
|
{ |
62
|
|
|
foreach ($embeds as $embed) { |
63
|
|
|
if (! $embed instanceof Embed) { |
64
|
|
|
continue; |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
try { |
68
|
|
|
$templateUri = $this->getFullUri($embed->src, $ro); |
69
|
|
|
$uri = uri_template($templateUri, $query); |
70
|
|
|
/** @var Request $request */ // phpcs:ignore SlevomatCodingStandard.PHP.RequireExplicitAssertion.RequiredExplicitAssertion |
71
|
|
|
$request = $this->resource->get->uri($uri); // @phpstan-ignore-line |
72
|
|
|
$this->prepareBody($ro, $embed); |
73
|
|
|
|
74
|
|
|
if ($embed->rel === self::SELF_LINK) { |
75
|
|
|
$this->linkSelf($request, $ro); |
76
|
|
|
|
77
|
|
|
continue; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
assert(is_array($ro->body)); |
81
|
|
|
|
82
|
|
|
$ro->body[$embed->rel] = clone $request; |
83
|
|
|
} catch (BadRequestException $e) { |
84
|
|
|
// wrap ResourceNotFound or Uri exception |
85
|
|
|
throw new EmbedException($embed->src, 500, $e); |
86
|
|
|
} |
87
|
|
|
} |
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
private function getFullUri(string $uri, ResourceObject $ro): string |
91
|
|
|
{ |
92
|
|
|
if ($uri[0] === '/') { |
93
|
|
|
$uri = "{$ro->uri->scheme}://{$ro->uri->host}" . $uri; |
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
return $uri; |
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
public function prepareBody(ResourceObject $ro, Embed $embed): void |
100
|
|
|
{ |
101
|
|
|
if ($ro->body === null) { |
102
|
|
|
$ro->body = []; |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
if (! is_array($ro->body)) { |
106
|
|
|
throw new LinkException($embed->rel); // @codeCoverageIgnore |
107
|
|
|
} |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
/** |
111
|
|
|
* @param MethodInvocation<object> $invocation |
112
|
|
|
* |
113
|
|
|
* @return array<string, mixed> |
114
|
|
|
*/ |
115
|
|
|
private function getArgsByInvocation(MethodInvocation $invocation): array |
116
|
|
|
{ |
117
|
|
|
/** @var list<scalar> $args */ |
118
|
|
|
$args = $invocation->getArguments()->getArrayCopy(); |
119
|
|
|
$params = $invocation->getMethod()->getParameters(); |
120
|
|
|
$namedParameters = []; |
121
|
|
|
foreach ($params as $param) { |
122
|
|
|
$namedParameters[$param->name] = array_shift($args); |
|
|
|
|
123
|
|
|
} |
124
|
|
|
|
125
|
|
|
return $namedParameters; |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
public function linkSelf(Request $request, ResourceObject $ro): void |
129
|
|
|
{ |
130
|
|
|
$result = $request(); |
131
|
|
|
assert(is_array($result->body)); |
132
|
|
|
/** @var mixed $value */ |
133
|
|
|
foreach ($result->body as $key => $value) { |
134
|
|
|
assert(is_string($key)); |
135
|
|
|
/** @psalm-suppress MixedArrayAssignment */ |
136
|
|
|
$ro->body[$key] = $value; // @phpstan-ignore-line |
137
|
|
|
} |
138
|
|
|
|
139
|
|
|
$ro->code = $result->code; |
140
|
|
|
} |
141
|
|
|
} |
142
|
|
|
|