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 \Psr\Http\Message\ResponseInterface
19     */
20    #[\Override]
21    public function readResponse(
22        \Psr\Http\Message\RequestInterface $request,
23        \Psr\Http\Message\ResponseInterface $response,
24        array $args
25    ) {
26        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(0)->getValue();
27        $scope = (new Scope())->readWithWorkstationCount(
28            $args['id'],
29            \App::$now,
30            ($resolveReferences > 0) ? $resolveReferences - 1 : 0
31        );
32        if (! $scope) {
33            throw new Exception\Scope\ScopeNotFound();
34        }
35        $queueList = (new \BO\Zmsdb\Scope())->readQueueListWithWaitingTime($scope, \App::$now, $resolveReferences + 1);
36        $process = $queueList->getQueueByNumber($args['number']);
37        if ($process) {
38            $process = $process->getProcess();
39            $process->scope = $scope;
40        } else {
41            throw new Exception\Process\ProcessByQueueNumberNotFound();
42        }
43
44        $message = Response\Message::create($request);
45        $message->data = $process;
46
47        $response = Render::withLastModified($response, time(), '0');
48        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
49        return $response;
50    }
51}