commerce-theory 0.1.1

Runtime Rust mirror of the CommerceTheory Lean package
Documentation
use crate::dropshipping::*;
use crate::orders::*;

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum OrderTransitionLabel {
    CapturePayment,
    CancelBeforePayment,
    MarkBackordered,
    PackPaidOrder,
    RefundPaidOrder,
    ShipPackedOrder,
    ConfirmDelivery,
    RefundDeliveredOrder,
    ReceiveBackorderPayment,
    CancelBackorder,
}

pub fn order_transition_target(
    source: OrderStatus,
    label: OrderTransitionLabel,
) -> Option<OrderStatus> {
    match (source, label) {
        (OrderStatus::New, OrderTransitionLabel::CapturePayment) => Some(OrderStatus::Paid),
        (OrderStatus::New, OrderTransitionLabel::CancelBeforePayment) => {
            Some(OrderStatus::Cancelled)
        }
        (OrderStatus::New, OrderTransitionLabel::MarkBackordered) => Some(OrderStatus::Backordered),
        (OrderStatus::Paid, OrderTransitionLabel::PackPaidOrder) => Some(OrderStatus::Packed),
        (OrderStatus::Paid, OrderTransitionLabel::RefundPaidOrder) => Some(OrderStatus::Refunded),
        (OrderStatus::Packed, OrderTransitionLabel::ShipPackedOrder) => Some(OrderStatus::Shipped),
        (OrderStatus::Shipped, OrderTransitionLabel::ConfirmDelivery) => {
            Some(OrderStatus::Delivered)
        }
        (OrderStatus::Delivered, OrderTransitionLabel::RefundDeliveredOrder) => {
            Some(OrderStatus::Refunded)
        }
        (OrderStatus::Backordered, OrderTransitionLabel::ReceiveBackorderPayment) => {
            Some(OrderStatus::Paid)
        }
        (OrderStatus::Backordered, OrderTransitionLabel::CancelBackorder) => {
            Some(OrderStatus::Cancelled)
        }
        _ => None,
    }
}

pub fn execute_order_trace(
    start: OrderStatus,
    trace: &[OrderTransitionLabel],
) -> Option<Vec<OrderStatus>> {
    let mut states = vec![start];
    let mut current = start;
    for label in trace {
        current = order_transition_target(current, *label)?;
        states.push(current);
    }
    Some(states)
}

pub fn paid_fulfillment_trace() -> Vec<OrderTransitionLabel> {
    vec![
        OrderTransitionLabel::CapturePayment,
        OrderTransitionLabel::PackPaidOrder,
        OrderTransitionLabel::ShipPackedOrder,
        OrderTransitionLabel::ConfirmDelivery,
    ]
}

pub fn unpaid_cancellation_trace() -> Vec<OrderTransitionLabel> {
    vec![OrderTransitionLabel::CancelBeforePayment]
}

pub fn terminal_order_status(status: OrderStatus) -> bool {
    matches!(
        status,
        OrderStatus::Delivered | OrderStatus::Cancelled | OrderStatus::Refunded
    )
}

#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub struct OrderStatusLts;

impl OrderStatusLts {
    pub fn transition(
        self,
        source: OrderStatus,
        label: OrderTransitionLabel,
    ) -> Option<OrderStatus> {
        order_transition_target(source, label)
    }

    pub fn execute(
        self,
        start: OrderStatus,
        trace: &[OrderTransitionLabel],
    ) -> Option<Vec<OrderStatus>> {
        execute_order_trace(start, trace)
    }
}

pub fn order_status_lts() -> OrderStatusLts {
    OrderStatusLts
}

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum DropshipPOTransitionLabel {
    Submit,
    CancelBeforeSubmit,
    Accept,
    Reject,
    CancelSubmitted,
    ShipAccepted,
    CancelAccepted,
    ConfirmDelivery,
}

pub fn dropship_po_transition_target(
    source: DropshipPOStatus,
    label: DropshipPOTransitionLabel,
) -> Option<DropshipPOStatus> {
    match (source, label) {
        (DropshipPOStatus::Created, DropshipPOTransitionLabel::Submit) => {
            Some(DropshipPOStatus::Submitted)
        }
        (DropshipPOStatus::Created, DropshipPOTransitionLabel::CancelBeforeSubmit) => {
            Some(DropshipPOStatus::Cancelled)
        }
        (DropshipPOStatus::Submitted, DropshipPOTransitionLabel::Accept) => {
            Some(DropshipPOStatus::Accepted)
        }
        (DropshipPOStatus::Submitted, DropshipPOTransitionLabel::Reject) => {
            Some(DropshipPOStatus::Rejected)
        }
        (DropshipPOStatus::Submitted, DropshipPOTransitionLabel::CancelSubmitted) => {
            Some(DropshipPOStatus::Cancelled)
        }
        (DropshipPOStatus::Accepted, DropshipPOTransitionLabel::ShipAccepted) => {
            Some(DropshipPOStatus::Shipped)
        }
        (DropshipPOStatus::Accepted, DropshipPOTransitionLabel::CancelAccepted) => {
            Some(DropshipPOStatus::Cancelled)
        }
        (DropshipPOStatus::Shipped, DropshipPOTransitionLabel::ConfirmDelivery) => {
            Some(DropshipPOStatus::Delivered)
        }
        _ => None,
    }
}

pub fn execute_dropship_po_trace(
    start: DropshipPOStatus,
    trace: &[DropshipPOTransitionLabel],
) -> Option<Vec<DropshipPOStatus>> {
    let mut states = vec![start];
    let mut current = start;
    for label in trace {
        current = dropship_po_transition_target(current, *label)?;
        states.push(current);
    }
    Some(states)
}

pub fn dropship_po_delivery_trace() -> Vec<DropshipPOTransitionLabel> {
    vec![
        DropshipPOTransitionLabel::Submit,
        DropshipPOTransitionLabel::Accept,
        DropshipPOTransitionLabel::ShipAccepted,
        DropshipPOTransitionLabel::ConfirmDelivery,
    ]
}

pub fn terminal_dropship_po_status(status: DropshipPOStatus) -> bool {
    matches!(
        status,
        DropshipPOStatus::Delivered | DropshipPOStatus::Cancelled | DropshipPOStatus::Rejected
    )
}

#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub struct DropshipPoLts;

impl DropshipPoLts {
    pub fn transition(
        self,
        source: DropshipPOStatus,
        label: DropshipPOTransitionLabel,
    ) -> Option<DropshipPOStatus> {
        dropship_po_transition_target(source, label)
    }

    pub fn execute(
        self,
        start: DropshipPOStatus,
        trace: &[DropshipPOTransitionLabel],
    ) -> Option<Vec<DropshipPOStatus>> {
        execute_dropship_po_trace(start, trace)
    }
}

pub fn dropship_po_lts() -> DropshipPoLts {
    DropshipPoLts
}

pub fn dropship_polts() -> DropshipPoLts {
    DropshipPoLts
}