|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
namespace Umbrellio\LTree\Traits; |
|
6
|
|
|
|
|
7
|
|
|
use Illuminate\Database\Eloquent\Concerns\HasRelationships; |
|
8
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
9
|
|
|
use Umbrellio\LTree\Exceptions\InvalidTraitInjectionClass; |
|
10
|
|
|
use Umbrellio\LTree\Interfaces\LTreeModelInterface; |
|
11
|
|
|
use Umbrellio\LTree\Relations\AbstractBelongsToTree; |
|
12
|
|
|
use Umbrellio\LTree\Relations\BelongsToDescendantsTree; |
|
13
|
|
|
use Umbrellio\LTree\Relations\BelongsToParentsTree; |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* @mixin HasRelationships |
|
17
|
|
|
* @mixin LTreeModelTrait |
|
18
|
|
|
* @mixin Model |
|
19
|
|
|
*/ |
|
20
|
|
|
trait HasTreeRelationships |
|
21
|
|
|
{ |
|
22
|
|
|
/** |
|
23
|
|
|
* @param null $ownerKey |
|
|
|
|
|
|
24
|
|
|
* @return AbstractBelongsToTree |
|
25
|
|
|
* |
|
26
|
|
|
* @throws InvalidTraitInjectionClass |
|
27
|
|
|
*/ |
|
28
|
3 |
|
final protected function belongsToParentsTree( |
|
29
|
|
|
string $related, |
|
30
|
|
|
string $throwRelation, |
|
31
|
|
|
?string $foreignKey = null, |
|
32
|
|
|
$ownerKey = null |
|
33
|
|
|
) { |
|
34
|
3 |
|
return $this->belongsToTree(BelongsToParentsTree::class, $related, $throwRelation, $foreignKey, $ownerKey); |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* @param null $ownerKey |
|
|
|
|
|
|
39
|
|
|
* @return AbstractBelongsToTree |
|
40
|
|
|
* |
|
41
|
|
|
* @throws InvalidTraitInjectionClass |
|
42
|
|
|
*/ |
|
43
|
1 |
|
final protected function belongsToDescendantsTree( |
|
44
|
|
|
string $related, |
|
45
|
|
|
string $throwRelation, |
|
46
|
|
|
?string $foreignKey = null, |
|
47
|
|
|
$ownerKey = null |
|
48
|
|
|
) { |
|
49
|
1 |
|
return $this->belongsToTree( |
|
50
|
1 |
|
BelongsToDescendantsTree::class, |
|
51
|
|
|
$related, |
|
52
|
|
|
$throwRelation, |
|
53
|
|
|
$foreignKey, |
|
54
|
|
|
$ownerKey |
|
55
|
|
|
); |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
4 |
|
final private function belongsToTree( |
|
59
|
|
|
string $relationClass, |
|
60
|
|
|
string $related, |
|
61
|
|
|
string $throwRelation, |
|
62
|
|
|
?string $foreignKey = null, |
|
63
|
|
|
$ownerKey = null |
|
64
|
|
|
): AbstractBelongsToTree { |
|
65
|
4 |
|
$instance = $this->newRelatedInstance($related); |
|
|
|
|
|
|
66
|
|
|
|
|
67
|
4 |
|
if (!$instance instanceof LTreeModelInterface) { |
|
68
|
1 |
|
throw new InvalidTraitInjectionClass(sprintf( |
|
69
|
1 |
|
'A class using this trait must implement an interface %s', |
|
70
|
1 |
|
LTreeModelInterface::class |
|
71
|
|
|
)); |
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
3 |
|
if ($foreignKey === null) { |
|
75
|
|
|
$foreignKey = $this |
|
76
|
3 |
|
->{$throwRelation}() |
|
77
|
3 |
|
->getForeignKeyName(); |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
3 |
|
$ownerKey = $ownerKey ?: $instance->getKeyName(); |
|
81
|
|
|
|
|
82
|
3 |
|
return new $relationClass($instance->newQuery(), $this, $throwRelation, $foreignKey, $ownerKey); |
|
|
|
|
|
|
83
|
|
|
} |
|
84
|
|
|
} |
|
85
|
|
|
|