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
ClusterDelete
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\Zmsapi;
9
10use BO\Slim\Render;
11use BO\Zmsdb\Cluster as Query;
12
13class ClusterDelete extends BaseController
14{
15    /**
16     * @SuppressWarnings(Param)
17     * @return String
18     */
19    public function readResponse(
20        \Psr\Http\Message\RequestInterface $request,
21        \Psr\Http\Message\ResponseInterface $response,
22        array $args
23    ) {
24        (new Helper\User($request))->checkRights('cluster');
25        $query = new Query();
26        $cluster = $query->readEntity($args['id']);
27        if (! $cluster) {
28            throw new Exception\Cluster\ClusterNotFound();
29        }
30        $query->deleteEntity($cluster->id);
31
32        $message = Response\Message::create($request);
33        $message->data = $cluster;
34
35        $response = Render::withLastModified($response, time(), '0');
36        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
37        return $response;
38    }
39}