-
Notifications
You must be signed in to change notification settings - Fork 50
/
DatabaseDriver.php
408 lines (359 loc) · 11 KB
/
DatabaseDriver.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
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<?php
namespace Laravel\Pennant\Drivers;
use Illuminate\Config\Repository;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Database\Connection;
use Illuminate\Database\DatabaseManager;
use Illuminate\Database\UniqueConstraintViolationException;
use Illuminate\Support\Carbon;
use Illuminate\Support\Collection;
use Laravel\Pennant\Contracts\CanListStoredFeatures;
use Laravel\Pennant\Contracts\Driver;
use Laravel\Pennant\Events\UnknownFeatureResolved;
use Laravel\Pennant\Feature;
use RuntimeException;
use stdClass;
class DatabaseDriver implements CanListStoredFeatures, Driver
{
/**
* The database connection.
*
* @var \Illuminate\Database\DatabaseManager
*/
protected $db;
/**
* The user configuration.
*
* @var \Illuminate\Config\Repository
*/
protected $config;
/**
* The store's name.
*
* @var string
*/
protected $name;
/**
* The event dispatcher.
*
* @var \Illuminate\Contracts\Events\Dispatcher
*/
protected $events;
/**
* The feature state resolvers.
*
* @var array<string, (callable(mixed): mixed)>
*/
protected $featureStateResolvers;
/**
* The sentinel value for unknown features.
*
* @var \stdClass
*/
protected $unknownFeatureValue;
/**
* The current retry depth for retrieving values from the database.
*
* @var int
*/
protected $retryDepth = 0;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'created_at';
/**
* The name of the "updated at" column.
*
* @var string
*/
const UPDATED_AT = 'updated_at';
/**
* Create a new driver instance.
*
* @param array<string, (callable(mixed $scope): mixed)> $featureStateResolvers
* @return void
*/
public function __construct(DatabaseManager $db, Dispatcher $events, Repository $config, string $name, $featureStateResolvers)
{
$this->db = $db;
$this->events = $events;
$this->config = $config;
$this->name = $name;
$this->featureStateResolvers = $featureStateResolvers;
$this->unknownFeatureValue = new stdClass;
}
/**
* Define an initial feature flag state resolver.
*
* @param string $feature
* @param (callable(mixed $scope): mixed) $resolver
*/
public function define($feature, $resolver): void
{
$this->featureStateResolvers[$feature] = $resolver;
}
/**
* Retrieve the names of all defined features.
*
* @return array<string>
*/
public function defined(): array
{
return array_keys($this->featureStateResolvers);
}
/**
* Retrieve the names of all stored features.
*
* @return array<string>
*/
public function stored(): array
{
return $this->newQuery()
->select('name')
->distinct()
->get()
->pluck('name')
->all();
}
/**
* Get multiple feature flag values.
*
* @param array<string, array<int, mixed>> $features
* @return array<string, array<int, mixed>>
*/
public function getAll($features): array
{
$query = $this->newQuery();
$resolved = Collection::make($features)
->map(fn ($scopes, $feature) => Collection::make($scopes)
->each(fn ($scope) => $query->orWhere(
fn ($q) => $q->where('name', $feature)->where('scope', Feature::serializeScope($scope))
)));
$records = $query->get();
$inserts = new Collection;
$results = $resolved->map(fn ($scopes, $feature) => $scopes->map(function ($scope) use ($feature, $records, $inserts) {
$filtered = $records->where('name', $feature)->where('scope', Feature::serializeScope($scope));
if ($filtered->isNotEmpty()) {
return json_decode($filtered->value('value'), flags: JSON_OBJECT_AS_ARRAY | JSON_THROW_ON_ERROR); // @phpstan-ignore argument.type
}
return with($this->resolveValue($feature, $scope), function ($value) use ($feature, $scope, $inserts) {
if ($value === $this->unknownFeatureValue) {
return false;
}
$inserts[] = [ // @phpstan-ignore offsetAssign.valueType
'name' => $feature,
'scope' => $scope,
'value' => $value,
];
return $value;
});
})->all())->all();
if ($inserts->isNotEmpty()) { // @phpstan-ignore method.impossibleType
try {
$this->insertMany($inserts->all());
} catch (UniqueConstraintViolationException $e) {
if ($this->retryDepth === 2) {
throw new RuntimeException('Unable to insert feature values into the database.', previous: $e);
}
$this->retryDepth++;
return $this->getAll($features);
} finally {
$this->retryDepth = 0;
}
}
return $results;
}
/**
* Retrieve a feature flag's value.
*
* @param string $feature
* @param mixed $scope
*/
public function get($feature, $scope): mixed
{
if (($record = $this->retrieve($feature, $scope)) !== null) {
return json_decode($record->value, flags: JSON_OBJECT_AS_ARRAY | JSON_THROW_ON_ERROR);
}
return with($this->resolveValue($feature, $scope), function ($value) use ($feature, $scope) {
if ($value === $this->unknownFeatureValue) {
return false;
}
try {
$this->insert($feature, $scope, $value);
} catch (UniqueConstraintViolationException $e) {
if ($this->retryDepth === 1) {
throw new RuntimeException('Unable to insert feature value into the database.', previous: $e);
}
$this->retryDepth++;
return $this->get($feature, $scope);
} finally {
$this->retryDepth = 0;
}
return $value;
});
}
/**
* Retrieve the value for the given feature and scope from storage.
*
* @param string $feature
* @param mixed $scope
* @return object|null
*/
protected function retrieve($feature, $scope)
{
return $this->newQuery()
->where('name', $feature)
->where('scope', Feature::serializeScope($scope))
->first();
}
/**
* Determine the initial value for a given feature and scope.
*
* @param string $feature
* @param mixed $scope
* @return mixed
*/
protected function resolveValue($feature, $scope)
{
if (! array_key_exists($feature, $this->featureStateResolvers)) {
$this->events->dispatch(new UnknownFeatureResolved($feature, $scope));
return $this->unknownFeatureValue;
}
return $this->featureStateResolvers[$feature]($scope);
}
/**
* Set a feature flag's value.
*
* @param string $feature
* @param mixed $scope
* @param mixed $value
*/
public function set($feature, $scope, $value): void
{
$this->newQuery()->upsert([
'name' => $feature,
'scope' => Feature::serializeScope($scope),
'value' => json_encode($value, flags: JSON_THROW_ON_ERROR),
static::CREATED_AT => $now = Carbon::now(),
static::UPDATED_AT => $now,
], uniqueBy: ['name', 'scope'], update: ['value', static::UPDATED_AT]);
}
/**
* Set a feature flag's value for all scopes.
*
* @param string $feature
* @param mixed $value
*/
public function setForAllScopes($feature, $value): void
{
$this->newQuery()
->where('name', $feature)
->update([
'value' => json_encode($value, flags: JSON_THROW_ON_ERROR),
static::UPDATED_AT => Carbon::now(),
]);
}
/**
* Update the value for the given feature and scope in storage.
*
* @param string $feature
* @param mixed $scope
* @param mixed $value
* @return bool
*/
protected function update($feature, $scope, $value)
{
return (bool) $this->newQuery()
->where('name', $feature)
->where('scope', Feature::serializeScope($scope))
->update([
'value' => json_encode($value, flags: JSON_THROW_ON_ERROR),
static::UPDATED_AT => Carbon::now(),
]);
}
/**
* Insert the value for the given feature and scope into storage.
*
* @param string $feature
* @param mixed $scope
* @param mixed $value
* @return bool
*/
protected function insert($feature, $scope, $value)
{
return $this->insertMany([[
'name' => $feature,
'scope' => $scope,
'value' => $value,
]]);
}
/**
* Insert the given feature values into storage.
*
* @param array<int, array{name: string, scope: mixed, value: mixed}> $inserts
* @return bool
*/
protected function insertMany($inserts)
{
$now = Carbon::now();
return $this->newQuery()->insert(array_map(fn ($insert) => [
'name' => $insert['name'],
'scope' => Feature::serializeScope($insert['scope']),
'value' => json_encode($insert['value'], flags: JSON_THROW_ON_ERROR),
static::CREATED_AT => $now,
static::UPDATED_AT => $now,
], $inserts));
}
/**
* Delete a feature flag's value.
*
* @param string $feature
* @param mixed $scope
*/
public function delete($feature, $scope): void
{
$this->newQuery()
->where('name', $feature)
->where('scope', Feature::serializeScope($scope))
->delete();
}
/**
* Purge the given feature from storage.
*
* @param array|null $features
*/
public function purge($features): void
{
if ($features === null) {
$this->newQuery()->delete();
} else {
$this->newQuery()
->whereIn('name', $features)
->delete();
}
}
/**
* Create a new table query.
*
* @return \Illuminate\Database\Query\Builder
*/
protected function newQuery()
{
return $this->connection()->table(
$this->config->get("pennant.stores.{$this->name}.table") ?? 'features'
);
}
/**
* The database connection.
*
* @return \Illuminate\Database\Connection
*/
protected function connection()
{
return $this->db->connection(
$this->config->get("pennant.stores.{$this->name}.connection") ?? null
);
}
}