Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
RequestListByCluster
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
3
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
3
1<?php
2
3/**
4 * @package Zmsapi
5 * @copyright BerlinOnline Stadtportal GmbH & Co. KG
6 **/
7
8namespace BO\Zmsapi;
9
10use BO\Slim\Render;
11use BO\Mellon\Validator;
12use BO\Zmsdb\Request;
13
14class RequestListByCluster 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        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(0)->getValue();
26        $cluster = (new \BO\Zmsdb\Cluster())->readEntity($args['id'], $resolveReferences ? $resolveReferences : 2);
27        if (! $cluster) {
28            throw new Exception\Cluster\ClusterNotFound();
29        }
30
31        $message = Response\Message::create($request);
32        $message->data = (new Request())->readListByCluster($cluster, $resolveReferences);
33
34        $response = Render::withLastModified($response, time(), '0');
35        $response = Render::withJson($response, $message, 200);
36        return $response;
37    }
38}