Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
DayoffUpdate | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
readResponse | |
100.00% |
11 / 11 |
|
100.00% |
1 / 1 |
1 |
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\DayOff as Query; |
13 | |
14 | class DayoffUpdate 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 | (new Helper\User($request))->checkRights('superuser'); |
26 | |
27 | $query = new Query(); |
28 | $input = Validator::input()->isJson()->assertValid()->getValue(); |
29 | $collection = new \BO\Zmsentities\Collection\DayoffList($input); |
30 | $collection->testDatesInYear($args['year']); |
31 | $collection = $query->writeCommonDayoffsByYear($input, $args['year']); |
32 | |
33 | $message = Response\Message::create($request); |
34 | $message->data = $collection; |
35 | |
36 | $response = Render::withLastModified($response, time(), '0'); |
37 | $response = Render::withJson($response, $message, 200); |
38 | return $response; |
39 | } |
40 | } |