Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ScopeList
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
1 / 1
3
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
12 / 12
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 as Query;
13
14class ScopeList 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        $message = Response\Message::create($request);
27        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(1)->getValue();
28        $scopeList = (new Query())->readList($resolveReferences);
29        if (0 == $scopeList->count()) {
30            throw new Exception\Scope\ScopeNotFound(); // @codeCoverageIgnore
31        }
32        if ((new Helper\User($request))->hasRights()) {
33            (new Helper\User($request))->checkAnyPermission('restrictedscope', 'scope');
34        } else {
35            $scopeList = $scopeList->withLessData();
36            $message->meta->reducedData = true;
37        }
38
39        $message->data = $scopeList;
40
41        $response = Render::withLastModified($response, time(), '0');
42        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
43        return $response;
44    }
45}