Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
15 / 15
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
TicketprinterListByScopeList
100.00% covered (success)
100.00%
15 / 15
100.00% covered (success)
100.00%
1 / 1
2
100.00% covered (success)
100.00%
1 / 1
 readResponse
100.00% covered (success)
100.00%
15 / 15
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\Zmsbackend\Ticketprinter\Api;
9
10use BO\Slim\Render;
11use BO\Mellon\Validator;
12
13class TicketprinterListByScopeList extends \BO\Zmsbackend\Api\BaseController
14{
15    /**
16     * @SuppressWarnings(Param)
17     * @return \Psr\Http\Message\ResponseInterface
18     */
19    #[\Override]
20    public function readResponse(
21        \Psr\Http\Message\RequestInterface $request,
22        \Psr\Http\Message\ResponseInterface $response,
23        array $args
24    ) {
25        (new \BO\Zmsbackend\Helper\User($request))->checkPermissions();
26
27        $scopeIdList = explode(',', $args['ids']);
28
29        $ticketprinterList = new \BO\Zmsentities\Collection\TicketprinterList();
30        foreach ($scopeIdList as $scopeId) {
31            $isEnabled = (new \BO\Zmsbackend\Scope\Service\Scope())->readIsEnabled($scopeId, \App::$now);
32            $entity = (new \BO\Zmsentities\Ticketprinter([
33                'enabled' => $isEnabled,
34                'buttonlist' => 's' . $scopeId
35            ]));
36            $ticketprinterList->addEntity($entity->toStructuredButtonList());
37        }
38
39        $message = \BO\Zmsbackend\Api\Response\Message::create($request);
40        $message->data = $ticketprinterList;
41
42        $response = Render::withLastModified($response, time(), '0');
43        $response = Render::withJson($response, $message, 200);
44        return $response;
45    }
46}