Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
10 / 10
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
WorkstationListByScope
100.00% covered (success)
100.00%
10 / 10
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
10 / 10
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\Workstation;
13use BO\Zmsentities\Helper\DateTime;
14
15class WorkstationListByScope extends BaseController
16{
17    /**
18     * @SuppressWarnings(Param)
19     * @return \Psr\Http\Message\ResponseInterface
20     */
21    #[\Override]
22    public function readResponse(
23        \Psr\Http\Message\RequestInterface $request,
24        \Psr\Http\Message\ResponseInterface $response,
25        array $args
26    ) {
27        $resolveReferences = Validator::param('resolveReferences')->isNumber()->setDefault(0)->getValue();
28        $scope = (new \BO\Zmsdb\Scope())->readEntity($args['id'], 0);
29        if (! $scope) {
30            throw new Exception\Scope\ScopeNotFound();
31        }
32        $workstationList = (new Workstation())->readLoggedInListByScope($scope->id, \App::$now, $resolveReferences);
33
34        $message = Response\Message::create($request);
35        $message->data = $workstationList;
36
37        $response = Render::withLastModified($response, time(), '0');
38        $response = Render::withJson($response, $message, $message->getStatuscode());
39        return $response;
40    }
41}