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
OrganisationUpdate
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
2
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
2
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 OrganisationUpdate extends BaseController
15{
16    /**
17     * @return \Psr\Http\Message\ResponseInterface
18     */
19    #[\Override]
20    public function readResponse(
21        \Psr\Http\Message\RequestInterface $request,
22        \Psr\Http\Message\ResponseInterface $response,
23        array $args
24    ) {
25        $input = Validator::input()->isJson()->assertValid()->getValue();
26        $entity = new \BO\Zmsentities\Organisation($input);
27        $organisation = (new Query())->readEntity($args['id'], 1);
28        if (! $organisation) {
29            throw new Exception\Organisation\OrganisationNotFound();
30        }(new Helper\User($request, 2))->checkRights(
31            'organisation',
32            new \BO\Zmsentities\Useraccount\EntityAccess($organisation)
33        );
34
35        $message = Response\Message::create($request);
36        $message->data = (new Query())->updateEntity($organisation->id, $entity);
37
38        $response = Render::withLastModified($response, time(), '0');
39        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
40        return $response;
41    }
42}