Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
14 / 14 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| OrganisationUpdate | |
100.00% |
14 / 14 |
|
100.00% |
1 / 1 |
2 | |
100.00% |
1 / 1 |
| readResponse | |
100.00% |
14 / 14 |
|
100.00% |
1 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @package ZMS API |
| 5 | * @copyright BerlinOnline Stadtportal GmbH & Co. KG |
| 6 | **/ |
| 7 | |
| 8 | namespace BO\Zmsapi; |
| 9 | |
| 10 | use BO\Slim\Render; |
| 11 | use BO\Mellon\Validator; |
| 12 | use BO\Zmsdb\Organisation as Query; |
| 13 | |
| 14 | class OrganisationUpdate extends BaseController |
| 15 | { |
| 16 | /** |
| 17 | * @return String |
| 18 | */ |
| 19 | public function readResponse( |
| 20 | \Psr\Http\Message\RequestInterface $request, |
| 21 | \Psr\Http\Message\ResponseInterface $response, |
| 22 | array $args |
| 23 | ) { |
| 24 | $input = Validator::input()->isJson()->assertValid()->getValue(); |
| 25 | $entity = new \BO\Zmsentities\Organisation($input); |
| 26 | $organisation = (new Query())->readEntity($args['id'], 1); |
| 27 | if (! $organisation) { |
| 28 | throw new Exception\Organisation\OrganisationNotFound(); |
| 29 | }(new Helper\User($request, 2))->checkRights( |
| 30 | 'organisation', |
| 31 | new \BO\Zmsentities\Useraccount\EntityAccess($organisation) |
| 32 | ); |
| 33 | |
| 34 | $message = Response\Message::create($request); |
| 35 | $message->data = (new Query())->updateEntity($organisation->id, $entity); |
| 36 | |
| 37 | $response = Render::withLastModified($response, time(), '0'); |
| 38 | $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode()); |
| 39 | return $response; |
| 40 | } |
| 41 | } |