Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ScopeEmergency | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
2 | |
100.00% |
1 / 1 |
readResponse | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * @package ZMS API |
5 | * @copyright BerlinOnline Stadtportal GmbH & Co. KG |
6 | **/ |
7 | |
8 | namespace BO\Zmsapi; |
9 | |
10 | use BO\Slim\Render; |
11 | use BO\Mellon\Validator; |
12 | use BO\Zmsdb\Scope; |
13 | |
14 | class ScopeEmergency extends BaseController |
15 | { |
16 | /** |
17 | * @SuppressWarnings(Param) |
18 | * @return String |
19 | */ |
20 | public function readResponse( |
21 | \Psr\Http\Message\RequestInterface $request, |
22 | \Psr\Http\Message\ResponseInterface $response, |
23 | array $args |
24 | ) { |
25 | $workstation = (new Helper\User($request, 1))->checkRights(); |
26 | if (! $workstation->getScopeList()->hasEntity($args['id'])) { |
27 | throw new Exception\Scope\ScopeNoAccess(); |
28 | } |
29 | |
30 | $workstation->scope->status['emergency']['activated'] = 1; |
31 | $workstation->scope->status['emergency']['calledByWorkstation'] = $workstation->getName(); |
32 | $workstation->scope->status['emergency']['acceptedByWorkstation'] = -1; |
33 | |
34 | $message = Response\Message::create($request); |
35 | $message->data = (new Scope())->updateEmergency($args['id'], $workstation->scope); |
36 | |
37 | $response = Render::withLastModified($response, time(), '0'); |
38 | $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode()); |
39 | return $response; |
40 | } |
41 | } |