rowt/src/model/mod.rs

59 lines
1.4 KiB
Rust
Raw Normal View History

2023-04-04 12:19:56 +02:00
use chrono::NaiveDate;
use serde::Serialize;
use sqlx::SqlitePool;
2023-04-04 15:16:21 +02:00
use self::{
2023-04-28 21:19:30 +02:00
planned_event::{PlannedEvent, PlannedEventWithUserAndTriptype},
trip::{Trip, TripWithUserAndType},
2023-04-04 15:16:21 +02:00
};
2023-04-04 12:19:56 +02:00
pub mod boat;
2023-07-22 15:34:42 +02:00
pub mod location;
2023-04-18 12:10:11 +02:00
pub mod log;
2023-07-23 12:17:57 +02:00
pub mod logbook;
pub mod logtype;
2023-04-04 12:19:56 +02:00
pub mod planned_event;
2023-07-24 13:01:39 +02:00
pub mod rower;
2023-07-24 20:56:46 +02:00
pub mod stat;
2023-04-04 15:16:21 +02:00
pub mod trip;
2023-04-04 12:19:56 +02:00
pub mod tripdetails;
2023-04-28 21:19:30 +02:00
pub mod triptype;
2023-04-03 16:11:26 +02:00
pub mod user;
2023-04-04 15:16:21 +02:00
pub mod usertrip;
2023-04-04 12:19:56 +02:00
#[derive(Serialize)]
pub struct Day {
day: NaiveDate,
2023-04-28 21:19:30 +02:00
planned_events: Vec<PlannedEventWithUserAndTriptype>,
trips: Vec<TripWithUserAndType>,
2023-06-08 10:57:42 +02:00
is_pinned: bool,
2023-04-04 12:19:56 +02:00
}
impl Day {
2023-06-08 10:57:42 +02:00
pub async fn new(db: &SqlitePool, day: NaiveDate, is_pinned: bool) -> Self {
2023-07-25 13:32:20 +02:00
if is_pinned {
Self {
day,
planned_events: PlannedEvent::get_pinned_for_day(db, day).await,
trips: Trip::get_pinned_for_day(db, day).await,
is_pinned,
}
} else {
Self {
day,
planned_events: PlannedEvent::get_for_day(db, day).await,
trips: Trip::get_for_day(db, day).await,
is_pinned,
}
2023-04-04 12:19:56 +02:00
}
}
2023-06-08 10:57:42 +02:00
pub async fn new_guest(db: &SqlitePool, day: NaiveDate, is_pinned: bool) -> Self {
let mut day = Self::new(db, day, is_pinned).await;
2023-05-30 14:36:23 +02:00
day.planned_events.retain(|e| e.planned_event.allow_guests);
day.trips.retain(|t| t.trip.allow_guests);
day
}
2023-04-04 12:19:56 +02:00
}