Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
9 / 9 |
|
100.00% |
7 / 7 |
CRAP | |
100.00% |
1 / 1 |
StreamMethodCallOnSingleResourceRouteDefinition | |
100.00% |
9 / 9 |
|
100.00% |
7 / 7 |
8 | |
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% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getUrl | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getController | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
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\Cms\RouteDefinitions; |
3 | |
4 | use Apie\Cms\Controllers\FormCommitController; |
5 | use Apie\Common\ActionDefinitions\ActionDefinitionInterface; |
6 | use Apie\Common\ActionDefinitions\DownloadFilesActionDefinition; |
7 | use Apie\Common\Actions\StreamItemMethodAction; |
8 | use Apie\Core\BoundedContext\BoundedContextId; |
9 | use Apie\Core\Entities\EntityInterface; |
10 | use Apie\Core\Enums\RequestMethod; |
11 | use Apie\Core\ValueObjects\UrlRouteDefinition; |
12 | use ReflectionClass; |
13 | |
14 | /** |
15 | * Route definition for downloading a file. |
16 | */ |
17 | class StreamMethodCallOnSingleResourceRouteDefinition extends AbstractCmsRouteDefinition |
18 | { |
19 | /** |
20 | * @param ReflectionClass<EntityInterface> $className |
21 | */ |
22 | public function __construct(ReflectionClass $className, BoundedContextId $boundedContextId) |
23 | { |
24 | parent::__construct($className, $boundedContextId); |
25 | } |
26 | |
27 | public function getOperationId(): string |
28 | { |
29 | return 'form-stream-single-' . $this->class->getShortName() . '-run-download'; |
30 | } |
31 | |
32 | public function getMethod(): RequestMethod |
33 | { |
34 | return RequestMethod::GET; |
35 | } |
36 | |
37 | public function getUrl(): UrlRouteDefinition |
38 | { |
39 | return new UrlRouteDefinition('/resource/action/' . $this->class->getShortName() . '/{id}/download/{properties}'); |
40 | } |
41 | |
42 | public function getController(): string |
43 | { |
44 | return FormCommitController::class; |
45 | } |
46 | |
47 | public function getAction(): string |
48 | { |
49 | return StreamItemMethodAction::class; |
50 | } |
51 | |
52 | public static function createFrom(ActionDefinitionInterface $actionDefinition): ?AbstractCmsRouteDefinition |
53 | { |
54 | if ($actionDefinition instanceof DownloadFilesActionDefinition) { |
55 | return new self($actionDefinition->getResourceName(), $actionDefinition->getBoundedContextId()); |
56 | } |
57 | return null; |
58 | } |
59 | } |