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\Zmsbackend\Workstation\Api;
9
10use BO\Slim\Render;
11use BO\Mellon\Validator;
12
13class WorkstationListByScope extends \BO\Zmsbackend\Api\BaseController
14{
15    /**
16     * @SuppressWarnings(Param)
17     * @return \Psr\Http\Message\ResponseInterface
18     */
19    #[\Override]
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 \BO\Zmsbackend\Scope\Service\Scope())->readEntity($args['id'], 0);
27        if (! $scope) {
28            throw new \BO\Zmsbackend\Scope\Exception\ScopeNotFound();
29        }
30        $workstationList = (new \BO\Zmsbackend\Workstation\Service\Workstation())->readLoggedInListByScope($scope->id, \App::$now, $resolveReferences);
31
32        $message = \BO\Zmsbackend\Api\Response\Message::create($request);
33        $message->data = $workstationList;
34
35        $response = Render::withLastModified($response, time(), '0');
36        $response = Render::withJson($response, $message, $message->getStatuscode());
37        return $response;
38    }
39}