Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
11 / 11
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ScopeEmergencyStop
100.00% covered (success)
100.00%
11 / 11
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
11 / 11
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\Scope;
13
14class ScopeEmergencyStop 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        $workstation = (new Helper\User($request, 1))->checkPermissions('emergency');
27        if (! $workstation->getScopeList()->hasEntity($args['id'])) {
28            throw new Exception\Scope\ScopeNoAccess();
29        }
30
31        $workstation->scope->status['emergency']['activated'] = 0;
32        $workstation->scope->status['emergency']['calledByWorkstation'] = -1;
33        $workstation->scope->status['emergency']['acceptedByWorkstation'] = -1;
34
35        $message = Response\Message::create($request);
36        $message->data = (new Scope())->updateEmergency($args['id'], $workstation->scope);
37
38        $response = Render::withLastModified($response, time(), '0');
39        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
40        return $response;
41    }
42}