Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
23 / 23
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ScopeUpdate
100.00% covered (success)
100.00%
23 / 23
100.00% covered (success)
100.00%
1 / 1
3
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
23 / 23
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\Scope;
13
14class ScopeUpdate 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        $input = Validator::input()->isJson()->assertValid()->getValue();
27        $existingScope = (new Scope())->readEntity($args['id'], 1);
28        if (! $existingScope) {
29            throw new Exception\Scope\ScopeNotFound();
30        }
31        $scope = clone $existingScope;
32        $scope->addData($input);
33        $scope->id = $existingScope->id;
34        $scope->testValid('de_DE', 1);
35        $user = new Helper\User($request, 2);
36
37        $user->checkAnyPermission(
38            'restrictedscope',
39            'scope'
40        );
41
42        $user->checkRights(
43            new \BO\Zmsentities\Useraccount\EntityAccess($existingScope)
44        );
45
46        if (! Helper\User::readWorkstation()->getUseraccount()->hasPermissions(['scope'])) {
47            $scope = $scope->withProviderSourceFrom($existingScope);
48        }
49
50        $message = Response\Message::create($request);
51        $message->data = (new Scope())->updateEntity($scope->id, $scope);
52
53        $response = Render::withLastModified($response, time(), '0');
54        $response = Render::withJson($response, $message, $message->getStatuscode());
55        return $response;
56    }
57}