astrolab-smart-coffee-types 0.9.99990

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

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

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct GetCategoryProductDetailsByIdResult {
    pub category_product: Option<CategoryProductAggregation>,
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CategoryProductAggregation {
    pub id: Option<String>,
    pub identifier: Option<String>,
    pub names: Option<Vec<CategoryProductNameAggregation>>,
    pub short_descriptions: Option<Vec<CategoryProductDescriptionAggregation>>,
    pub long_descriptions: Option<Vec<CategoryProductDescriptionAggregation>>,
    pub price: Option<CategoryProductPriceAggregation>,
    pub discount: Option<CategoryProductDiscountAggregation>,
    pub unit: Option<CategoryProductUnitAggregation>,
    pub picture: Option<CategoryProductPictureAggregation>,
    pub order: Option<i32>,
    pub is_published: Option<bool>,
}

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

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

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

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

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CategoryProductDiscountAggregation {
    pub percentage: Option<i32>,
    pub price: Option<CategoryProductPriceAggregation>
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CategoryProductUnitAggregation {
    pub kind: Option<String>,
    pub default: Option<f64>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CategoryProductPictureAggregation {
    pub id: Option<String>,
    pub kind: Option<String>,
    pub file_name: Option<String>,
    pub file_url: Option<String>
}

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

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