Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
87.50% covered (warning)
87.50%
7 / 8
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
DeleteTerminLabelEndpoint
87.50% covered (warning)
87.50%
7 / 8
0.00% covered (danger)
0.00%
0 / 1
2.01
0.00% covered (danger)
0.00%
0 / 1
 handle
87.50% covered (warning)
87.50%
7 / 8
0.00% covered (danger)
0.00%
0 / 1
2.01
1<?php
2
3namespace Olz\Termine\Endpoints;
4
5use Olz\Api\OlzDeleteEntityTypedEndpoint;
6use PhpTypeScriptApi\HttpError;
7
8/**
9 * @phpstan-import-type OlzTerminLabelId from TerminLabelEndpointTrait
10 * @phpstan-import-type OlzTerminLabelData from TerminLabelEndpointTrait
11 *
12 * @extends OlzDeleteEntityTypedEndpoint<OlzTerminLabelId, OlzTerminLabelData>
13 */
14class DeleteTerminLabelEndpoint extends OlzDeleteEntityTypedEndpoint {
15    use TerminLabelEndpointTrait;
16
17    protected function handle(mixed $input): mixed {
18        $this->checkPermission('termine');
19
20        $entity = $this->getEntityById($input['id']);
21
22        if (!$this->entityUtils()->canUpdateOlzEntity($entity, null, 'termine_admin')) {
23            throw new HttpError(403, "Kein Zugriff!");
24        }
25
26        $this->entityUtils()->updateOlzEntity($entity, ['onOff' => false]);
27        $this->entityManager()->persist($entity);
28        $this->entityManager()->flush();
29
30        return [];
31    }
32}