checkout_core 0.0.147

core traits and structs for the checkout_controller crate
Documentation
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
use async_trait::async_trait;
use rust_decimal::Decimal;
use serde::de::DeserializeOwned;
use serde::Serialize;
use sqlx::types::Json;
use sqlx::{Postgres, Row as _, Transaction};
use std::mem;

use crate::checkout::{Checkout, CheckoutStore};
use crate::context::{ClientContext, Context};
use crate::customer::Address;
use crate::db::DBClient;
use crate::error::{new_server_error, Error};
use crate::inventory::InventoryController;
use crate::invoice::InvoiceCalculator;
use crate::invoice::{Invoice, Tax};
use crate::item::Item;
use crate::money::Currency;
use crate::order::{Order, OrderEvents, OrderStore};
use crate::payment::{
    CancellationResult, Payment, PaymentData, PaymentProcessor, PaymentStore, ProcessingResult,
};
use crate::price::ItemPrice;
use crate::price::PriceCalculator;
use crate::product::Product;
use crate::product::ProductResolver;
use crate::shipping::ShippingCalculator;
use crate::shipping::ShippingQuote;
use crate::transaction::TransactionController;

pub struct MasterContext<'a, C: ClientContext> {
    client_ctx: C,
    db_client: &'a DBClient,
    tx: Option<Transaction<'a, Postgres>>,
}

impl<'a, C: ClientContext> MasterContext<'a, C> {
    pub fn new(client_ctx: C, db_client: &'a DBClient) -> Self {
        Self {
            client_ctx,
            db_client,
            tx: None,
        }
    }
}

impl<'a, C: ClientContext + Send> Context for MasterContext<'a, C> {}
impl<'a, C: ClientContext + Send> ClientContext for MasterContext<'a, C> {}

// internal implementation (Transaction)
#[async_trait]
impl<'a, C: ClientContext + Send> TransactionController for MasterContext<'a, C> {
    async fn start_transaction(&mut self) -> Result<(), Error> {
        Ok(self.tx = Some(
            self.db_client
                .new_tx()
                .await
                .map_err(|_| new_server_error("DB_ERROR: failed to start database transaction"))?,
        ))
    }

    async fn commit_transaction(&mut self) -> Result<(), Error> {
        let mut tx: Option<Transaction<Postgres>> = None;
        mem::swap(&mut self.tx, &mut tx);

        tx.unwrap()
            .commit()
            .await
            .map_err(|_| new_server_error("DB_ERROR: failed to commit transaction"))?;

        Ok(())
    }

    async fn abort_transaction(&mut self) -> Result<(), Error> {
        let mut tx: Option<Transaction<Postgres>> = None;
        mem::swap(&mut self.tx, &mut tx);

        tx.unwrap()
            .rollback()
            .await
            .map_err(|_| new_server_error("DB_ERROR: failed to rollback transaction"))?;

        Ok(())
    }
}

// internal implementation (InventoryController)
#[async_trait]
impl<'a, C: ClientContext + Send> InventoryController for MasterContext<'a, C> {}

// internal implementation (CheckoutStore)
#[async_trait]
impl<'a, C: ClientContext + Send> CheckoutStore for MasterContext<'a, C> {
    async fn create_checkout<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        co: &Checkout<P>,
    ) -> Result<(), Error> {
        let tx = self.tx.as_mut().unwrap();

        sqlx::query("INSERT INTO checkouts (id, data) VALUES ($1, $2)")
            .bind(&co.id)
            .bind(Json(co))
            .execute(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error creating checkout"))?;

        Ok(())
    }

    async fn update_checkout<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        co: &Checkout<P>,
    ) -> Result<(), Error> {
        let tx = self.tx.as_mut().unwrap();

        sqlx::query("UPDATE checkouts SET data = $2 WHERE id = $1")
            .bind(&co.id)
            .bind(Json(co))
            .execute(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error updating checkout"))?;

        Ok(())
    }

    async fn get_checkout<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        id: &str,
    ) -> Result<Option<Checkout<P>>, Error> {
        let tx = self.tx.as_mut().unwrap();

        let record = sqlx::query("SELECT data FROM checkouts WHERE id = $1")
            .bind(id)
            .fetch_optional(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error selecting checkout"))?;

        if record.is_none() {
            return Ok(None);
        }

        let co: Json<Checkout<P>> = record
            .unwrap()
            .try_get("data")
            .map_err(|_| new_server_error("DB_ERROR: couldn't decode checkout from db"))?;

        Ok(Some(co.0))
    }

    async fn get_checkout_for_update<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        id: &str,
    ) -> Result<Option<Checkout<P>>, Error> {
        let tx = self.tx.as_mut().unwrap();

        let record = sqlx::query("SELECT data FROM checkouts WHERE id = $1 FOR UPDATE")
            .bind(id)
            .fetch_optional(tx)
            .await
            .map_err(|err| {
                println!("{}", err);
                new_server_error("DB_ERROR: error selecting checkout for update")
            })?;

        if record.is_none() {
            return Ok(None);
        }

        let co: Json<Checkout<P>> = record
            .unwrap()
            .try_get("data")
            .map_err(|_| new_server_error("DB_ERROR: couldn't decode checkout from db"))?;

        Ok(Some(co.0))
    }
}

// internal implementation (OrderStore)
#[async_trait]
impl<'a, C: ClientContext + Send> OrderStore for MasterContext<'a, C> {
    async fn create_order<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        od: &Order<P>,
    ) -> Result<(), Error> {
        let tx = self.tx.as_mut().unwrap();

        sqlx::query("INSERT INTO orders (id, data) VALUES ($1, $2)")
            .bind(&od.id)
            .bind(Json(od))
            .execute(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error creating order"))?;

        Ok(())
    }

    async fn update_order<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        od: &Order<P>,
    ) -> Result<(), Error> {
        let tx = self.tx.as_mut().unwrap();

        sqlx::query("UPDATE orders SET data = $2 WHERE id = $1")
            .bind(&od.id)
            .bind(Json(od))
            .execute(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error updating order"))?;

        Ok(())
    }

    async fn get_order<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        id: &str,
    ) -> Result<Option<Order<P>>, Error> {
        let tx = self.tx.as_mut().unwrap();

        let record = sqlx::query("SELECT data FROM orders WHERE id = $1")
            .bind(id)
            .fetch_optional(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error selecting order"))?;

        if record.is_none() {
            return Ok(None);
        }

        let od: Json<Order<P>> = record
            .unwrap()
            .try_get("data")
            .map_err(|_| new_server_error("DB_ERROR: couldn't decode order from db"))?;

        Ok(Some(od.0))
    }

    async fn get_order_for_update<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        id: &str,
    ) -> Result<Option<Order<P>>, Error> {
        let tx = self.tx.as_mut().unwrap();

        let record = sqlx::query("SELECT data FROM orders WHERE id = $1 FOR UPDATE")
            .bind(id)
            .fetch_optional(tx)
            .await
            .map_err(|err| {
                println!("{}", err);
                new_server_error("DB_ERROR: error selecting order for update")
            })?;

        if record.is_none() {
            return Ok(None);
        }

        let od: Json<Order<P>> = record
            .unwrap()
            .try_get("data")
            .map_err(|_| new_server_error("DB_ERROR: couldn't decode order from db"))?;

        Ok(Some(od.0))
    }
}

// internal implementation (PaymentStore)
#[async_trait]
impl<'a, C: ClientContext + Send> PaymentStore for MasterContext<'a, C> {
    async fn create_payment(
        &mut self,
        payment: &Payment<<Self as PaymentProcessor>::Data>,
    ) -> Result<(), Error> {
        let tx = self.tx.as_mut().unwrap();

        sqlx::query("INSERT INTO payments (id, correlation_id, data) VALUES ($1, $2, $3)")
            .bind(&payment.id)
            .bind(&payment.correlation_id)
            .bind(Json(payment))
            .execute(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error creating payment"))?;

        Ok(())
    }

    async fn update_payment(
        &mut self,
        payment: &Payment<<Self as PaymentProcessor>::Data>,
    ) -> Result<(), Error> {
        let tx = self.tx.as_mut().unwrap();

        sqlx::query("UPDATE payments SET correlation_id = $2, data = $3 WHERE id = $1")
            .bind(&payment.id)
            .bind(&payment.correlation_id)
            .bind(Json(payment))
            .execute(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error updating payment"))?;

        Ok(())
    }

    async fn get_payment<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        id: &str,
    ) -> Result<Option<P>, Error> {
        let tx = self.tx.as_mut().unwrap();

        let record = sqlx::query("SELECT data FROM payments WHERE id = $1")
            .bind(id)
            .fetch_optional(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error selecting payment"))?;

        if record.is_none() {
            return Ok(None);
        }

        let co: Json<P> = record
            .unwrap()
            .try_get("data")
            .map_err(|_| new_server_error("DB_ERROR: couldn't decode payment from db"))?;

        Ok(Some(co.0))
    }

    async fn get_payment_for_update<P: Sync + Send + Serialize + DeserializeOwned>(
        &mut self,
        id: &str,
    ) -> Result<Option<P>, Error> {
        let tx = self.tx.as_mut().unwrap();

        let record = sqlx::query("SELECT data FROM payments WHERE id = $1 FOR UPDATE")
            .bind(id)
            .fetch_optional(tx)
            .await
            .map_err(|_| new_server_error("DB_ERROR: error selecting payment for update"))?;

        if record.is_none() {
            return Ok(None);
        }

        let co: Json<P> = record
            .unwrap()
            .try_get("data")
            .map_err(|_| new_server_error("DB_ERROR: couldn't decode payment from db"))?;

        Ok(Some(co.0))
    }

    async fn get_payment_for_update_by_correlation_id<
        P: Sync + Send + Serialize + DeserializeOwned,
    >(
        &mut self,
        id: &str,
    ) -> Result<Option<P>, Error> {
        let tx = self.tx.as_mut().unwrap();

        let record = sqlx::query("SELECT data FROM payments WHERE correlation_id = $1 FOR UPDATE")
            .bind(id)
            .fetch_optional(tx)
            .await
            .map_err(|_| {
                new_server_error("DB_ERROR: error selecting payment for update by correlation id")
            })?;

        if record.is_none() {
            return Ok(None);
        }

        let co: Json<P> = record
            .unwrap()
            .try_get("data")
            .map_err(|_| new_server_error("DB_ERROR: couldn't decode payment from db"))?;

        Ok(Some(co.0))
    }
}

// external implementation (PaymentProcessor)
#[async_trait]
impl<'a, C: ClientContext + Send> PaymentProcessor for MasterContext<'a, C> {
    type Data = <C as PaymentProcessor>::Data;
    type InitArgs = <C as PaymentProcessor>::InitArgs;
    type ProcessArgs = <C as PaymentProcessor>::ProcessArgs;

    async fn initiate_payment(
        &mut self,
        payment: &Payment<Self::Data>,
        args: &Self::InitArgs,
    ) -> Result<PaymentData<Self::Data>, Error> {
        self.client_ctx.initiate_payment(payment, args).await
    }

    async fn process_payment(
        &mut self,
        payment: &Payment<Self::Data>,
        args: &Self::ProcessArgs,
    ) -> Result<ProcessingResult<Self::Data>, Error> {
        self.client_ctx.process_payment(payment, args).await
    }

    async fn cancel_payment(
        &mut self,
        payment: &Payment<Self::Data>,
    ) -> Result<CancellationResult, Error> {
        self.client_ctx.cancel_payment(payment).await
    }
}

// external implementation (OrderEvents)
#[async_trait]
impl<'a, C: ClientContext + Send> OrderEvents for MasterContext<'a, C> {
    async fn on_payment_in_progress(
        &mut self,
        order: &Order<Payment<<Self as PaymentProcessor>::Data>>,
    ) -> Result<(), Error> {
        self.client_ctx.on_payment_in_progress(order).await
    }

    async fn on_pending_confirmation(
        &mut self,
        order: &Order<Payment<<Self as PaymentProcessor>::Data>>,
    ) -> Result<(), Error> {
        self.client_ctx.on_pending_confirmation(order).await
    }

    async fn on_confirmed(
        &mut self,
        order: &Order<Payment<<Self as PaymentProcessor>::Data>>,
    ) -> Result<(), Error> {
        self.client_ctx.on_confirmed(order).await
    }

    async fn on_fulfilled(
        &mut self,
        order: &Order<Payment<<Self as PaymentProcessor>::Data>>,
    ) -> Result<(), Error> {
        self.client_ctx.on_fulfilled(order).await
    }

    async fn on_cancelled(
        &mut self,
        order: &Order<Payment<<Self as PaymentProcessor>::Data>>,
    ) -> Result<(), Error> {
        self.client_ctx.on_cancelled(order).await
    }
}

// external implementation (PriceCalculator)
#[async_trait]
impl<'a, C: ClientContext + Send> PriceCalculator for MasterContext<'a, C> {
    async fn calculate_item_prices(
        &mut self,
        currency: &Currency,
        promo_codes: &Vec<String>,
        items: &Vec<Item>,
    ) -> Result<Vec<ItemPrice>, Error> {
        self.client_ctx
            .calculate_item_prices(currency, promo_codes, items)
            .await
    }
}

// external implementation (ShippingCalculator)
#[async_trait]
impl<'a, C: ClientContext + Send> ShippingCalculator for MasterContext<'a, C> {
    async fn get_shipping_quotes(
        &mut self,
        currency: &Currency,
        promo_codes: &Vec<String>,
        items: &Vec<Item>,
        address: &Address,
    ) -> Result<Vec<ShippingQuote>, Error> {
        self.client_ctx
            .get_shipping_quotes(currency, promo_codes, items, address)
            .await
    }
}

// external implementation (ProductResolver)
#[async_trait]
impl<'a, C: ClientContext + Send> ProductResolver for MasterContext<'a, C> {
    async fn resolve_product(&mut self, currency: &Currency, sku: &str) -> Result<Product, Error> {
        self.client_ctx.resolve_product(currency, sku).await
    }
}

// external implementation (InvoiceCalculator)
#[async_trait]
impl<'a, C: ClientContext + Send> InvoiceCalculator for MasterContext<'a, C> {
    async fn line_item_taxes<P: Sync + Send>(
        &mut self,
        co: &Checkout<P>,
    ) -> Result<Vec<Tax>, Error> {
        self.client_ctx.line_item_taxes(co).await
    }

    async fn shipping_taxes<P: Sync + Send>(
        &mut self,
        co: &Checkout<P>,
    ) -> Result<Vec<Tax>, Error> {
        self.client_ctx.shipping_taxes(co).await
    }

    async fn initial_charge_ratio<P: Sync + Send>(
        &mut self,
        co: &Checkout<P>,
    ) -> Result<Decimal, Error> {
        self.client_ctx.initial_charge_ratio(co).await
    }

    async fn generate_invoice<P: Sync + Send>(
        &mut self,
        co: &Checkout<P>,
    ) -> Result<Invoice, Error> {
        self.client_ctx.generate_invoice(co).await
    }
}