-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathOrder.php
235 lines (194 loc) · 5.67 KB
/
Order.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
<?php
namespace TalisOrm\AggregateRepositoryTest;
use DateTimeImmutable;
use Doctrine\DBAL\Schema\Schema;
use TalisOrm\Aggregate;
use TalisOrm\AggregateBehavior;
use TalisOrm\AggregateId;
use TalisOrm\ChildEntity;
use TalisOrm\DateTimeUtil;
use TalisOrm\DomainEvents\EventRecordingCapabilities;
use TalisOrm\Schema\SpecifiesSchema;
use Webmozart\Assert\Assert;
/**
* @phpstan-implements Aggregate<Order>
*/
final class Order implements Aggregate, SpecifiesSchema
{
use AggregateBehavior;
/**
* @var OrderId
*/
private $orderId;
/**
* @var DateTimeImmutable
*/
private $orderDate;
/**
* @var Line[]
*/
private $lines = [];
/**
* @var int
*/
private $quantityPrecision;
private function __construct()
{
}
/**
* @param OrderId $orderId
* @param DateTimeImmutable $orderDate
* @return Order
*/
public static function create(OrderId $orderId, DateTimeImmutable $orderDate, int $quantityPrecision)
{
$order = new self();
$order->orderId = $orderId;
$order->orderDate = $orderDate;
$order->quantityPrecision = $quantityPrecision;
$order->recordThat(new OrderCreated());
return $order;
}
/**
* @param DateTimeImmutable $orderDate
* @return void
*/
public function update(DateTimeImmutable $orderDate)
{
$this->orderDate = $orderDate;
$this->recordThat(new OrderUpdated());
}
/**
* @param LineNumber $lineId
* @param ProductId $productId
* @param Quantity $quantity
* @return void
*/
public function addLine(LineNumber $lineId, ProductId $productId, Quantity $quantity)
{
$this->lines[] = Line::create($this->orderId, $lineId, $productId, $quantity, $this->quantityPrecision);
$this->recordThat(new LineAdded());
}
/**
* @param LineNumber $lineId
* @param ProductId $productId
* @param Quantity $quantity
* @return void
*/
public function updateLine(LineNumber $lineId, ProductId $productId, Quantity $quantity)
{
foreach ($this->lines as $index => $line) {
if ($line->lineNumber()->asInt() === $lineId->asInt()) {
$line->update($productId, $quantity);
}
}
$this->recordThat(new LineUpdated());
}
/**
* @param LineNumber $lineId
* @return void
*/
public function deleteLine(LineNumber $lineId)
{
foreach ($this->lines as $index => $line) {
if ($line->lineNumber()->asInt() === $lineId->asInt()) {
unset($this->lines[$index]);
$this->deleteChildEntity($line);
}
}
$this->recordThat(new LineDeleted());
}
/**
* @return OrderId
*/
public function orderId()
{
return $this->orderId;
}
public function childEntitiesByType(): array
{
return [
Line::class => $this->lines
];
}
public static function childEntityTypes(): array
{
return [
Line::class
];
}
public function state(): array
{
$this->aggregateVersion++;
return [
'order_id' => $this->orderId->orderId(),
'company_id' => $this->orderId->companyId(),
'order_date' => $this->orderDate->format('Y-m-d'),
Aggregate::VERSION_COLUMN => $this->aggregateVersion
];
}
public static function fromState(array $aggregateState, array $childEntitiesByType)
{
$order = new self();
$order->orderId = new OrderId($aggregateState['order_id'], (int)$aggregateState['company_id']);
$dateTimeImmutable = DateTimeUtil::createDateTimeImmutable($aggregateState['order_date']);
if (!$dateTimeImmutable instanceof DateTimeImmutable) {
throw new \RuntimeException('Invalid date string from database');
}
$order->orderDate = $dateTimeImmutable;
$order->lines = $childEntitiesByType[Line::class];
$order->aggregateVersion = (int)$aggregateState[Aggregate::VERSION_COLUMN];
$order->quantityPrecision = $aggregateState['quantityPrecision'];
return $order;
}
public static function tableName(): string
{
return 'orders';
}
public function identifier(): array
{
return [
'order_id' => $this->orderId->orderId(),
'company_id' => $this->orderId->companyId()
];
}
public static function identifierForQuery(AggregateId $aggregateId): array
{
Assert::isInstanceOf($aggregateId, OrderId::class);
/** @var OrderId $aggregateId */
return [
'order_id' => $aggregateId->orderId(),
'company_id' => $aggregateId->companyId()
];
}
public static function specifySchema(Schema $schema): void
{
$table = $schema->createTable('orders');
$table->addColumn('order_id', 'string');
$table->addColumn('company_id', 'integer');
$table->addColumn('order_date', 'date');
$table->addColumn(Aggregate::VERSION_COLUMN, 'integer');
$table->setPrimaryKey(['order_id', 'company_id']);
Line::specifySchema($schema);
}
/**
* @param int $aggregateVersion
* @return void
*/
public function setAggregateVersion($aggregateVersion)
{
Assert::integer($aggregateVersion);
$this->aggregateVersion = $aggregateVersion;
}
/**
* @return array&Line[]
*/
public function lines(): array
{
return $this->lines;
}
public function quantityPrecision(): int
{
return $this->quantityPrecision;
}
}