-
Notifications
You must be signed in to change notification settings - Fork 478
/
Copy pathNodeTrait.php
1300 lines (1117 loc) · 27.5 KB
/
NodeTrait.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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace Kalnoy\Nestedset;
use Exception;
use Illuminate\Database\Eloquent\Collection as EloquentCollection;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Arr;
use LogicException;
trait NodeTrait
{
/**
* Pending operation.
*
* @var array
*/
protected $pending;
/**
* Whether the node has moved since last save.
*
* @var bool
*/
protected $moved = false;
/**
* @var \Carbon\Carbon
*/
public static $deletedAt;
/**
* Keep track of the number of performed operations.
*
* @var int
*/
public static $actionsPerformed = 0;
/**
* Sign on model events.
*/
public static function bootNodeTrait()
{
static::saving(function ($model) {
return $model->callPendingAction();
});
static::deleting(function ($model) {
// We will need fresh data to delete node safely
$model->refreshNode();
});
static::deleted(function ($model) {
$model->deleteDescendants();
});
if (static::usesSoftDelete()) {
static::restoring(function ($model) {
static::$deletedAt = $model->{$model->getDeletedAtColumn()};
});
static::restored(function ($model) {
$model->restoreDescendants(static::$deletedAt);
});
}
}
/**
* Set an action.
*
* @param string $action
*
* @return $this
*/
protected function setNodeAction($action)
{
$this->pending = func_get_args();
return $this;
}
/**
* Call pending action.
*/
protected function callPendingAction()
{
$this->moved = false;
if (! $this->pending && ! $this->exists) {
$this->makeRoot();
}
if (! $this->pending) {
return;
}
$method = 'action'.ucfirst(array_shift($this->pending));
$parameters = $this->pending;
$this->pending = null;
$this->moved = call_user_func_array([ $this, $method ], $parameters);
}
/**
* @return bool
*/
public static function usesSoftDelete()
{
static $softDelete;
if (is_null($softDelete)) {
$instance = new static;
return $softDelete = method_exists($instance, 'bootSoftDeletes');
}
return $softDelete;
}
/**
* @return bool
*/
protected function actionRaw()
{
return true;
}
/**
* Make a root node.
*/
protected function actionRoot()
{
// Simplest case that do not affect other nodes.
if (! $this->exists) {
$cut = $this->getLowerBound() + 1;
$this->setLft($cut);
$this->setRgt($cut + 1);
return true;
}
return $this->insertAt($this->getLowerBound() + 1);
}
/**
* Get the lower bound.
*
* @return int
*/
protected function getLowerBound()
{
return (int)$this->newNestedSetQuery()->max($this->getRgtName());
}
/**
* Append or prepend a node to the parent.
*
* @param self $parent
* @param bool $prepend
*
* @return bool
*/
protected function actionAppendOrPrepend(self $parent, $prepend = false)
{
$parent->refreshNode();
$cut = $prepend ? $parent->getLft() + 1 : $parent->getRgt();
if (! $this->insertAt($cut)) {
return false;
}
$parent->refreshNode();
return true;
}
/**
* Apply parent model.
*
* @param Model|null $value
*
* @return $this
*/
protected function setParent($value)
{
$this->setParentId($value ? $value->getKey() : null)
->setRelation('parent', $value);
return $this;
}
/**
* Insert node before or after another node.
*
* @param self $node
* @param bool $after
*
* @return bool
*/
protected function actionBeforeOrAfter(self $node, $after = false)
{
$node->refreshNode();
return $this->insertAt($after ? $node->getRgt() + 1 : $node->getLft());
}
/**
* Refresh node's crucial attributes.
*/
public function refreshNode()
{
if (! $this->exists || static::$actionsPerformed === 0) {
return;
}
$attributes = $this->newNestedSetQuery()->getNodeData($this->getKey());
$this->attributes = array_merge($this->attributes, $attributes);
// $this->original = array_merge($this->original, $attributes);
}
/**
* Relation to the parent.
*
* @return BelongsTo
*/
public function parent()
{
return $this->belongsTo(get_class($this), $this->getParentIdName())
->setModel($this);
}
/**
* Relation to children.
*
* @return HasMany
*/
public function children()
{
return $this->hasMany(get_class($this), $this->getParentIdName())
->setModel($this);
}
/**
* Get query for descendants of the node.
*
* @return DescendantsRelation
*/
public function descendants()
{
return new DescendantsRelation($this->newQuery(), $this);
}
/**
* Get query for siblings of the node.
*
* @return QueryBuilder
*/
public function siblings()
{
return $this->newScopedQuery()
->where($this->getKeyName(), '<>', $this->getKey())
->where($this->getParentIdName(), '=', $this->getParentId());
}
/**
* Get the node siblings and the node itself.
*
* @return \Kalnoy\Nestedset\QueryBuilder
*/
public function siblingsAndSelf()
{
return $this->newScopedQuery()
->where($this->getParentIdName(), '=', $this->getParentId());
}
/**
* Get query for the node siblings and the node itself.
*
* @param array $columns
*
* @return \Illuminate\Database\Eloquent\Collection
*/
public function getSiblingsAndSelf(array $columns = [ '*' ])
{
return $this->siblingsAndSelf()->get($columns);
}
/**
* Get query for siblings after the node.
*
* @return QueryBuilder
*/
public function nextSiblings()
{
return $this->nextNodes()
->where($this->getParentIdName(), '=', $this->getParentId());
}
/**
* Get query for siblings before the node.
*
* @return QueryBuilder
*/
public function prevSiblings()
{
return $this->prevNodes()
->where($this->getParentIdName(), '=', $this->getParentId());
}
/**
* Get query for nodes after current node.
*
* @return QueryBuilder
*/
public function nextNodes()
{
return $this->newScopedQuery()
->where($this->getLftName(), '>', $this->getLft());
}
/**
* Get query for nodes before current node in reversed order.
*
* @return QueryBuilder
*/
public function prevNodes()
{
return $this->newScopedQuery()
->where($this->getLftName(), '<', $this->getLft());
}
/**
* Get query ancestors of the node.
*
* @return AncestorsRelation
*/
public function ancestors()
{
return new AncestorsRelation($this->newQuery(), $this);
}
/**
* Make this node a root node.
*
* @return $this
*/
public function makeRoot()
{
$this->setParent(null)->dirtyBounds();
return $this->setNodeAction('root');
}
/**
* Save node as root.
*
* @return bool
*/
public function saveAsRoot()
{
if ($this->exists && $this->isRoot()) {
return $this->save();
}
return $this->makeRoot()->save();
}
/**
* Append and save a node.
*
* @param self $node
*
* @return bool
*/
public function appendNode(self $node)
{
return $node->appendToNode($this)->save();
}
/**
* Prepend and save a node.
*
* @param self $node
*
* @return bool
*/
public function prependNode(self $node)
{
return $node->prependToNode($this)->save();
}
/**
* Append a node to the new parent.
*
* @param self $parent
*
* @return $this
*/
public function appendToNode(self $parent)
{
return $this->appendOrPrependTo($parent);
}
/**
* Prepend a node to the new parent.
*
* @param self $parent
*
* @return $this
*/
public function prependToNode(self $parent)
{
return $this->appendOrPrependTo($parent, true);
}
/**
* @param self $parent
* @param bool $prepend
*
* @return self
*/
public function appendOrPrependTo(self $parent, $prepend = false)
{
$this->assertNodeExists($parent)
->assertNotDescendant($parent)
->assertSameScope($parent);
$this->setParent($parent)->dirtyBounds();
return $this->setNodeAction('appendOrPrepend', $parent, $prepend);
}
/**
* Insert self after a node.
*
* @param self $node
*
* @return $this
*/
public function afterNode(self $node)
{
return $this->beforeOrAfterNode($node, true);
}
/**
* Insert self before node.
*
* @param self $node
*
* @return $this
*/
public function beforeNode(self $node)
{
return $this->beforeOrAfterNode($node);
}
/**
* @param self $node
* @param bool $after
*
* @return self
*/
public function beforeOrAfterNode(self $node, $after = false)
{
$this->assertNodeExists($node)
->assertNotDescendant($node)
->assertSameScope($node);
if (! $this->isSiblingOf($node)) {
$this->setParent($node->getRelationValue('parent'));
}
$this->dirtyBounds();
return $this->setNodeAction('beforeOrAfter', $node, $after);
}
/**
* Insert self after a node and save.
*
* @param self $node
*
* @return bool
*/
public function insertAfterNode(self $node)
{
return $this->afterNode($node)->save();
}
/**
* Insert self before a node and save.
*
* @param self $node
*
* @return bool
*/
public function insertBeforeNode(self $node)
{
if (! $this->beforeNode($node)->save()) {
return false;
}
// We'll update the target node since it will be moved
$node->refreshNode();
return true;
}
/**
* @param $lft
* @param $rgt
* @param $parentId
*
* @return $this
*/
public function rawNode($lft, $rgt, $parentId)
{
$this->setLft($lft)->setRgt($rgt)->setParentId($parentId);
return $this->setNodeAction('raw');
}
/**
* Move node up given amount of positions.
*
* @param int $amount
*
* @return bool
*/
public function up($amount = 1)
{
$sibling = $this->prevSiblings()
->defaultOrder('desc')
->skip($amount - 1)
->first();
if (! $sibling) {
return false;
}
return $this->insertBeforeNode($sibling);
}
/**
* Move node down given amount of positions.
*
* @param int $amount
*
* @return bool
*/
public function down($amount = 1)
{
$sibling = $this->nextSiblings()
->defaultOrder()
->skip($amount - 1)
->first();
if (! $sibling) {
return false;
}
return $this->insertAfterNode($sibling);
}
/**
* Insert node at specific position.
*
* @param int $position
*
* @return bool
*/
protected function insertAt($position)
{
++static::$actionsPerformed;
$result = $this->exists
? $this->moveNode($position)
: $this->insertNode($position);
return $result;
}
/**
* Move a node to the new position.
*
* @since 2.0
*
* @param int $position
*
* @return int
*/
protected function moveNode($position)
{
$updated = $this->newNestedSetQuery()
->moveNode($this->getKey(), $position) > 0;
if ($updated) {
$this->refreshNode();
}
return $updated;
}
/**
* Insert new node at specified position.
*
* @since 2.0
*
* @param int $position
*
* @return bool
*/
protected function insertNode($position)
{
$this->newNestedSetQuery()->makeGap($position, 2);
$height = $this->getNodeHeight();
$this->setLft($position);
$this->setRgt($position + $height - 1);
return true;
}
/**
* Update the tree when the node is removed physically.
*/
protected function deleteDescendants()
{
$lft = $this->getLft();
$rgt = $this->getRgt();
$method = $this->usesSoftDelete() && $this->forceDeleting
? 'forceDelete'
: 'delete';
$this->descendants()->{$method}();
if ($this->hardDeleting()) {
$height = $rgt - $lft + 1;
$this->newNestedSetQuery()->makeGap($rgt + 1, -$height);
// In case if user wants to re-create the node
$this->makeRoot();
static::$actionsPerformed++;
}
}
/**
* Restore the descendants.
*
* @param $deletedAt
*/
protected function restoreDescendants($deletedAt)
{
$this->descendants()
->where($this->getDeletedAtColumn(), '>=', $deletedAt)
->restore();
}
/**
* {@inheritdoc}
*
* @since 2.0
*/
public function newEloquentBuilder($query)
{
return new QueryBuilder($query);
}
/**
* Get a new base query that includes deleted nodes.
*
* @since 1.1
*
* @return QueryBuilder
*/
public function newNestedSetQuery($table = null)
{
$builder = $this->usesSoftDelete()
? $this->withTrashed()
: $this->newQuery();
return $this->applyNestedSetScope($builder, $table);
}
/**
* @param string $table
*
* @return QueryBuilder
*/
public function newScopedQuery($table = null)
{
return $this->applyNestedSetScope($this->newQuery(), $table);
}
/**
* @param mixed $query
* @param string $table
*
* @return mixed
*/
public function applyNestedSetScope($query, $table = null)
{
if (! $scoped = $this->getScopeAttributes()) {
return $query;
}
if (! $table) {
$table = $this->getTable();
}
foreach ($scoped as $attribute) {
$query->where(
$table.'.'.$attribute,
'=',
$this->getAttributeValue($attribute)
);
}
return $query;
}
/**
* @return array
*/
protected function getScopeAttributes()
{
return null;
}
/**
* @param array $attributes
*
* @return self
*/
public static function scoped(array $attributes)
{
$instance = new static;
$instance->setRawAttributes($attributes);
return $instance->newScopedQuery();
}
/**
* {@inheritdoc}
*/
public function newCollection(array $models = array())
{
return new Collection($models);
}
/**
* {@inheritdoc}
*
* Use `children` key on `$attributes` to create child nodes.
*
* @param self $parent
*/
public static function create(array $attributes = [], self $parent = null)
{
$children = Arr::pull($attributes, 'children');
$instance = new static($attributes);
if ($parent) {
$instance->appendToNode($parent);
}
$instance->save();
// Now create children
$relation = new EloquentCollection;
foreach ((array)$children as $child) {
$relation->add($child = static::create($child, $instance));
$child->setRelation('parent', $instance);
}
$instance->refreshNode();
return $instance->setRelation('children', $relation);
}
/**
* Get node height (rgt - lft + 1).
*
* @return int
*/
public function getNodeHeight()
{
if (! $this->exists) {
return 2;
}
return $this->getRgt() - $this->getLft() + 1;
}
/**
* Get number of descendant nodes.
*
* @return int
*/
public function getDescendantCount()
{
return ceil($this->getNodeHeight() / 2) - 1;
}
/**
* Set the value of model's parent id key.
*
* Behind the scenes node is appended to found parent node.
*
* @param int $value
*
* @throws Exception If parent node doesn't exists
*/
public function setParentIdAttribute($value)
{
if ($this->getParentId() == $value) {
return;
}
if ($value) {
$this->appendToNode($this->newScopedQuery()->findOrFail($value));
} else {
$this->makeRoot();
}
}
/**
* Get whether node is root.
*
* @return boolean
*/
public function isRoot()
{
return is_null($this->getParentId());
}
/**
* @return bool
*/
public function isLeaf()
{
return $this->getLft() + 1 == $this->getRgt();
}
/**
* Get the lft key name.
*
* @return string
*/
public function getLftName()
{
return NestedSet::LFT;
}
/**
* Get the rgt key name.
*
* @return string
*/
public function getRgtName()
{
return NestedSet::RGT;
}
/**
* Get the parent id key name.
*
* @return string
*/
public function getParentIdName()
{
return NestedSet::PARENT_ID;
}
/**
* Get the value of the model's lft key.
*
* @return integer
*/
public function getLft()
{
return $this->getAttributeValue($this->getLftName());
}
/**
* Get the value of the model's rgt key.
*
* @return integer
*/
public function getRgt()
{
return $this->getAttributeValue($this->getRgtName());
}
/**
* Get the value of the model's parent id key.
*
* @return integer
*/
public function getParentId()
{
return $this->getAttributeValue($this->getParentIdName());
}
/**
* Returns node that is next to current node without constraining to siblings.
*
* This can be either a next sibling or a next sibling of the parent node.
*
* @param array $columns
*
* @return self
*/
public function getNextNode(array $columns = [ '*' ])
{
return $this->nextNodes()->defaultOrder()->first($columns);
}
/**
* Returns node that is before current node without constraining to siblings.
*
* This can be either a prev sibling or parent node.
*
* @param array $columns
*
* @return self
*/
public function getPrevNode(array $columns = [ '*' ])
{
return $this->prevNodes()->defaultOrder('desc')->first($columns);
}
/**
* @param array $columns
*
* @return Collection
*/
public function getAncestors(array $columns = [ '*' ])
{
return $this->ancestors()->get($columns);
}
/**
* @param array $columns
*
* @return Collection|self[]
*/
public function getDescendants(array $columns = [ '*' ])
{
return $this->descendants()->get($columns);
}
/**
* @param array $columns
*
* @return Collection|self[]
*/
public function getSiblings(array $columns = [ '*' ])
{
return $this->siblings()->get($columns);
}
/**
* @param array $columns
*
* @return Collection|self[]
*/
public function getNextSiblings(array $columns = [ '*' ])
{
return $this->nextSiblings()->get($columns);
}
/**
* @param array $columns
*
* @return Collection|self[]
*/
public function getPrevSiblings(array $columns = [ '*' ])
{
return $this->prevSiblings()->get($columns);
}
/**
* @param array $columns
*
* @return self