-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHasRevisions.php
More file actions
462 lines (389 loc) · 13.6 KB
/
Copy pathHasRevisions.php
File metadata and controls
462 lines (389 loc) · 13.6 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
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
<?php
namespace TestMonitor\Revisable\Concerns;
use Closure;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Database\Eloquent\Relations\MorphOne;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Arr;
use InvalidArgumentException;
use TestMonitor\Revisable\Contracts\Revision as RevisionContract;
use TestMonitor\Revisable\Diff;
use TestMonitor\Revisable\Enums\RevisionType;
use TestMonitor\Revisable\Models\Revision;
use TestMonitor\Revisable\RevisableOptions;
use TestMonitor\Revisable\RevisableServiceProvider;
use TestMonitor\Revisable\Revisioner;
use TestMonitor\Revisable\UserResolver;
/**
* @mixin Model
*
* @property-read Collection<int, Revision> $revisions
* @property-read Revision|null $latestRevision
* @property-read Revision|null $firstRevision
*/
trait HasRevisions
{
/**
* Whether revisioning is currently active for this model instance.
*/
protected bool $revisioningEnabled = true;
/**
* Whether automatic revision creation is currently suspended for this model class,
* e.g. while creating a model and its relations inside withSingleRevision().
*/
protected static bool $revisioningSuspended = false;
/**
* Model attributes captured before the most recent update, used as the diff baseline.
*/
protected array $revisionOriginal = [];
/**
* Whether this instance has already produced its Initial revision.
*/
protected bool $revisionInitialCreated = false;
/**
* Register the custom model events fired during revisioning and rollback.
*/
public function initializeHasRevisions(): void
{
$this->addObservableEvents(['revisioning', 'revisioned', 'rollingBack', 'rolledBack']);
}
/**
* Hook into model lifecycle events to trigger revision creation and cleanup.
*/
public static function bootHasRevisions(): void
{
static::created(function (Model $model) {
$model->createNewRevision();
});
static::updating(function (Model $model) {
if (static::$revisioningSuspended && ! empty($model->revisionOriginal)) {
return;
}
$model->revisionOriginal = $model->getRawOriginal();
});
static::updated(function (Model $model) {
$model->createNewRevision();
if (! static::$revisioningSuspended) {
$model->revisionOriginal = [];
}
});
static::deleted(function (Model $model) {
if ($model->forceDeleting !== false) {
$model->deleteAllRevisions();
}
});
}
/**
* Register a listener for the revisioning event, which fires before a revision is created.
* Return false from the callback to abort revision creation.
*/
public static function revisioning(Closure $callback): void
{
static::registerModelEvent('revisioning', $callback);
}
/**
* Register a listener for the revisioned event, which fires after a revision is created.
*/
public static function revisioned(Closure $callback): void
{
static::registerModelEvent('revisioned', $callback);
}
/**
* Register a listener for the rollingBack event, which fires before a rollback is performed.
* Return false from the callback to abort the rollback.
*/
public static function rollingBack(Closure $callback): void
{
static::registerModelEvent('rollingBack', $callback);
}
/**
* Register a listener for the rolledBack event, which fires after a rollback is performed.
*/
public static function rolledBack(Closure $callback): void
{
static::registerModelEvent('rolledBack', $callback);
}
/**
* Return the revision options for this model.
*/
abstract public function getRevisionOptions(): RevisableOptions;
/**
* Get all the revisions for a given model instance.
*
* @return MorphMany<Revision, $this>
*/
public function revisions(): MorphMany
{
return $this->morphMany(RevisableServiceProvider::determineRevisionModel(), 'revisionable');
}
/**
* Get the oldest revision for a given model instance.
*
* @return MorphOne<Revision, $this>
*/
public function firstRevision(): MorphOne
{
return $this->morphOne(RevisableServiceProvider::determineRevisionModel(), 'revisionable')
->oldestOfMany();
}
/**
* Get the most recent revision for a given model instance.
*
* @return MorphOne<Revision, $this>
*/
public function latestRevision(): MorphOne
{
return $this->morphOne(RevisableServiceProvider::determineRevisionModel(), 'revisionable')
->latestOfMany();
}
/**
* Compare the current model state against the latest revision or a specific revision.
*/
public function diff(?RevisionContract $revision = null): Diff
{
$revision ??= $this->latestRevision;
if (! $revision) {
return Diff::empty();
}
$options = $this->getRevisionOptions();
$current = app(Revisioner::class)
->for($this)
->onlyFields($options->fields)
->exceptFields($options->exceptFields)
->withRelations($options->relations)
->build();
return Diff::fromRevisions($revision, $current);
}
/**
* Create a new revision record for the model instance.
*/
public function createNewRevision(): Revision|bool
{
$options = $this->getRevisionOptions();
if (! $this->shouldCreateRevision($options)) {
return false;
}
if ($this->fireModelEvent('revisioning') === false) {
return false;
}
$revision = app(Revisioner::class)
->for($this)
->onlyFields($options->fields)
->exceptFields($options->exceptFields)
->withRelations($options->relations)
->limit($options->limit)
->when($this->isInitialRevision(), fn ($revisioner) => $revisioner->type(RevisionType::Initial))
->when(
$this->shouldReplaceRevision($options) ? $this->revisionToReplace() : null,
fn ($revisioner, $existing) => $revisioner->replace($existing),
fn ($revisioner) => $revisioner->save()
);
$this->fireModelEvent('revisioned', false);
return $revision;
}
/**
* Manually save a revision for a model instance.
*/
public function saveAsRevision(?string $name = null, array $properties = [], ?bool $replace = null): Revision
{
$options = $this->getRevisionOptions();
$existing = $replace ?? $this->shouldReplaceRevision($options)
? $this->revisionToReplace()
: null;
return app(Revisioner::class)
->for($this)
->name($name)
->properties($properties)
->onlyFields($options->fields)
->exceptFields($options->exceptFields)
->withRelations($options->relations)
->limit($options->limit)
->when(
$existing,
fn ($revisioner, $existing) => $revisioner->replace($existing),
fn ($revisioner) => $revisioner->save()
);
}
/**
* Rollback the model instance to its latest revision.
*/
public function rollback(): bool
{
$revision = $this->latestRevision;
if ($revision === null) {
return false;
}
return $this->rollbackToRevision($revision);
}
/**
* Rollback the model instance to the given revision instance.
*/
public function rollbackToRevision(RevisionContract $revision): bool
{
if ($this->fireModelEvent('rollingBack') === false) {
return false;
}
$options = $this->getRevisionOptions();
$result = app(Revisioner::class)
->for($this)
->onlyFields($options->fields)
->exceptFields($options->exceptFields)
->withRelations($options->relations)
->withoutRestoringRelations($options->exceptRestoringRelations)
->limit($options->limit)
->rollback($revision);
if ($options->revisionOnRollback) {
$this->saveAsRollbackRevision($options, $revision);
}
$this->fireModelEvent('rolledBack', false);
return $result;
}
/**
* Remove all existing revisions from the database, belonging to a model instance.
*/
public function deleteAllRevisions(): void
{
app(Revisioner::class)->for($this)->deleteAll();
}
/**
* If a revision record limit is set on the model and that limit is exceeded,
* remove the oldest revisions until the limit is met.
*/
public function clearOldRevisions(): void
{
$options = $this->getRevisionOptions();
app(Revisioner::class)->for($this)->limit($options->limit)->prune();
}
/**
* Execute a callback with revisioning suppressed for this model instance.
*/
public function withoutRevisioning(Closure $callback): mixed
{
$this->revisioningEnabled = false;
try {
return $callback();
} finally {
$this->revisioningEnabled = true;
}
}
/**
* Execute a callback with automatic revisioning suspended for this model class,
* then create a single revision from the final state. The callback must return
* the model to be revisioned.
*/
public static function withSingleRevision(Closure $callback): mixed
{
static::$revisioningSuspended = true;
try {
$result = $callback();
} finally {
static::$revisioningSuspended = false;
}
if (! $result instanceof static) {
throw new InvalidArgumentException(
'withSingleRevision() callback must return an instance of ' . static::class . '.'
);
}
$result->createNewRevision();
$result->revisionOriginal = [];
return $result;
}
/**
* Return the model attributes as they were before the most recent update.
* Falls back to getRawOriginal() when called outside an update lifecycle (e.g. saveAsRevision).
*/
public function getRevisionOriginal(): array
{
return $this->revisionOriginal ?: $this->getRawOriginal();
}
/**
* Determine whether revisioning is currently suppressed, either for this instance
* (via withoutRevisioning()) or for the whole class (via withSingleRevision()).
*/
protected function isRevisioningSuppressed(): bool
{
return ! $this->revisioningEnabled || static::$revisioningSuspended;
}
/**
* Determine whether the next revision should be tagged as Initial, consuming that state
* so later revisions on the same instance are tagged Default.
*/
protected function isInitialRevision(): bool
{
if (! $this->wasRecentlyCreated || $this->revisionInitialCreated) {
return false;
}
return $this->revisionInitialCreated = true;
}
/**
* Determine if a revision should be created for the current model state.
*/
protected function shouldCreateRevision(RevisableOptions $options): bool
{
if (! $options->isEnabled() || $this->isRevisioningSuppressed()) {
return false;
}
if ($this->wasRecentlyCreated && ! $options->onCreate) {
return false;
}
if (
array_key_exists(SoftDeletes::class, class_uses($this)) &&
array_key_exists($this->getDeletedAtColumn(), $this->getDirty())
) {
return false;
}
if (! empty($options->fields)) {
return $this->isDirty($options->fields);
}
if (! empty($options->exceptFields)) {
return ! empty(Arr::except($this->getDirty(), $options->exceptFields));
}
return true;
}
/**
* Determine whether the latest revision should be replaced instead of creating a new one.
*/
protected function shouldReplaceRevision(RevisableOptions $options): bool
{
$latest = $this->latestRevision()->first();
if ($latest === null || ! $latest->isDefault()) {
return false;
}
if (! $options->shouldReplace($this, $latest)) {
return false;
}
if (! app(UserResolver::class)->matches($latest->user_id)) {
return false;
}
if (! $options->isWithinReplaceWindow($latest->{$latest->getUpdatedAtColumn()})) {
return false;
}
return true;
}
/**
* Return the latest revision to replace, or null if a new one should be created.
*/
protected function revisionToReplace(): ?Revision
{
return $this->latestRevision()->first();
}
/**
* Save a rollback revision, always as a new record and marked as a rollback.
*/
protected function saveAsRollbackRevision(RevisableOptions $options, RevisionContract $revision): Revision
{
return app(Revisioner::class)
->for($this)
->onlyFields($options->fields)
->exceptFields($options->exceptFields)
->withRelations($options->relations)
->limit($options->limit)
->type(RevisionType::Rollback)
->properties([
'rollback_from' => $revision->name,
])
->save();
}
}