Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ProcessByQueueNumber
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
1 / 1
4
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
19 / 19
100.00% covered (success)
100.00%
1 / 1
4
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\Scope;
13
14class ProcessByQueueNumber 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        $scope = (new Scope())->readWithWorkstationCount(
27            $args['id'],
28            \App::$now,
29            ($resolveReferences > 0) ? $resolveReferences - 1 : 0
30        );
31        if (! $scope) {
32            throw new Exception\Scope\ScopeNotFound();
33        }
34        $queueList = (new \BO\Zmsdb\Scope())->readQueueListWithWaitingTime($scope, \App::$now, $resolveReferences + 1);
35        $process = $queueList->getQueueByNumber($args['number']);
36        if ($process) {
37            $process = $process->getProcess();
38            $process->scope = $scope;
39        } else {
40            throw new Exception\Process\ProcessByQueueNumberNotFound();
41        }
42
43        $message = Response\Message::create($request);
44        $message->data = $process;
45
46        $response = Render::withLastModified($response, time(), '0');
47        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
48        return $response;
49    }
50}