Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
CounterGhostWorkstation
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
3
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
3
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;
12use BO\Zmsentities\Scope as Entity;
13
14class CounterGhostWorkstation extends \BO\Zmsbackend\Api\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        $workstation = (new \BO\Zmsbackend\Helper\User($request))->checkPermissions('counter');
27        $input = Validator::input()->isJson()->assertValid()->getValue();
28        $entity = new Entity($input);
29        $entity->testValid();
30        $scope = (new \BO\Zmsbackend\Scope\Service\Scope())->readEntity($entity->id, 0);
31        if (! $scope) {
32            throw new \BO\Zmsbackend\Scope\Exception\ScopeNotFound();
33        }
34        if ($scope->id != $workstation->getScope()->id) {
35            throw new \BO\Zmsbackend\Scope\Exception\ScopeNoAccess();
36        }
37        $message = \BO\Zmsbackend\Api\Response\Message::create($request);
38        $message->data = (new \BO\Zmsbackend\Scope\Service\Scope())->updateGhostWorkstationCount($entity, \App::$now);
39
40        $response = Render::withLastModified($response, time(), '0');
41        $response = Render::withJson($response, $message, $message->getStatuscode());
42        return $response;
43    }
44}