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
ProcessListByScopeAndStatus
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\Mellon\Validator;
12use BO\Zmsdb\Process;
13use BO\Zmsdb\Scope;
14
15class ProcessListByScopeAndStatus extends BaseController
16{
17    /**
18     * @SuppressWarnings(Param)
19     * @return String
20     */
21    public function readResponse(
22        \Psr\Http\Message\RequestInterface $request,
23        \Psr\Http\Message\ResponseInterface $response,
24        array $args
25    ) {
26        (new Helper\User($request))->checkRights();
27        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(0)->getValue();
28        $scope = (new Scope())->readEntity($args['id'], $resolveReferences);
29        if (! $scope) {
30            throw new Exception\Scope\ScopeNotFound();
31        }
32
33        $query = new Process();
34        $message = Response\Message::create($request);
35        $message->data = $query->readProcessListByScopeAndStatus($scope->id, $args['status'], $resolveReferences);
36
37        $response = Render::withLastModified($response, time(), '0');
38        $response = Render::withJson($response, $message, 200);
39        return $response;
40    }
41}