Passed
Push — feature/unit-tests ( 8a1375...16a1aa )
by Daniel
05:56
created

RefererUrlHelper::getAbsoluteUrl()   A

Complexity

Conditions 6
Paths 5

Size

Total Lines 19
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 11
CRAP Score 6

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 10
c 1
b 0
f 0
dl 0
loc 19
ccs 11
cts 11
cp 1
rs 9.2222
nc 5
nop 1
cc 6
crap 6
1
<?php
2
3
/*
4
 * This file is part of the Silverback API Component Bundle Project
5
 *
6
 * (c) Daniel West <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Silverback\ApiComponentBundle\Url;
15
16
use Silverback\ApiComponentBundle\Exception\InvalidArgumentException;
17
use Silverback\ApiComponentBundle\Exception\OutOfBoundsException;
18
use Symfony\Component\HttpFoundation\RequestStack;
19
20
/**
21
 * @author Daniel West <[email protected]>
22
 */
23
class RefererUrlHelper
24
{
25
    private RequestStack $requestStack;
26
27 18
    public function __construct(RequestStack $requestStack)
28
    {
29 18
        $this->requestStack = $requestStack;
30 18
    }
31
32 14
    public function getAbsoluteUrl($path): string
33
    {
34 14
        if (false !== strpos($path, '://') || 0 === strpos($path, '//')) {
35 1
            return $path;
36
        }
37
38 13
        $request = $this->requestStack->getMasterRequest();
39 13
        if (!$request) {
40 2
            throw new InvalidArgumentException('To generate an absolute URL to the referrer, there must be a valid master request');
41
        }
42
43 11
        if (null !== ($origin = $request->headers->get('origin', null))) {
0 ignored issues
show
introduced by
The condition null !== $origin = $requ...rs->get('origin', null) is always true.
Loading history...
44 2
            return $this->concatPathToUrl($origin, $path);
45
        }
46 9
        if (null !== ($referer = $request->headers->get('referer', null))) {
47 8
            return $this->concatPathToUrl($referer, $path);
48
        }
49
50 1
        throw new OutOfBoundsException('To generate an absolute URL to the referrer, the request must have a `origin` or `referer` header present');
51
    }
52
53 10
    private function concatPathToUrl(string $origin, string $path): string
54
    {
55 10
        return $this->getUrlPrefix($origin) . '/' . ltrim($path, '/');
56
    }
57
58 10
    private function getUrlPrefix(string $url): string
59
    {
60
        $defaults = [
61 10
            'host' => null,
62
            'scheme' => null,
63
            'port' => null,
64
        ];
65
66
        [
67 10
            'host' => $host,
68 10
            'scheme' => $scheme,
69 10
            'port' => $port
70 10
        ] = array_merge($defaults, parse_url($url) ?: []);
71
72 10
        if (null === $host) {
73 3
            throw new OutOfBoundsException('Could not extract `host` while parsing the `referer` header');
74
        }
75
76 7
        if (null === $scheme) {
77 1
            throw new OutOfBoundsException('Could not extract `scheme` while parsing the `referer` header');
78
        }
79
80 6
        $url = $scheme . '://' . $host;
81 6
        if ($port && (('https' === $scheme && 443 !== $port) || ('http' === $scheme && 80 !== $port))) {
82 1
            $url .= ':' . $port;
83
        }
84
85 6
        return $url;
86
    }
87
}
88