1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* apparat-object |
5
|
|
|
* |
6
|
|
|
* @category Apparat |
7
|
|
|
* @package Apparat\Object |
8
|
|
|
* @subpackage Apparat\Object\Domain |
9
|
|
|
* @author Joschi Kuphal <[email protected]> / @jkphl |
10
|
|
|
* @copyright Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl |
11
|
|
|
* @license http://opensource.org/licenses/MIT The MIT License (MIT) |
12
|
|
|
*/ |
13
|
|
|
|
14
|
|
|
/*********************************************************************************** |
15
|
|
|
* The MIT License (MIT) |
16
|
|
|
* |
17
|
|
|
* Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl |
18
|
|
|
* |
19
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of |
20
|
|
|
* this software and associated documentation files (the "Software"), to deal in |
21
|
|
|
* the Software without restriction, including without limitation the rights to |
22
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
23
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so, |
24
|
|
|
* subject to the following conditions: |
25
|
|
|
* |
26
|
|
|
* The above copyright notice and this permission notice shall be included in all |
27
|
|
|
* copies or substantial portions of the Software. |
28
|
|
|
* |
29
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
30
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
31
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
32
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
33
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
34
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
35
|
|
|
***********************************************************************************/ |
36
|
|
|
|
37
|
|
|
namespace Apparat\Object\Domain\Model\Uri; |
38
|
|
|
|
39
|
|
|
use Apparat\Kernel\Ports\Kernel; |
40
|
|
|
use Apparat\Object\Domain\Repository\RepositoryInterface; |
41
|
|
|
use Apparat\Object\Domain\Repository\Service; |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* Apparat URL |
45
|
|
|
* |
46
|
|
|
* @package Apparat\Object |
47
|
|
|
* @subpackage Apparat\Object\Domain |
48
|
|
|
*/ |
49
|
|
|
class ApparatUrl extends ObjectUrl |
50
|
|
|
{ |
51
|
|
|
/** |
52
|
|
|
* Valid schemes |
53
|
|
|
* |
54
|
|
|
* @var array |
55
|
|
|
*/ |
56
|
|
|
protected static $schemes = [self::SCHEME_APRT => true, self::SCHEME_APRTS => true]; |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* APRT-Schema |
60
|
|
|
* |
61
|
|
|
* @var string |
62
|
|
|
*/ |
63
|
|
|
const SCHEME_APRT = 'aprt'; |
64
|
|
|
/** |
65
|
|
|
* APRTS-Schema |
66
|
|
|
* |
67
|
|
|
* @var string |
68
|
|
|
*/ |
69
|
|
|
const SCHEME_APRTS = 'aprts'; |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* Apparat URL constructor |
73
|
|
|
* |
74
|
|
|
* If the constructor doesn't throw an exception, the URL is valid and |
75
|
|
|
* |
76
|
|
|
* 1. either an absolute URL (local or remote) or |
77
|
|
|
* 2. a relative URL to a known local repository (respectively the to the context repository if given) |
78
|
|
|
* |
79
|
|
|
* @param string $url Apparat URL |
80
|
|
|
* @param boolean $remote Accept remote URL (less strict date component checking) |
81
|
|
|
* @param RepositoryInterface $contextRepository Context repository |
82
|
|
|
* @throws ApparatInvalidArgumentException If the URL is absolute but doesn't have the apparat scheme |
83
|
|
|
* @throws ApparatInvalidArgumentException If this is a local Apparat URL with an unknown repository |
84
|
|
|
*/ |
85
|
39 |
|
public function __construct($url, $remote = false, RepositoryInterface $contextRepository = null) |
86
|
|
|
{ |
87
|
39 |
|
parent::__construct($url, $remote); |
88
|
|
|
|
89
|
|
|
// If it's an absolute URL |
90
|
32 |
|
if ($this->isAbsolute()) { |
91
|
|
|
// If the Apparat URL scheme is invalid |
92
|
26 |
|
if (!array_key_exists($this->urlParts['scheme'], self::$schemes)) { |
93
|
25 |
|
throw new ApparatInvalidArgumentException( |
94
|
25 |
|
sprintf('Invalid absolute apparat URL "%s"', $url), |
95
|
|
|
ApparatInvalidArgumentException::INVALID_ABSOLUTE_APPARAT_URL |
96
|
25 |
|
); |
97
|
|
|
} |
98
|
|
|
|
99
|
25 |
|
return; |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
// If this URL doesn't have a repository URL and a context repository is given: Inherit its URL |
103
|
30 |
|
if (!strlen($this->getPath()) && ($contextRepository instanceof RepositoryInterface)) { |
104
|
28 |
|
$this->urlParts['path'] = $contextRepository->getUrl(); |
105
|
28 |
|
} |
106
|
|
|
|
107
|
|
|
// If the the repository involved is unknown and cannot be auto-connected |
108
|
30 |
|
if (!Kernel::create(Service::class)->isRegistered($this->getPath())) { |
109
|
1 |
|
throw new ApparatInvalidArgumentException( |
110
|
1 |
|
sprintf('Unknown local repository URL "%s"', $this->getPath()), |
111
|
|
|
ApparatInvalidArgumentException::UNKNOWN_LOCAL_REPOSITORY_URL |
112
|
1 |
|
); |
113
|
|
|
}; |
114
|
29 |
|
} |
115
|
|
|
|
116
|
|
|
/** |
117
|
|
|
* Return the normalized repository URL part of this object URL |
118
|
|
|
* |
119
|
|
|
* @return string Repository URL |
120
|
|
|
*/ |
121
|
2 |
|
public function getNormalizedRepositoryUrl() |
122
|
|
|
{ |
123
|
2 |
|
return preg_replace("%^aprt(s?)://%", "http\\1://", $this->getRepositoryUrl()); |
124
|
|
|
} |
125
|
|
|
} |
126
|
|
|
|