Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
AppointmentPreconfirmController
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
2 / 2
5
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 readResponse
100.00% covered (success)
100.00%
8 / 8
100.00% covered (success)
100.00%
1 / 1
4
1<?php
2
3declare(strict_types=1);
4
5namespace BO\Zmscitizenapi\Controllers\Appointment;
6
7use BO\Zmscitizenapi\BaseController;
8use BO\Zmscitizenapi\Utils\ErrorMessages;
9use BO\Zmscitizenapi\Services\Appointment\AppointmentPreconfirmService;
10use BO\Zmscitizenapi\Services\Core\AuthenticationService;
11use BO\Zmscitizenapi\Services\Core\ValidationService;
12use Psr\Http\Message\RequestInterface;
13use Psr\Http\Message\ResponseInterface;
14
15class AppointmentPreconfirmController extends BaseController
16{
17    private AppointmentPreconfirmService $service;
18    public function __construct()
19    {
20        $this->service = new AppointmentPreconfirmService();
21    }
22
23    public function readResponse(RequestInterface $request, ResponseInterface $response, array $args): ResponseInterface
24    {
25        $requestErrors = ValidationService::validateServerPostRequest($request);
26        if (!empty($requestErrors['errors'])) {
27            return $this->createJsonResponse($response, $requestErrors, ErrorMessages::get('invalidRequest', $this->language)['statusCode']);
28        }
29
30        $authenticatedUser = AuthenticationService::getAuthenticatedUser($request);
31        $result = $this->service->processPreconfirm($request->getParsedBody(), $authenticatedUser);
32        return is_array($result) && isset($result['errors'])
33            ? $this->createJsonResponse($response, $result, ErrorMessages::getHighestStatusCode($result['errors']))
34            : $this->createJsonResponse($response, $result->toArray(), 200);
35    }
36}