forked from ylsideas/feature-flags
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManager.php
More file actions
367 lines (297 loc) · 10.8 KB
/
Manager.php
File metadata and controls
367 lines (297 loc) · 10.8 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
<?php
namespace YlsIdeas\FeatureFlags;
use Illuminate\Auth\AuthManager;
use Illuminate\Cache\CacheManager;
use Illuminate\Contracts\Auth\Access\Gate;
use Illuminate\Contracts\Config\Repository;
use Illuminate\Contracts\Container\BindingResolutionException;
use Illuminate\Contracts\Container\Container;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Database\DatabaseManager;
use Illuminate\Pipeline\Pipeline;
use Illuminate\Redis\RedisManager;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use InvalidArgumentException;
use RuntimeException;
use YlsIdeas\FeatureFlags\Contracts\Cacheable;
use YlsIdeas\FeatureFlags\Contracts\Features;
use YlsIdeas\FeatureFlags\Contracts\Gateway;
use YlsIdeas\FeatureFlags\Contracts\Toggleable;
use YlsIdeas\FeatureFlags\Events\FeatureAccessed;
use YlsIdeas\FeatureFlags\Events\FeatureAccessing;
use YlsIdeas\FeatureFlags\Events\FeatureSwitchedOff;
use YlsIdeas\FeatureFlags\Events\FeatureSwitchedOn;
use YlsIdeas\FeatureFlags\Exceptions\FeatureExpired;
use YlsIdeas\FeatureFlags\Gateways\DatabaseGateway;
use YlsIdeas\FeatureFlags\Gateways\GateGateway;
use YlsIdeas\FeatureFlags\Gateways\InMemoryGateway;
use YlsIdeas\FeatureFlags\Gateways\RedisGateway;
use YlsIdeas\FeatureFlags\Support\ActionDebugLog;
use YlsIdeas\FeatureFlags\Support\FeatureFilter;
use YlsIdeas\FeatureFlags\Support\FeaturesFileDiscoverer;
use YlsIdeas\FeatureFlags\Support\FileLoader;
use YlsIdeas\FeatureFlags\Support\GatewayCache;
use YlsIdeas\FeatureFlags\Support\GatewayInspector;
use YlsIdeas\FeatureFlags\Support\MaintenanceRepository;
/**
* @see \YlsIdeas\FeatureFlags\Tests\ManagerTest
*/
class Manager implements Features
{
protected bool $useCommands = true;
protected bool $useBlade = true;
protected bool $useValidations = true;
protected bool $useScheduling = true;
protected bool $useMiddlewares = true;
protected bool $useDebugging = false;
protected bool $useQueryBuilderMixin = true;
protected ?Contracts\ExpiredFeaturesHandler $expiredFeaturesHandler = null;
protected array $gatewayDrivers = [];
public function __construct(protected Container $container, protected Dispatcher $dispatcher)
{
}
/**
* @throws BindingResolutionException
*/
public function pipeline(): Pipeline
{
return (new Pipeline($this->container))
->through($this->pipes());
}
/**
* @throws BindingResolutionException
*/
public function accessible(string $feature): bool
{
if ($this->expiredFeaturesHandler instanceof \YlsIdeas\FeatureFlags\Contracts\ExpiredFeaturesHandler) {
$this->expiredFeaturesHandler->isExpired($feature);
}
$flagAction = new ActionableFlag();
$flagAction->feature = $feature;
if ($this->usesDebugging()) {
$this->configureDebug($flagAction, debug_backtrace());
}
$this->dispatcher->dispatch(new FeatureAccessing($feature, $flagAction->debug));
/** @var Contracts\DebuggableFlag $flagAction */
$flagAction = $this->pipeline()->send($flagAction)->thenReturn();
$this->dispatcher->dispatch(new FeatureAccessed($feature, $flagAction->getResult(), $flagAction->log()));
return (bool) $flagAction->getResult();
}
public function turnOn(string $gateway, string $feature): void
{
$toggleable = $this->resolve($gateway)->gateway();
if (! $toggleable instanceof Toggleable) {
throw new InvalidArgumentException(sprintf(
'Gateway `%s` is not a toggleable gateway.',
$gateway
));
}
$toggleable->turnOn($feature);
$this->dispatcher->dispatch(new FeatureSwitchedOn($feature, $gateway));
}
public function turnOff(string $gateway, string $feature): void
{
$toggleable = $this->resolve($gateway)->gateway();
if (! $toggleable instanceof Toggleable) {
throw new InvalidArgumentException(sprintf(
'Gateway `%s` is not a toggleable gateway.',
$gateway
));
}
$toggleable->turnOff($feature);
$this->dispatcher->dispatch(new FeatureSwitchedOff($feature, $gateway));
}
public function noBlade(): static
{
$this->useBlade = false;
return $this;
}
public function noScheduling(): static
{
$this->useScheduling = false;
return $this;
}
public function noValidations(): static
{
$this->useValidations = false;
return $this;
}
public function noCommands(): static
{
$this->useCommands = false;
return $this;
}
public function noMiddlewares(): static
{
$this->useMiddlewares = false;
return $this;
}
public function noQueryBuilderMixin(): static
{
$this->useQueryBuilderMixin = false;
return $this;
}
public function configureDebugging(bool $value = true): static
{
$this->useDebugging = $value;
return $this;
}
public function usesBlade(): bool
{
return $this->useBlade;
}
public function usesValidations(): bool
{
return $this->useValidations;
}
public function usesScheduling(): bool
{
return $this->useScheduling;
}
public function usesCommands(): bool
{
return $this->useCommands;
}
public function usesMiddlewares(): bool
{
return $this->useMiddlewares;
}
public function usesDebugging(): bool
{
return $this->useDebugging;
}
public function usesQueryBuilderMixin(): bool
{
return $this->useQueryBuilderMixin;
}
public function callOnExpiredFeatures(array $expiredFeatures, ?callable $handler = null): static
{
$handler ??= static function ($feature): void {
throw new FeatureExpired($feature);
};
$this->expiredFeaturesHandler = new ExpiredFeaturesHandler($expiredFeatures, $handler);
return $this;
}
public function applyOnExpiredHandler(Contracts\ExpiredFeaturesHandler $handler): static
{
$this->expiredFeaturesHandler = $handler;
return $this;
}
public function extend(string $driver, callable $builder): static
{
$this->gatewayDrivers[$driver] = $builder;
return $this;
}
public function maintenanceMode(): MaintenanceRepository
{
return $this->container->make(MaintenanceRepository::class);
}
protected function getContainer(): Container
{
return $this->container;
}
protected function resolve($name): GatewayInspector
{
$config = $this->getConfig($name);
if (is_null($config)) {
throw new InvalidArgumentException("The [{$name}] feature gateway has not been configured.");
}
$gateway = $this->getGateway($config['driver'], $config, $name);
if (($config['cache'] ?? null) && $gateway instanceof Cacheable) {
$cache = $this->buildCache($name, $config['cache'], $gateway)
->configureTtl($config['cache']['ttl'] ?? 300);
}
if (($config['filter'] ?? null)) {
if (is_string($config['filter']) && Str::contains($config['filter'], '|')) {
$config['filter'] = explode('|', $config['filter']);
}
$config['filter'] = Arr::wrap($config['filter']);
$filter = new FeatureFilter($config['filter']);
}
return new GatewayInspector($name, $gateway, $filter ?? null, $cache ?? null);
}
protected function getConfig($name): ?array
{
return $this->container->make(Repository::class)->get("features.gateways")[$name] ?? null;
}
protected function getGateway(string $driver, array $config, string $name): Gateway
{
if (! $this->driverIsNative($driver) &&
! isset($this->gatewayDrivers[$driver])
) {
throw new InvalidArgumentException("No gateway for [$driver].");
}
if ($this->driverIsNative($driver)) {
return call_user_func([$this, 'build' . Str::ucfirst(Str::camel($driver)) . 'Gateway'], $config, $name);
}
return call_user_func($this->gatewayDrivers[$driver], $config, $name);
}
/**
* @throws BindingResolutionException
*/
protected function pipes(): array
{
$pipes = $this->container->make(Repository::class)->get('features.pipeline');
return collect($pipes)
->map(fn (string $pipe): GatewayInspector => $this->resolve($pipe))
->all();
}
protected function buildCache(string $namespace, array $config, Cacheable $cacheable): GatewayCache
{
$cache = $this->getContainer()->make(CacheManager::class)->driver($config['store'] ?? null);
return (new GatewayCache($cache, $namespace, $cacheable))
->configureTtl($config['ttl']);
}
protected function configureDebug(ActionableFlag $flagAction, array $trace): void
{
$call = $trace[0] ?? [];
$file = $call['file'] ?? null;
$line = $call['line'] ?? null;
$flagAction->debug = new ActionDebugLog($file, $line);
}
protected function buildDatabaseGateway(array $config): DatabaseGateway
{
return new DatabaseGateway(
connection: $this->getContainer()->make(DatabaseManager::class)->connection(
$config['connection'] ?? null
),
table: $config['table'] ?? 'features',
field: $config['field'] ?? 'active_at',
);
}
protected function buildRedisGateway(array $config): RedisGateway
{
return new RedisGateway(
connection: $this->getContainer()
->make(RedisManager::class)
->connection($config['connection'] ?? null),
prefix: $config['prefix'] ?? 'features',
);
}
protected function buildGateGateway(array $config, string $name): GateGateway
{
if (! ($config['gate'] ?? false)) {
throw new RuntimeException(sprintf('No gate is configured for gateway `%s`', $name));
}
return new GateGateway(
$this->getContainer()->make(AuthManager::class)->guard($config['guard'] ?? null),
$this->getContainer()->make(Gate::class),
$config['gate'],
);
}
protected function buildInMemoryGateway(array $config): InMemoryGateway
{
return new InMemoryGateway(
loader: new FileLoader(new FeaturesFileDiscoverer(
application: $this->getContainer()->make(Application::class),
file: $config['file'] ?? null,
), container: $this->getContainer()),
);
}
protected function driverIsNative(string $driver): bool
{
return method_exists($this, 'build' . Str::ucfirst(Str::camel($driver)) . 'Gateway');
}
}