ProdVndErrorPage::getResponseBody()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
ccs 0
cts 0
cp 0
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 2
crap 6
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BEAR\Package\Provide\Error;
6
7
use BEAR\Resource\ResourceObject;
8
use BEAR\Sunday\Extension\Router\RouterMatch;
9
use Throwable;
10
11
use function json_encode;
12 2
13
use const JSON_PRETTY_PRINT;
14 2
use const JSON_UNESCAPED_SLASHES;
15 2
use const PHP_EOL;
16 2
17 2
final class ProdVndErrorPage extends ResourceObject
18 2
{
19
    public function __construct(Throwable $e, RouterMatch $request)
20 2
    {
21
        unset($request);
22 2
        $status = new Status($e);
23
        $this->code = $status->code;
24 2
        $this->headers = $this->getHeader($status->code);
25
        $this->body = $this->getResponseBody($e, $status);
26
    }
27 2
28
    public function toString(): string
29 2
    {
30
        $this->view = json_encode($this->body, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL;
31
32 2
        return $this->view;
33
    }
34 2
35 2
    /** @return array<string, string> */
36 2
    private function getHeader(int $code): array
37 2
    {
38
        return ['content-type' => $code >= 500 ? 'application/vnd.error+json' : 'application/json'];
39
    }
40 2
41
    /** @return array<string, string> */
42
    private function getResponseBody(Throwable $e, Status $status): array
43
    {
44
        $body = ['message' => $status->text];
45
        if ($status->code >= 500) {
46
            $body['logref'] = (string) new LogRef($e);
47
        }
48
49
        return $body;
50
    }
51
}
52