Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 13 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
UpdateQuestionCategoryEndpoint | |
0.00% |
0 / 13 |
|
0.00% |
0 / 2 |
12 | |
0.00% |
0 / 1 |
configure | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
handle | |
0.00% |
0 / 11 |
|
0.00% |
0 / 1 |
6 |
1 | <?php |
2 | |
3 | namespace Olz\Faq\Endpoints; |
4 | |
5 | use Olz\Api\OlzUpdateEntityTypedEndpoint; |
6 | use PhpTypeScriptApi\HttpError; |
7 | |
8 | /** |
9 | * @phpstan-import-type OlzQuestionCategoryId from QuestionCategoryEndpointTrait |
10 | * @phpstan-import-type OlzQuestionCategoryData from QuestionCategoryEndpointTrait |
11 | * |
12 | * @extends OlzUpdateEntityTypedEndpoint<OlzQuestionCategoryId, OlzQuestionCategoryData> |
13 | */ |
14 | class UpdateQuestionCategoryEndpoint extends OlzUpdateEntityTypedEndpoint { |
15 | use QuestionCategoryEndpointTrait; |
16 | |
17 | public function configure(): void { |
18 | parent::configure(); |
19 | $this->phpStanUtils->registerTypeImport(QuestionCategoryEndpointTrait::class); |
20 | } |
21 | |
22 | protected function handle(mixed $input): mixed { |
23 | $this->checkPermission('faq'); |
24 | |
25 | $entity = $this->getEntityById($input['id']); |
26 | |
27 | if (!$this->entityUtils()->canUpdateOlzEntity($entity, $input['meta'], 'faq')) { |
28 | throw new HttpError(403, "Kein Zugriff!"); |
29 | } |
30 | |
31 | $this->entityUtils()->updateOlzEntity($entity, $input['meta']); |
32 | $this->updateEntityWithData($entity, $input['data']); |
33 | |
34 | $this->entityManager()->persist($entity); |
35 | $this->entityManager()->flush(); |
36 | |
37 | return [ |
38 | 'id' => $entity->getId() ?? 0, |
39 | ]; |
40 | } |
41 | } |