Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
15 / 15 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ScopeCalldisplayImageDataUpdate | |
100.00% |
15 / 15 |
|
100.00% |
1 / 1 |
2 | |
100.00% |
1 / 1 |
readResponse | |
100.00% |
15 / 15 |
|
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\Scope as Query; |
13 | |
14 | class ScopeCalldisplayImageDataUpdate 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 | \BO\Zmsdb\Connection\Select::getWriteConnection(); |
26 | $scope = (new Query())->readEntity($args['id']); |
27 | if (! $scope) { |
28 | throw new Exception\Scope\ScopeNotFound(); |
29 | }(new Helper\User($request, 2))->checkRights( |
30 | 'scope', |
31 | new \BO\Zmsentities\Useraccount\EntityAccess($scope) |
32 | ); |
33 | |
34 | $input = Validator::input()->isJson()->getValue(); |
35 | $mimepart = new \BO\Zmsentities\Mimepart($input); |
36 | |
37 | $message = Response\Message::create($request); |
38 | $message->data = (new Query())->writeImageData($scope->id, $mimepart); |
39 | |
40 | $response = Render::withLastModified($response, time(), '0'); |
41 | $response = Render::withJson($response, $message, $message->getStatuscode()); |
42 | return $response; |
43 | } |
44 | } |