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\Zmsapi;
9
10use BO\Slim\Render;
11use BO\Mellon\Validator;
12use BO\Zmsdb\Scope;
13use BO\Zmsentities\Scope as Entity;
14
15class CounterGhostWorkstation 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        $workstation = (new Helper\User($request))->checkPermissions('counter');
28        $input = Validator::input()->isJson()->assertValid()->getValue();
29        $entity = new Entity($input);
30        $entity->testValid();
31        $scope = (new Scope())->readEntity($entity->id, 0);
32        if (! $scope) {
33            throw new Exception\Scope\ScopeNotFound();
34        }
35        if ($scope->id != $workstation->getScope()->id) {
36            throw new Exception\Scope\ScopeNoAccess();
37        }
38        $message = Response\Message::create($request);
39        $message->data = (new Scope())->updateGhostWorkstationCount($entity, \App::$now);
40
41        $response = Render::withLastModified($response, time(), '0');
42        $response = Render::withJson($response, $message, $message->getStatuscode());
43        return $response;
44    }
45}