Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
15 / 15 |
|
100.00% |
6 / 6 |
CRAP | |
100.00% |
1 / 1 |
RunMethodCallOnSingleResourceRouteDefinition | |
100.00% |
15 / 15 |
|
100.00% |
6 / 6 |
10 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getOperationId | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getMethod | |
100.00% |
5 / 5 |
|
100.00% |
1 / 1 |
3 | |||
getUrl | |
100.00% |
4 / 4 |
|
100.00% |
1 / 1 |
2 | |||
getAction | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
createFrom | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
2 |
1 | <?php |
2 | namespace Apie\RestApi\RouteDefinitions; |
3 | |
4 | use Apie\Common\ActionDefinitions\ActionDefinitionInterface; |
5 | use Apie\Common\ActionDefinitions\RunResourceMethodDefinition; |
6 | use Apie\Common\Actions\RunItemMethodAction; |
7 | use Apie\Core\BoundedContext\BoundedContextId; |
8 | use Apie\Core\ContextConstants; |
9 | use Apie\Core\Entities\EntityInterface; |
10 | use Apie\Core\Enums\RequestMethod; |
11 | use Apie\Core\ValueObjects\UrlRouteDefinition; |
12 | use ReflectionClass; |
13 | use ReflectionMethod; |
14 | |
15 | /** |
16 | * Route definition for running method on single resource |
17 | */ |
18 | class RunMethodCallOnSingleResourceRouteDefinition extends AbstractRestApiRouteDefinition |
19 | { |
20 | /** |
21 | * @param ReflectionClass<EntityInterface> $className |
22 | */ |
23 | public function __construct(ReflectionClass $className, ReflectionMethod $method, BoundedContextId $boundedContextId) |
24 | { |
25 | parent::__construct($className, $boundedContextId, $method); |
26 | } |
27 | |
28 | public function getOperationId(): string |
29 | { |
30 | return 'get-single-' . $this->class->getShortName() . '-run-' . $this->method->name; |
31 | } |
32 | |
33 | public function getMethod(): RequestMethod |
34 | { |
35 | if ($this->method->getNumberOfParameters() === 0) { |
36 | return RequestMethod::GET; |
37 | } |
38 | if (str_starts_with($this->method->name, 'remove')) { |
39 | return RequestMethod::DELETE; |
40 | } |
41 | return RequestMethod::POST; |
42 | } |
43 | |
44 | public function getUrl(): UrlRouteDefinition |
45 | { |
46 | $url = $this->class->getShortName(); |
47 | $url .= ($this->method->isStatic()) ? '/' : ('/{' . ContextConstants::RESOURCE_ID . '}/'); |
48 | $url .= RunItemMethodAction::getDisplayNameForMethod($this->method); |
49 | return new UrlRouteDefinition($url); |
50 | } |
51 | |
52 | public function getAction(): string |
53 | { |
54 | return RunItemMethodAction::class; |
55 | } |
56 | |
57 | public static function createFrom(ActionDefinitionInterface $actionDefinition): ?AbstractRestApiRouteDefinition |
58 | { |
59 | if ($actionDefinition instanceof RunResourceMethodDefinition) { |
60 | return new self($actionDefinition->getResourceName(), $actionDefinition->getMethod(), $actionDefinition->getBoundedContextId()); |
61 | } |
62 | return null; |
63 | } |
64 | } |