-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathInsertQueryBuilder.php
More file actions
161 lines (121 loc) · 4.56 KB
/
InsertQueryBuilder.php
File metadata and controls
161 lines (121 loc) · 4.56 KB
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
<?php
namespace Tempest\Database\Builder\QueryBuilders;
use Closure;
use Tempest\Database\Builder\ModelInspector;
use Tempest\Database\Exceptions\HasManyRelationCouldNotBeInsterted;
use Tempest\Database\Exceptions\HasOneRelationCouldNotBeInserted;
use Tempest\Database\Id;
use Tempest\Database\OnDatabase;
use Tempest\Database\Query;
use Tempest\Database\QueryStatements\InsertStatement;
use Tempest\Mapper\SerializerFactory;
use Tempest\Reflection\ClassReflector;
use Tempest\Support\Arr\ImmutableArray;
use Tempest\Support\Conditions\HasConditions;
use function Tempest\Database\model;
final class InsertQueryBuilder implements BuildsQuery
{
use HasConditions, OnDatabase, TapsQueryBuilder;
private InsertStatement $insert;
private array $after = [];
private array $bindings = [];
private ModelInspector $model;
public function __construct(
/** @var class-string|string $model */
string|object $model,
private readonly array $rows,
private readonly SerializerFactory $serializerFactory,
) {
$this->model = model($model);
$this->insert = new InsertStatement($this->model->getTableDefinition());
}
public function execute(mixed ...$bindings): Id
{
$id = $this->build()->execute(...$bindings);
foreach ($this->after as $after) {
$query = $after($id);
if ($query instanceof BuildsQuery) {
$query->build()->execute();
}
}
return $id;
}
public function toSql(): string
{
return $this->build()->toSql();
}
public function build(mixed ...$bindings): Query
{
foreach ($this->resolveData() as $data) {
foreach ($data as $key => $value) {
if ($this->model->getHasMany($key)) {
throw new HasManyRelationCouldNotBeInsterted($this->model->getName(), $key);
}
if ($this->model->getHasOne($key)) {
throw new HasOneRelationCouldNotBeInserted($this->model->getName(), $key);
}
$bindings[] = $value;
}
$this->insert->addEntry($data);
}
return new Query($this->insert, [...$this->bindings, ...$bindings])->onDatabase($this->onDatabase);
}
public function bind(mixed ...$bindings): self
{
$this->bindings = [...$this->bindings, ...$bindings];
return $this;
}
public function then(Closure ...$callbacks): self
{
$this->after = [...$this->after, ...$callbacks];
return $this;
}
private function resolveData(): array
{
$entries = [];
foreach ($this->rows as $model) {
// Raw entries are straight up added
if (is_array($model) || $model instanceof ImmutableArray) {
$entries[] = $model;
continue;
}
// The rest are model objects
$definition = model($model);
$modelClass = new ClassReflector($model);
$entry = [];
// Including all public properties
foreach ($modelClass->getPublicProperties() as $property) {
if (! $property->isInitialized($model)) {
continue;
}
// HasMany and HasOne relations are skipped
if ($definition->getHasMany($property->getName()) || $definition->getHasOne($property->getName())) {
continue;
}
$column = $property->getName();
$value = $property->getValue($model);
// BelongsTo and reverse HasMany relations are included
if ($definition->isRelation($property)) {
$column .= '_id';
$value = match (true) {
$value === null => null,
isset($value->id) => $value->id->id,
default => new InsertQueryBuilder(
$value::class,
[$value],
$this->serializerFactory,
)->build(),
};
}
// Check if the value needs serialization
$serializer = $this->serializerFactory->forProperty($property);
if ($value !== null && $serializer !== null) {
$value = $serializer->serialize($value);
}
$entry[$column] = $value;
}
$entries[] = $entry;
}
return $entries;
}
}