1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Spatie\BinaryUuid; |
4
|
|
|
|
5
|
|
|
use Ramsey\Uuid\Uuid; |
6
|
|
|
use Illuminate\Database\Eloquent\Model; |
7
|
|
|
use Illuminate\Database\Eloquent\Builder; |
8
|
|
|
|
9
|
|
|
trait HasBinaryUuid |
10
|
|
|
{ |
11
|
|
|
protected static function bootHasBinaryUuid() |
12
|
|
|
{ |
13
|
|
|
static::creating(function (Model $model) { |
14
|
|
|
if ($model->{$model->getKeyName()}) { |
15
|
|
|
return; |
16
|
|
|
} |
17
|
|
|
|
18
|
|
|
$model->{$model->getKeyName()} = static::generateUuid(); |
19
|
|
|
}); |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
public static function scopeWithUuid(Builder $builder, $uuid, $field = null): Builder |
23
|
|
|
{ |
24
|
|
|
if ($field) { |
25
|
|
|
return static::scopeWithUuidRelation($builder, $uuid, $field); |
26
|
|
|
} |
27
|
|
|
|
28
|
|
|
if ($uuid instanceof Uuid) { |
29
|
|
|
$uuid = (string) $uuid; |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
$uuid = (array) $uuid; |
33
|
|
|
|
34
|
|
|
return $builder->whereKey(array_map(function (string $modelUuid) { |
35
|
|
|
return static::encodeUuid($modelUuid); |
36
|
|
|
}, $uuid)); |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
public static function scopeWithUuidRelation(Builder $builder, $uuid, string $field): Builder |
40
|
|
|
{ |
41
|
|
|
if ($uuid instanceof Uuid) { |
42
|
|
|
$uuid = (string) $uuid; |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
$uuid = (array) $uuid; |
46
|
|
|
|
47
|
|
|
return $builder->whereIn($field, array_map(function (string $modelUuid) { |
48
|
|
|
return static::encodeUuid($modelUuid); |
49
|
|
|
}, $uuid)); |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
public static function generateUuid(bool $asText = false) : string |
53
|
|
|
{ |
54
|
|
|
$uuid = Uuid::uuid1(); |
55
|
|
|
|
56
|
|
|
return $asText ? (string) $uuid : static::encodeUuid($uuid); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
public static function encodeUuid($uuid): string |
60
|
|
|
{ |
61
|
|
|
if (! Uuid::isValid($uuid)) { |
62
|
|
|
return $uuid; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
if (! $uuid instanceof Uuid) { |
66
|
|
|
$uuid = Uuid::fromString($uuid); |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
return $uuid->getBytes(); |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
public static function decodeUuid(string $binaryUuid): string |
73
|
|
|
{ |
74
|
|
|
if (Uuid::isValid($binaryUuid)) { |
75
|
|
|
return $binaryUuid; |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
return Uuid::fromBytes($binaryUuid)->toString(); |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
public function toArray() |
82
|
|
|
{ |
83
|
|
|
if (! $this->exists) { |
|
|
|
|
84
|
|
|
return parent::toArray(); |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
return array_merge(parent::toArray(), [$this->getKeyName() => $this->uuid_text]); |
|
|
|
|
88
|
|
|
} |
89
|
|
|
|
90
|
|
|
public function getUuidTextAttribute(): ?string |
91
|
|
|
{ |
92
|
|
|
if (! $this->exists) { |
93
|
|
|
return null; |
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
return static::decodeUuid($this->{$this->getKeyName()}); |
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
public function setUuidTextAttribute(string $uuid) |
100
|
|
|
{ |
101
|
|
|
$this->{$this->getKeyName()} = static::encodeUuid($uuid); |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
public function getQueueableId() |
105
|
|
|
{ |
106
|
|
|
return base64_encode($this->{$this->getKeyName()}); |
107
|
|
|
} |
108
|
|
|
|
109
|
|
|
public function newQueryForRestoration($id) |
110
|
|
|
{ |
111
|
|
|
return $this->newQueryWithoutScopes()->whereKey(base64_decode($id)); |
|
|
|
|
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
public function getRouteKeyName() |
115
|
|
|
{ |
116
|
|
|
return 'uuid_text'; |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
public function getKeyName() |
120
|
|
|
{ |
121
|
|
|
return 'uuid'; |
122
|
|
|
} |
123
|
|
|
|
124
|
|
|
public function getIncrementing() |
125
|
|
|
{ |
126
|
|
|
return false; |
127
|
|
|
} |
128
|
|
|
|
129
|
|
|
public function resolveRouteBinding($value) |
130
|
|
|
{ |
131
|
|
|
return $this->withUuid($value)->first(); |
|
|
|
|
132
|
|
|
} |
133
|
|
|
} |
134
|
|
|
|
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: