Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
OrganisationGet
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
3
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
3
1<?php
2
3/**
4 * @package ZMS API
5 * @copyright BerlinOnline Stadtportal GmbH & Co. KG
6 **/
7
8namespace BO\Zmsapi;
9
10use BO\Slim\Render;
11use BO\Mellon\Validator;
12use BO\Zmsdb\Organisation as Query;
13
14class OrganisationGet extends BaseController
15{
16    /**
17     * @SuppressWarnings(Param)
18     * @return \Psr\Http\Message\ResponseInterface
19     */
20    #[\Override]
21    public function readResponse(
22        \Psr\Http\Message\RequestInterface $request,
23        \Psr\Http\Message\ResponseInterface $response,
24        array $args
25    ) {
26        $workstation = new Helper\User($request);
27        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(0)->getValue();
28        $organisation = (new Query())->readEntity($args['id'], $resolveReferences);
29        if (! $organisation) {
30            throw new Exception\Organisation\OrganisationNotFound();
31        }
32
33        $message = Response\Message::create($request);
34
35        if ($workstation->hasRights()) {
36            $workstation->checkRights('department');
37        } else {
38            $organisation = $organisation->withLessData();
39            $message->meta->reducedData = true;
40        }
41
42        $message->data = $organisation;
43
44        $response = Render::withLastModified($response, time(), '0');
45        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
46        return $response;
47    }
48}