- Restructure domain/, repositories/, and routes/api/ into themed subdirectories: coffee/, auth/, analytics/ (and system/ for routes) - Convert super:: relative imports to crate:: absolute paths - Promote macro visibility from pub(super) to pub(crate) - Add pub use re-exports for backward-compatible import paths
135 lines
3.8 KiB
Rust
135 lines
3.8 KiB
Rust
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::domain::ids::{RoastId, RoasterId};
|
|
use crate::domain::listing::{SortDirection, SortKey};
|
|
use crate::domain::roasters::Roaster;
|
|
use crate::domain::timeline::{NewTimelineEvent, TimelineEventDetail};
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct Roast {
|
|
pub id: RoastId,
|
|
pub roaster_id: RoasterId,
|
|
pub name: String,
|
|
pub slug: String,
|
|
pub origin: Option<String>,
|
|
pub region: Option<String>,
|
|
pub producer: Option<String>,
|
|
pub tasting_notes: Vec<String>,
|
|
pub process: Option<String>,
|
|
pub created_at: DateTime<Utc>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct RoastWithRoaster {
|
|
#[serde(flatten)]
|
|
pub roast: Roast,
|
|
pub roaster_name: String,
|
|
pub roaster_slug: String,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct NewRoast {
|
|
pub roaster_id: RoasterId,
|
|
pub name: String,
|
|
pub origin: String,
|
|
pub region: String,
|
|
pub producer: String,
|
|
pub tasting_notes: Vec<String>,
|
|
pub process: String,
|
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
pub created_at: Option<DateTime<Utc>>,
|
|
}
|
|
|
|
impl NewRoast {
|
|
pub fn slug(&self) -> String {
|
|
slug::slugify(&self.name)
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
|
|
pub struct UpdateRoast {
|
|
pub roaster_id: Option<RoasterId>,
|
|
pub name: Option<String>,
|
|
pub origin: Option<String>,
|
|
pub region: Option<String>,
|
|
pub producer: Option<String>,
|
|
pub tasting_notes: Option<Vec<String>>,
|
|
pub process: Option<String>,
|
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
pub created_at: Option<DateTime<Utc>>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
|
|
pub enum RoastSortKey {
|
|
CreatedAt,
|
|
Name,
|
|
Roaster,
|
|
Origin,
|
|
Producer,
|
|
}
|
|
|
|
impl SortKey for RoastSortKey {
|
|
fn default() -> Self {
|
|
RoastSortKey::CreatedAt
|
|
}
|
|
|
|
fn from_query(value: &str) -> Option<Self> {
|
|
match value {
|
|
"created-at" => Some(RoastSortKey::CreatedAt),
|
|
"name" => Some(RoastSortKey::Name),
|
|
"roaster" => Some(RoastSortKey::Roaster),
|
|
"origin" => Some(RoastSortKey::Origin),
|
|
"producer" => Some(RoastSortKey::Producer),
|
|
_ => None,
|
|
}
|
|
}
|
|
|
|
fn query_value(self) -> &'static str {
|
|
match self {
|
|
RoastSortKey::CreatedAt => "created-at",
|
|
RoastSortKey::Name => "name",
|
|
RoastSortKey::Roaster => "roaster",
|
|
RoastSortKey::Origin => "origin",
|
|
RoastSortKey::Producer => "producer",
|
|
}
|
|
}
|
|
|
|
fn default_direction(self) -> SortDirection {
|
|
match self {
|
|
RoastSortKey::CreatedAt => SortDirection::Desc,
|
|
_ => SortDirection::Asc,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn roast_timeline_event(roast: &Roast, roaster: &Roaster) -> NewTimelineEvent {
|
|
let mut details = vec![TimelineEventDetail {
|
|
label: "Roaster".to_string(),
|
|
value: roaster.name.clone(),
|
|
}];
|
|
if let Some(ref origin) = roast.origin {
|
|
details.push(TimelineEventDetail {
|
|
label: "Origin".to_string(),
|
|
value: origin.clone(),
|
|
});
|
|
}
|
|
if !roast.tasting_notes.is_empty() {
|
|
details.push(TimelineEventDetail {
|
|
label: "Tasting Notes".to_string(),
|
|
value: roast.tasting_notes.join(", "),
|
|
});
|
|
}
|
|
NewTimelineEvent {
|
|
entity_type: "roast".to_string(),
|
|
entity_id: roast.id.into_inner(),
|
|
action: "added".to_string(),
|
|
occurred_at: roast.created_at,
|
|
title: roast.name.clone(),
|
|
details,
|
|
tasting_notes: roast.tasting_notes.clone(),
|
|
slug: Some(roast.slug.clone()),
|
|
roaster_slug: Some(roaster.slug.clone()),
|
|
brew_data: None,
|
|
}
|
|
}
|