1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Neurony\Revisions\Traits; |
4
|
|
|
|
5
|
|
|
use Closure; |
6
|
|
|
use Exception; |
7
|
|
|
use Illuminate\Support\Arr; |
8
|
|
|
use Illuminate\Support\Facades\DB; |
9
|
|
|
use Neurony\Revisions\Models\Revision; |
10
|
|
|
use Illuminate\Database\Eloquent\Model; |
11
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes; |
12
|
|
|
use Neurony\Revisions\Helpers\RelationHelper; |
13
|
|
|
use Neurony\Revisions\Options\RevisionOptions; |
14
|
|
|
use Neurony\Revisions\Contracts\RevisionModelContract; |
15
|
|
|
|
16
|
|
|
trait HasRevisions |
17
|
|
|
{ |
18
|
|
|
use SaveRevisionJsonRepresentation; |
19
|
|
|
use RollbackRevisionJsonRepresentation; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* The container for all the options necessary for this trait. |
23
|
|
|
* Options can be viewed in the Neurony\Revisions\Options\RevisionOptions file. |
24
|
|
|
* |
25
|
|
|
* @var RevisionOptions |
26
|
|
|
*/ |
27
|
|
|
protected $revisionOptions; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* Set the options for the HasRevisions trait. |
31
|
|
|
* |
32
|
|
|
* @return RevisionOptions |
33
|
|
|
*/ |
34
|
|
|
abstract public function getRevisionOptions(): RevisionOptions; |
35
|
|
|
|
36
|
|
|
/** |
37
|
|
|
* Boot the trait. |
38
|
|
|
* Remove blocks on save and delete if one or many locations from model's instance have been changed/removed. |
39
|
|
|
* |
40
|
|
|
* @return void |
41
|
|
|
*/ |
42
|
|
|
public static function bootHasRevisions() |
43
|
|
|
{ |
44
|
|
|
static::created(function (Model $model) { |
45
|
|
|
$model->createNewRevision(); |
46
|
|
|
}); |
47
|
|
|
|
48
|
|
|
static::updated(function (Model $model) { |
49
|
|
|
$model->createNewRevision(); |
50
|
|
|
}); |
51
|
|
|
|
52
|
|
|
static::deleted(function (Model $model) { |
53
|
|
|
if ($model->forceDeleting !== false) { |
54
|
|
|
$model->deleteAllRevisions(); |
55
|
|
|
} |
56
|
|
|
}); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* Register a revisioning model event with the dispatcher. |
61
|
|
|
* |
62
|
|
|
* @param Closure|string $callback |
63
|
|
|
* @return void |
64
|
|
|
*/ |
65
|
|
|
public static function revisioning($callback): void |
66
|
|
|
{ |
67
|
|
|
static::registerModelEvent('revisioning', $callback); |
68
|
|
|
} |
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* Register a revisioned model event with the dispatcher. |
72
|
|
|
* |
73
|
|
|
* @param Closure|string $callback |
74
|
|
|
* @return void |
75
|
|
|
*/ |
76
|
|
|
public static function revisioned($callback): void |
77
|
|
|
{ |
78
|
|
|
static::registerModelEvent('revisioned', $callback); |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* Get all the revisions for a given model instance. |
83
|
|
|
* |
84
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphMany |
85
|
|
|
*/ |
86
|
|
|
public function revisions() |
87
|
|
|
{ |
88
|
|
|
$revision = config('revisions.revision_model', Revision::class); |
89
|
|
|
|
90
|
|
|
return $this->morphMany($revision, 'revisionable'); |
|
|
|
|
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
/** |
94
|
|
|
* Create a new revision record for the model instance. |
95
|
|
|
* |
96
|
|
|
* @return Revision|bool |
97
|
|
|
* @throws Exception |
98
|
|
|
*/ |
99
|
|
|
public function createNewRevision() |
100
|
|
|
{ |
101
|
|
|
$this->initRevisionOptions(); |
102
|
|
|
|
103
|
|
|
if ($this->wasRecentlyCreated && $this->revisionOptions->revisionOnCreate !== true) { |
|
|
|
|
104
|
|
|
return; |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
try { |
108
|
|
|
if (! $this->shouldCreateRevision()) { |
109
|
|
|
return false; |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
if ($this->fireModelEvent('revisioning') === false) { |
|
|
|
|
113
|
|
|
return false; |
114
|
|
|
} |
115
|
|
|
|
116
|
|
|
$revision = $this->saveAsRevision(); |
117
|
|
|
|
118
|
|
|
$this->fireModelEvent('revisioned', false); |
|
|
|
|
119
|
|
|
|
120
|
|
|
return $revision; |
121
|
|
|
} catch (Exception $e) { |
122
|
|
|
throw $e; |
123
|
|
|
} |
124
|
|
|
} |
125
|
|
|
|
126
|
|
|
/** |
127
|
|
|
* Manually save a new revision for a model instance. |
128
|
|
|
* This method should be called manually only where and if needed. |
129
|
|
|
* |
130
|
|
|
* @return Revision |
131
|
|
|
* @throws Exception |
132
|
|
|
*/ |
133
|
|
|
public function saveAsRevision(): Revision |
134
|
|
|
{ |
135
|
|
|
$this->initRevisionOptions(); |
136
|
|
|
|
137
|
|
|
try { |
138
|
|
|
return DB::transaction(function () { |
139
|
|
|
$revision = $this->revisions()->create([ |
140
|
|
|
'user_id' => auth()->id() ?: null, |
|
|
|
|
141
|
|
|
'metadata' => $this->buildRevisionData(), |
142
|
|
|
]); |
143
|
|
|
|
144
|
|
|
$this->clearOldRevisions(); |
145
|
|
|
|
146
|
|
|
return $revision; |
147
|
|
|
}); |
148
|
|
|
} catch (Exception $e) { |
149
|
|
|
throw $e; |
150
|
|
|
} |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
/** |
154
|
|
|
* Rollback the model instance to the given revision instance. |
155
|
|
|
* |
156
|
|
|
* @param RevisionModelContract $revision |
157
|
|
|
* @return bool |
158
|
|
|
* @throws Exception |
159
|
|
|
*/ |
160
|
|
|
public function rollbackToRevision(RevisionModelContract $revision): bool |
161
|
|
|
{ |
162
|
|
|
$this->initRevisionOptions(); |
163
|
|
|
|
164
|
|
|
try { |
165
|
|
|
static::revisioning(function () { |
166
|
|
|
return false; |
167
|
|
|
}); |
168
|
|
|
|
169
|
|
|
DB::transaction(function () use ($revision) { |
170
|
|
|
if ($this->revisionOptions->createRevisionWhenRollingBack === true) { |
171
|
|
|
$this->saveAsRevision(); |
172
|
|
|
} |
173
|
|
|
|
174
|
|
|
$this->rollbackModelToRevision($revision); |
175
|
|
|
|
176
|
|
|
if ($revision instanceof RevisionModelContract && isset($revision->metadata['relations'])) { |
|
|
|
|
177
|
|
|
foreach ($revision->metadata['relations'] as $relation => $attributes) { |
|
|
|
|
178
|
|
|
if (RelationHelper::isDirect($attributes['type'])) { |
179
|
|
|
$this->rollbackDirectRelationToRevision($relation, $attributes); |
180
|
|
|
} |
181
|
|
|
|
182
|
|
|
if (RelationHelper::isPivoted($attributes['type'])) { |
183
|
|
|
$this->rollbackPivotedRelationToRevision($relation, $attributes); |
184
|
|
|
} |
185
|
|
|
} |
186
|
|
|
} |
187
|
|
|
}); |
188
|
|
|
|
189
|
|
|
return true; |
190
|
|
|
} catch (Exception $e) { |
191
|
|
|
throw $e; |
192
|
|
|
} |
193
|
|
|
} |
194
|
|
|
|
195
|
|
|
/** |
196
|
|
|
* Remove all existing revisions from the database, belonging to a model instance. |
197
|
|
|
* |
198
|
|
|
* @return void |
199
|
|
|
* @throws Exception |
200
|
|
|
*/ |
201
|
|
|
public function deleteAllRevisions(): void |
202
|
|
|
{ |
203
|
|
|
try { |
204
|
|
|
$this->revisions()->delete(); |
205
|
|
|
} catch (Exception $e) { |
206
|
|
|
throw $e; |
207
|
|
|
} |
208
|
|
|
} |
209
|
|
|
|
210
|
|
|
/** |
211
|
|
|
* If a revision record limit is set on the model and that limit is exceeded. |
212
|
|
|
* Remove the oldest revisions until the limit is met. |
213
|
|
|
* |
214
|
|
|
* @return void |
215
|
|
|
*/ |
216
|
|
|
public function clearOldRevisions(): void |
217
|
|
|
{ |
218
|
|
|
$this->initRevisionOptions(); |
219
|
|
|
|
220
|
|
|
$limit = $this->revisionOptions->revisionLimit; |
221
|
|
|
$count = $this->revisions()->count(); |
222
|
|
|
|
223
|
|
|
if (is_numeric($limit) && $count > $limit) { |
224
|
|
|
$this->revisions()->oldest()->take($count - $limit)->delete(); |
225
|
|
|
} |
226
|
|
|
} |
227
|
|
|
|
228
|
|
|
/** |
229
|
|
|
* Determine if a revision should be stored for a given model instance. |
230
|
|
|
* |
231
|
|
|
* Check the revisionable fields set on the model. |
232
|
|
|
* If any of those fields have changed, then a new revisions should be stored. |
233
|
|
|
* If no fields are specifically set on the model, this will return true. |
234
|
|
|
* |
235
|
|
|
* @return bool |
236
|
|
|
*/ |
237
|
|
|
protected function shouldCreateRevision(): bool |
238
|
|
|
{ |
239
|
|
|
$this->initRevisionOptions(); |
240
|
|
|
|
241
|
|
|
$fieldsToRevision = $this->revisionOptions->revisionFields; |
242
|
|
|
$fieldsToNotRevision = $this->revisionOptions->revisionNotFields; |
243
|
|
|
|
244
|
|
|
if ( |
245
|
|
|
array_key_exists(SoftDeletes::class, class_uses($this)) && |
246
|
|
|
array_key_exists($this->getDeletedAtColumn(), $this->getDirty()) |
|
|
|
|
247
|
|
|
) { |
248
|
|
|
return false; |
249
|
|
|
} |
250
|
|
|
|
251
|
|
|
if ($fieldsToRevision && is_array($fieldsToRevision) && ! empty($fieldsToRevision)) { |
252
|
|
|
return $this->isDirty($fieldsToRevision); |
|
|
|
|
253
|
|
|
} |
254
|
|
|
|
255
|
|
|
if ($fieldsToNotRevision && is_array($fieldsToNotRevision) && ! empty($fieldsToNotRevision)) { |
256
|
|
|
return !empty(Arr::except($this->getDirty(), $fieldsToNotRevision)); |
|
|
|
|
257
|
|
|
} |
258
|
|
|
|
259
|
|
|
return true; |
260
|
|
|
} |
261
|
|
|
|
262
|
|
|
/** |
263
|
|
|
* Both instantiate the revision options as well as validate their contents. |
264
|
|
|
* |
265
|
|
|
* @return void |
266
|
|
|
*/ |
267
|
|
|
protected function initRevisionOptions(): void |
268
|
|
|
{ |
269
|
|
|
if ($this->revisionOptions === null) { |
270
|
|
|
$this->revisionOptions = $this->getRevisionOptions(); |
271
|
|
|
} |
272
|
|
|
} |
273
|
|
|
} |
274
|
|
|
|
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.