-
Notifications
You must be signed in to change notification settings - Fork 0
/
VersionControl.php
70 lines (57 loc) · 1.49 KB
/
VersionControl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
namespace Orchestra\Http;
use InvalidArgumentException;
class VersionControl
{
/**
* List of supported versions.
*
* @var array
*/
protected $supportedVersions = [];
/**
* Default version.
*
* @var string
*/
protected $defaultVersion;
/**
* Add version.
*
* @return $this
*/
public function addVersion(string $code, string $namespace, bool $default = false)
{
$this->supportedVersions[$code] = $namespace;
if (is_null($this->defaultVersion) || $default === true) {
$this->setDefaultVersion($code);
}
return $this;
}
/**
* Set default version.
*
* @throws \InvalidArgumentException
*
* @return $this
*/
public function setDefaultVersion(string $code)
{
if (! \array_key_exists($code, $this->supportedVersions)) {
throw new InvalidArgumentException("Unable to set [{$code}] as default version!");
}
$this->defaultVersion = $code;
return $this;
}
/**
* Resolve version for requested class.
*/
public function resolve(string $namespace, string $version, string $name): string
{
$class = \str_replace('.', '\\', $name);
if (! \array_key_exists($version, $this->supportedVersions)) {
$version = $this->defaultVersion;
}
return \sprintf('%s\%s\%s\%s', $namespace, $this->supportedVersions[$version], $class);
}
}