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
ClusterByScopeId
100.00% covered (success)
100.00%
11 / 11
100.00% covered (success)
100.00%
1 / 1
5
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
5
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\Cluster as Query;
13
14class ClusterByScopeId 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        $message = Response\Message::create($request);
26        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(0)->getValue();
27
28        if ((new Helper\User($request))->hasRights() || $resolveReferences > 0) {
29            $resolveReferences = ($resolveReferences > 0 ) ? $resolveReferences : 1;
30            (new Helper\User($request))->checkRights('basic');
31        } else {
32            $message->meta->reducedData = true;
33        }
34
35        $cluster = (new Query())->readByScopeId($args['id'], $resolveReferences);
36        $message->data = ($cluster) ? $cluster : array();
37
38        $response = Render::withLastModified($response, time(), '0');
39        $response = Render::withJson($response, $message, 200);
40        return $response;
41    }
42}