Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
11 / 11
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ScopeListByCluster
100.00% covered (success)
100.00%
11 / 11
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
11 / 11
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\Zmsbackend\Scope\Api;
9
10use BO\Slim\Render;
11use BO\Mellon\Validator;
12use BO\Zmsbackend\Scope\Service\Scope as Query;
13
14class ScopeListByCluster extends \BO\Zmsbackend\Api\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        (new \BO\Zmsbackend\Helper\User($request))->checkPermissions();
27
28        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(1)->getValue();
29        $cluster = (new \BO\Zmsbackend\Cluster\Service\Cluster())->readEntity($args['id']);
30        if (! $cluster) {
31            throw new \BO\Zmsbackend\Cluster\Exception\ClusterNotFound();
32        }
33
34        $scopeList = (new Query())->readByClusterId($cluster->id, $resolveReferences);
35
36        $message = \BO\Zmsbackend\Api\Response\Message::create($request);
37        $message->data = $scopeList;
38
39        $response = Render::withLastModified($response, time(), '0');
40        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
41        return $response;
42    }
43}