digipages-lib 0.0.13

Digipages Types lib
Documentation
use actix_web::{HttpResponse, ResponseError};
use derive_more::Display;
use serde::{Deserialize, Serialize};
use validator::Validate;

#[derive(Serialize, Deserialize, Debug, Clone, Validate)]
pub struct GetMenuCartDetailsBody {
    pub menu: String,
    pub device: String,
    pub discounted_cost_value: f64,
    pub delivered_cost_value: f64,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct GetMenuCartDetailsResult {
    pub count: Option<i32>,
    pub products: Option<Vec<CartProductAggregation>>,
    pub original_total_price: Option<PriceAggregation>,
    pub total_discounted_cost: Option<PriceAggregation>,
    pub total_delivered_cost: Option<PriceAggregation>,
    pub total_price: Option<PriceAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct MenuCartAggregation {
    pub count: Option<i32>,
    pub products: Option<Vec<CartProductAggregation>>,
    pub original_total_price: Option<PriceAggregation>,
    pub total_discounted_cost: Option<PriceAggregation>,
    pub total_delivered_cost: Option<PriceAggregation>,
    pub total_price: Option<PriceAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CartProductAggregation {
    pub id: Option<String>,
    pub quantity: Option<f64>,
    pub unit_price: Option<PriceAggregation>,
    pub total_price: Option<PriceAggregation>,
    pub notes: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct PriceAggregation {
    pub value: Option<f64>,
    pub currency: Option<CurrencyAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CurrencyAggregation {
    pub id: Option<String>,
    pub code: Option<String>,
}

#[derive(Debug, Display)]
pub enum GetMenuCartDetailsError {
    #[display(fmt = "invalid_object_id")]
    InvalidObjectId,
    Default(String),
}

impl ResponseError for GetMenuCartDetailsError {
    fn error_response(&self) -> HttpResponse {
        match self {
            GetMenuCartDetailsError::InvalidObjectId => {
                HttpResponse::NotAcceptable().body("invalid_object_id")
            }
            GetMenuCartDetailsError::Default(error) => HttpResponse::BadRequest().body(error),
        }
    }
}