-
Notifications
You must be signed in to change notification settings - Fork 4
/
CheckoutManager.php
252 lines (207 loc) · 5.37 KB
/
CheckoutManager.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
<?php
declare(strict_types=1);
/**
* Contains the Checkout Manager class.
*
* @copyright Copyright (c) 2017 Attila Fulop
* @author Attila Fulop
* @license MIT
* @since 2017-11-13
*
*/
namespace Vanilo\Checkout;
use Illuminate\Support\Traits\ForwardsCalls;
use Vanilo\Checkout\Contracts\Checkout as CheckoutContract;
use Vanilo\Checkout\Contracts\CheckoutState as CheckoutStateContract;
use Vanilo\Checkout\Contracts\CheckoutStore;
use Vanilo\Contracts\Address;
use Vanilo\Contracts\Billpayer;
use Vanilo\Contracts\CheckoutSubject;
use Vanilo\Contracts\DetailedAmount;
use Vanilo\Contracts\Dimension;
class CheckoutManager implements CheckoutContract
{
use ForwardsCalls;
/** @var CheckoutStore */
protected $store;
public function __construct(CheckoutStore $store)
{
$this->store = $store;
}
public function __call(string $method, array $arguments)
{
return $this->forwardDecoratedCallTo($this->store, $method, $arguments);
}
public function __get(string $name)
{
return $this->store->{$name};
}
/**
* @inheritDoc
*/
public function getCart(): ?CheckoutSubject
{
return $this->store->getCart();
}
/**
* @inheritDoc
*/
public function setCart(CheckoutSubject $cart)
{
$this->store->setCart($cart);
}
/**
* @inheritdoc
*/
public function getState(): CheckoutStateContract
{
return $this->store->getState();
}
/**
* @inheritdoc
*/
public function setState($state)
{
$this->store->setState($state);
}
/**
* @inheritdoc
*/
public function getBillpayer(): Billpayer
{
return $this->store->getBillpayer();
}
/**
* @inheritdoc
*/
public function setBillpayer(Billpayer $billpayer)
{
return $this->store->setBillpayer($billpayer);
}
public function getShippingAddress(): ?Address
{
return $this->store->getShippingAddress();
}
public function setShippingAddress(Address $address): void
{
$this->store->setShippingAddress($address);
}
public function removeShippingAddress(): void
{
$this->store->removeShippingAddress();
}
public function getShipToBillingAddress(bool $default = true): bool
{
return $this->store->getShipToBillingAddress($default);
}
public function setShipToBillingAddress(bool $value): void
{
$this->store->setShipToBillingAddress($value);
}
public function getShippingMethodId(): null|int|string
{
return $this->store->getShippingMethodId();
}
public function setShippingMethodId(int|string|null $shippingMethodId): void
{
$this->store->setShippingMethodId($shippingMethodId);
}
public function getPaymentMethodId(): null|int|string
{
return $this->store->getPaymentMethodId();
}
public function setPaymentMethodId(int|string|null $paymentMethodId): void
{
$this->store->setPaymentMethodId($paymentMethodId);
}
public function getNotes(): ?string
{
return $this->store->getNotes();
}
public function setNotes(?string $text): void
{
$this->store->setNotes($text);
}
public function clear(): void
{
$this->store->clear();
}
public function setCustomAttribute(string $key, $value): void
{
$this->store->setCustomAttribute($key, $value);
}
public function getCustomAttribute(string $key)
{
return $this->store->getCustomAttribute($key);
}
public function putCustomAttributes(array $data): void
{
$this->store->putCustomAttributes($data);
}
public function getCustomAttributes(): array
{
return $this->store->getCustomAttributes();
}
/**
* @inheritdoc
*/
public function update(array $data)
{
$this->store->update($data);
}
/**
* @inheritDoc
*/
public function total()
{
return $this->store->total();
}
public function itemsTotal(): float
{
return $this->getCart()->getItems()->sum('total');
}
public function getShippingAmount(): DetailedAmount
{
return $this->store->getShippingAmount();
}
public function setShippingAmount(float|DetailedAmount $amount): void
{
$this->store->setShippingAmount($amount);
}
public function getTaxesAmount(): DetailedAmount
{
return $this->store->getTaxesAmount();
}
public function setTaxesAmount(float|DetailedAmount $amount): void
{
$this->store->setTaxesAmount($amount);
}
public function weight(): float
{
return $this->store->weight();
}
public function weightUnit(): string
{
return $this->store->weightUnit();
}
public function dimension(): ?Dimension
{
return $this->store->dimension();
}
public function offsetExists(mixed $offset): bool
{
return $this->store->offsetExists($offset);
}
public function offsetGet(mixed $offset): mixed
{
return $this->store->offsetGet($offset);
}
public function offsetSet(mixed $offset, mixed $value): void
{
$this->store->offsetSet($offset, $value);
}
public function offsetUnset(mixed $offset): void
{
$this->store->offsetUnset($offset);
}
}