Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
15 / 15
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
WorkstationUpdate
100.00% covered (success)
100.00%
15 / 15
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
15 / 15
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\Workstation;
13
14class WorkstationUpdate extends BaseController
15{
16    /**
17     * @SuppressWarnings(Param)
18     * @return String
19     */
20    public function readResponse(
21        \Psr\Http\Message\RequestInterface $request,
22        \Psr\Http\Message\ResponseInterface $response,
23        array $args
24    ) {
25        $currentWorkstation = (new Helper\User($request))->checkRights();
26        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(1)->getValue();
27        $input = Validator::input()->isJson()->assertValid()->getValue();
28        $entity = new \BO\Zmsentities\Workstation($input);
29        $entity->testValid();
30        Helper\User::testWorkstationIsOveraged($entity);
31        if ($entity->getUseraccount()->id != $currentWorkstation->getUseraccount()->id) {
32            throw new Exception\Workstation\WorkstationAccessFailed();
33        }
34        $entity->getUseraccount()->rights = $currentWorkstation->getUseraccount()->rights;
35        $workstation = (new Workstation())->updateEntity($entity, $resolveReferences);
36        $message = Response\Message::create($request);
37        $message->data = $workstation;
38
39        $response = Render::withLastModified($response, time(), '0');
40        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
41        return $response;
42    }
43}