forked from Dhii/containers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrefixingContainer.php
More file actions
128 lines (114 loc) · 3.26 KB
/
PrefixingContainer.php
File metadata and controls
128 lines (114 loc) · 3.26 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
declare(strict_types=1);
namespace Dhii\Container;
use Dhii\Collection\ContainerInterface;
use Dhii\Container\Exception\NotFoundException;
use Psr\Container\ContainerInterface as PsrContainerInterface;
use Psr\Container\NotFoundExceptionInterface;
/**
* A container implementation that wraps around an inner container and prefixes its keys, requiring consumers to
* include them when fetching or looking up data.
*
* @since [*next-version*]
*/
class PrefixingContainer implements ContainerInterface
{
/**
* @since [*next-version*]
*
* @var PsrContainerInterface
*/
protected $inner;
/**
* @since [*next-version*]
*
* @var string
*/
protected $prefix;
/**
* @since [*next-version*]
*
* @var bool
*/
protected $strict;
/**
* Constructor.
*
* @since [*next-version*]
*
* @param PsrContainerInterface $container The container whose keys to prefix.
* @param string $prefix The prefix to apply to the container's keys.
* @param bool $strict Whether or not to fallback to un-prefixed keys if a prefixed key does not
* exist in the inner container.
*/
public function __construct(PsrContainerInterface $container, string $prefix, bool $strict = true)
{
$this->inner = $container;
$this->prefix = $prefix;
$this->strict = $strict;
}
/**
* @inheritdoc
*
* @since [*next-version*]
*/
public function get($key)
{
if (!$this->isPrefixed($key) && $this->strict) {
throw new NotFoundException(sprintf('Key "%s" does not exist', $key));
}
/**
* @psalm-suppress InvalidCatch
* The base interface does not extend Throwable, but in fact everything that is possible
* in theory to catch will be Throwable, and PSR-11 exceptions will implement this interface
*/
try {
return $this->inner->get($this->unprefix($key));
} catch (NotFoundExceptionInterface $nfException) {
if ($this->strict) {
throw $nfException;
}
}
return $this->inner->get($key);
}
/**
* @inheritdoc
*
* @since [*next-version*]
*/
public function has($key)
{
if (!$this->isPrefixed($key) && $this->strict) {
return false;
}
return $this->inner->has($this->unprefix($key)) || (!$this->strict && $this->inner->has($key));
}
/**
* Retrieves the key to use for the inner container.
*
* @since [*next-version*]
*
* @param string $key The outer key.
*
* @return string The inner key.
*/
protected function unprefix(string $key): string
{
return $this->isPrefixed($key)
? substr($key, strlen($this->prefix))
: $key;
}
/**
* Checks if the key is prefixed.
*
* @since [*next-version*]
*
* @param string $key The key to check.
*
* @return bool True if the key is prefixed, false if not.
*/
protected function isPrefixed(string $key): bool
{
return strlen($this->prefix) > 0 && strpos($key, $this->prefix) === 0;
}
}