Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
SessionGet
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
12 / 12
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\Zmsdb\Session;
12use BO\Mellon\Validator;
13
14class SessionGet 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        \BO\Zmsdb\Connection\Select::getWriteConnection();
26        $session = (new Session())->readEntity($args['name'], $args['id']);
27        if (! $session) {
28            throw new Exception\Session\SessionNotFound();
29        }
30        $session->id = $args['id'];
31        $session->name = $args['name'];
32        $session->testValid();
33
34        $message = Response\Message::create($request);
35        $message->data = $session;
36
37        $response = Render::withLastModified($response, time(), '0');
38        $response = Render::withJson($response, $message->setUpdatedMetaData(), $message->getStatuscode());
39        return $response;
40    }
41}