-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathMigrationTrackerCapsule.php
471 lines (401 loc) · 12.9 KB
/
MigrationTrackerCapsule.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
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
463
464
465
466
467
468
469
470
471
<?php
namespace CrestApps\CodeGenerator\Models;
use CrestApps\CodeGenerator\Models\FieldMigrationChange;
use CrestApps\CodeGenerator\Models\IndexMigrationChange;
use CrestApps\CodeGenerator\Models\MigrationCapsule;
use CrestApps\CodeGenerator\Models\MigrationChangeCapsule;
use CrestApps\CodeGenerator\Models\MigrationInput;
use CrestApps\CodeGenerator\Models\Resource;
use CrestApps\CodeGenerator\Support\Contracts\JsonWriter;
use CrestApps\CodeGenerator\Support\MigrationHistoryTracker;
use File;
class MigrationTrackerCapsule implements JsonWriter
{
/**
* The provided modelName
*
* @var string
*/
public $modelName;
/**
* The provided field's file name
*
* @var string
*/
public $resourceFile;
/**
* The table name
*
* @var string
*/
public $tableName;
/**
* The table name
*
* @var array
*/
private $migrations = [];
/**
* Create a new input instance.
*
* @return void
*/
public function __construct(array $properties = [])
{
if (!isset($properties['table-name']) || empty($properties['table-name'])) {
throw new Exception('The table-name is required to construct a migration capsule!');
}
$this->tableName = $properties['table-name'];
if (isset($properties['model-name'])) {
$this->modelName = $properties['model-name'];
}
if (isset($properties['resource-file'])) {
$this->resourceFile = $properties['resource-file'];
}
if (isset($properties['migrations']) && is_array($properties['migrations'])) {
$this->addMigrations($properties['migrations']);
}
}
/**
* Adds array of properties to the migrations collection.
*
* @return void
*/
public function addMigrations(array $properties)
{
foreach ($properties as $property) {
$this->addMigration(new MigrationCapsule($property));
}
}
/**
* Adds a migration capsule the migrations collection.
*
* @return void
*/
public function addMigration(MigrationCapsule $capsule)
{
$this->migrations[] = $capsule;
}
/**
* Get the difference between a given resource and the
* resource in the current migration
*
* @param CrestApps\CodeGenerator\Models\Resource $resourceA
* @param CrestApps\CodeGenerator\Models\Resource $resourceB
* @param CrestApps\CodeGenerator\Models\MigrationInput $input
*
* @return CrestApps\CodeGenerator\Models\MigrationChangeCapsule
*/
public function getDelta(Resource $resourceA, Resource $resourceB, MigrationInput $input)
{
$fieldChanges = $this->getFieldsDelta($resourceA->fields, $resourceB->fields);
$indexChanges = $this->getIndexesDelta($resourceA->indexes, $resourceB->indexes);
$changeCapsule = new MigrationChangeCapsule($fieldChanges, $indexChanges);
$tracker = new MigrationHistoryTracker();
$capsule = $tracker->get($input->tableName);
if ($input->withoutTimestamps && $capsule->migrationHasTimestamps()) {
$changeCapsule->dropTimestamps = true;
} else if (!$input->withoutTimestamps && !$capsule->migrationHasTimestamps()) {
$changeCapsule->addTimestamps = true;
}
if (!$input->withSoftDelete && $capsule->migrationHasSoftDelete()) {
$changeCapsule->dropSoftDelete = true;
} else if ($input->withSoftDelete && !$capsule->migrationHasSoftDelete()) {
$changeCapsule->addSoftDelete = true;
}
return $changeCapsule;
}
/**
* Get the field difference between two given Field arrays
*
* @param array $fieldsA
* @param array $fieldsB
*
* @return array
*/
protected function getFieldsDelta(array $fieldsA, array $fieldsB)
{
$currentFields = Collect($fieldsB)->keyBy('name');
$currentFieldNames = $currentFields->keys()->toArray();
$requestedFields = Collect($fieldsA)->keyBy('name');
$requestedFieldNames = $requestedFields->keys()->toArray();
$updatedFields = $currentFields->whereIn('name', $requestedFieldNames)->all();
$addedFields = $requestedFields->reject(function ($requestedField) use ($currentFieldNames) {
return in_array($requestedField->name, $currentFieldNames);
})->all();
$deletedFields = $currentFields->reject(function ($currentFields) use ($requestedFieldNames) {
return in_array($currentFields->name, $requestedFieldNames);
})->all();
$fieldChanges = [];
foreach ($updatedFields as $key => $updatedField) {
$fieldChanges[] = FieldMigrationChange::compare($updatedField, $requestedFields[$key]);
}
foreach ($addedFields as $addedField) {
$fieldChanges[] = FieldMigrationChange::getAdded($addedField);
}
foreach ($deletedFields as $deletedField) {
$fieldChanges[] = FieldMigrationChange::getDeleted($deletedField);
}
return $fieldChanges;
}
/**
* Get the field difference between two given Index arrays
*
* @param array $indexesA
* @param array $indexesB
*
* @return array
*/
protected function getIndexesDelta(array $indexesA, array $indexesB)
{
$currentIndexes = Collect($indexesA);
$currentIndexNames = $currentIndexes->pluck('name');
$requestedIndexes = Collect($indexesB);
$requestedIndexNames = $requestedIndexes->pluck('name');
$updatedIndexes = $currentIndexes->whereIn('name', $requestedIndexNames)->all();
$addedIndexes = $requestedIndexes->reject(function ($requestedIndex) use ($currentIndexNames) {
return !is_null($requestedIndex->name) && in_array($requestedIndex->name, $currentIndexNames);
})->all();
$deletedIndexes = $currentIndexes->reject(function ($currentIndex) use ($requestedIndexNames) {
return in_array($currentIndex->name, $requestedIndexNames);
})->all();
$indexChanges = [];
foreach ($updatedIndexes as $key => $updatedIndex) {
$indexChanges[] = IndexMigrationChange::compare($updatedIndex, $requestedIndexes[$key]);
}
foreach ($addedIndexes as $addedIndex) {
$indexChanges[] = IndexMigrationChange::getAdded($addedIndex);
}
foreach ($deletedIndexes as $deletedIndex) {
$indexChanges[] = IndexMigrationChange::getDeleted($deletedIndex);
}
return $indexChanges;
}
/**
* Adds a migration capsule the migrations collection.
*
* @return void
*/
public function getMigrations()
{
return $this->migrations;
}
/**
* Update the last migration
*
* @param CrestApps\CodeGenerator\Models\MigrationCapsule $migration
*
* @return void
*/
public function updateMigration(MigrationCapsule $migration)
{
$key = $this->getMigrationIndex($migration->name);
if ($key > -1) {
$current = $this->migrations[$key];
$this->migrations[$key] = $migration;
if ($current->path != $migration->path) {
$this->deleteFile($current->path);
}
}
}
/**
* Get the index of a migration by name. It return -1 if not found.
*
* @param string $name
*
* @return int
*/
public function getMigrationIndex($name)
{
foreach ($this->getMigrations() as $key => $migration) {
if ($migration->name == $name) {
return $key;
}
}
return -1;
}
/**
* Deletes all migrations
*
* @return void
*/
public function forgetAllMigrations()
{
foreach ($this->getMigrations() as $key => $migration) {
$this->forgetMigration($key);
}
}
/**
* Deletes a migration by index
*
* @param string $name
*
* @return void
*/
public function forgetMigration($index)
{
if (($current = $this->migrations[$index]) !== null) {
$this->deleteFile($current->path);
unset($this->migrations[$index]);
}
}
/**
* Delete a file
*
* @return bool
*/
protected function deleteFile($file)
{
if (File::exists($file)) {
return File::delete($file);
}
return false;
}
/**
* Get the total migrations.
*
* @return int
*/
public function totalMigrations()
{
return count($this->getMigrations());
}
/**
* Gets the last migration in the collection which is the one we are using
*
* @return mix (null || CrestApps\CodeGenerator\Models\MigrationCapsule)
*/
public function getCurrentMigration()
{
return end($this->migrations);
}
/**
* Checks if the given migration name is the current one
*
* @return bool
*/
public function isCurrentMigration($name)
{
$current = $this->getCurrentMigration();
return (!is_null($current) && $current->name == $name);
}
/**
* Gets the last before current migration in the
* collection which is the one we are using
*
* @return mix (null || CrestApps\CodeGenerator\Models\MigrationCapsule)
*/
public function getMigrationBeforeCurrent()
{
if (($count = $this->totalMigrations()) > 1) {
return $this->migrations[$count - 2];
}
return null;
}
/**
* Checks if at least one migration exists
*
* @return bool
*/
public function hasMigration()
{
return isset($this->migrations[0]);
}
/**
* Checks the migration history to see if the migration
* has a soft-delete not.
*
* @return bool
*/
public function migrationHasSoftDelete()
{
$hasSoftDelete = false;
foreach ($this->getMigrations() as $migration) {
if ($this->isCurrentMigration($migration->name) && !$migration->isMigrated()) {
// At this point we know the migration is the current one
// and has not been migrated, so ignore it
continue;
}
if ($hasSoftDelete && !$migration->withSoftDelete) {
// At this point we know that the migration had soft-delete
// previously, but it was dropped
$hasSoftDelete = false;
}
if ($migration->withSoftDelete) {
// At this point we know that the migraton has soft-delete
$hasSoftDelete = true;
}
}
return $hasSoftDelete;
}
/**
* Checks the migration history to see if the migration
* has a timestamps not.
*
* @return bool
*/
public function migrationHasTimestamps()
{
$hasTimestamps = false;
foreach ($this->getMigrations() as $migration) {
if ($this->isCurrentMigration($migration->name) && !$migration->isMigrated()) {
// At this point we know the migration is the current one
// and has not been migrated, so ignore it
continue;
}
if ($hasTimestamps && $migration->withoutTimestamps) {
// At this point we know that the migration had soft-delete
// previously, but it was dropped
$hasTimestamps = false;
}
if (!$migration->withoutTimestamps) {
// At this point we know that the migraton has soft-delete
$hasTimestamps = true;
}
}
return $hasTimestamps;
}
/**
* Gets array of the parameters.
*
* @return array
*/
public function toArray()
{
return [
'model-name' => $this->modelName,
'resource-file' => $this->resourceFile,
'table-name' => $this->tableName,
'migrations' => $this->getRawMigrations(),
];
}
/**
* Update the last migration
*
* @param string $tableName
* @param string $modelName
* @param string $resourceFile
* @param array $migrationProperties
*
* @return CrestApps\CodeGenerator\Models\MigrationTrackerCapsule
*/
public static function get($tableName, $modelName, $resourceFile, array $migrationProperties = [])
{
$properties['table-name'] = $tableName;
$properties['model-name'] = $modelName;
$properties['resource-file'] = $resourceFile;
$properties['migrations'] = $migrationProperties;
return new MigrationTrackerCapsule($properties);
}
/**
* Gets array of raw migrations
*
* @return array
*/
protected function getRawMigrations()
{
return array_map(function ($migration) {
return $migration->toArray();
}, $this->migrations);
}
}