rowt/src/rest/admin/planned_event.rs

90 lines
2.6 KiB
Rust
Raw Normal View History

2023-04-04 12:19:56 +02:00
use rocket::{
form::Form,
2023-05-03 22:40:22 +02:00
get, post, put,
2023-04-04 12:19:56 +02:00
response::{Flash, Redirect},
routes, FromForm, Route, State,
};
use sqlx::SqlitePool;
use crate::model::{planned_event::PlannedEvent, tripdetails::TripDetails, user::AdminUser};
//TODO: add constraints (e.g. planned_amount_cox > 0)
#[derive(FromForm)]
2023-05-24 12:11:55 +02:00
struct AddPlannedEventForm<'r> {
day: &'r str,
name: &'r str,
2023-04-04 12:19:56 +02:00
planned_amount_cox: i32,
allow_guests: bool,
2023-05-24 12:11:55 +02:00
planned_starting_time: &'r str,
2023-04-04 12:19:56 +02:00
max_people: i32,
2023-05-24 12:11:55 +02:00
notes: Option<&'r str>,
2023-04-28 21:19:51 +02:00
trip_type: Option<i64>,
2023-04-04 12:19:56 +02:00
}
#[post("/planned-event", data = "<data>")]
async fn create(
db: &State<SqlitePool>,
2023-05-24 12:11:55 +02:00
data: Form<AddPlannedEventForm<'_>>,
2023-04-04 12:19:56 +02:00
_admin: AdminUser,
) -> Flash<Redirect> {
2023-04-04 19:49:27 +02:00
let trip_details_id = TripDetails::create(
2023-04-04 12:19:56 +02:00
db,
2023-05-24 12:11:55 +02:00
data.planned_starting_time,
2023-04-04 12:19:56 +02:00
data.max_people,
2023-05-24 12:11:55 +02:00
data.day,
data.notes,
data.allow_guests,
2023-04-28 21:19:51 +02:00
data.trip_type,
2023-04-04 12:19:56 +02:00
)
.await;
2023-04-26 17:02:47 +02:00
let trip_details = TripDetails::find_by_id(db, trip_details_id).await.unwrap(); //Okay, bc. we
//just created
//the object
2023-05-24 12:11:55 +02:00
PlannedEvent::create(db, data.name, data.planned_amount_cox, trip_details).await;
2023-04-04 12:19:56 +02:00
Flash::success(Redirect::to("/"), "Successfully planned the event")
}
2023-05-03 22:40:22 +02:00
//TODO: add constraints (e.g. planned_amount_cox > 0)
#[derive(FromForm)]
2023-05-24 12:11:55 +02:00
struct UpdatePlannedEventForm<'r> {
2023-05-03 22:40:22 +02:00
id: i64,
planned_amount_cox: i32,
max_people: i32,
2023-05-24 12:11:55 +02:00
notes: Option<&'r str>,
2023-05-03 22:40:22 +02:00
}
#[put("/planned-event", data = "<data>")]
async fn update(
db: &State<SqlitePool>,
2023-05-24 12:11:55 +02:00
data: Form<UpdatePlannedEventForm<'_>>,
2023-05-03 22:40:22 +02:00
_admin: AdminUser,
) -> Flash<Redirect> {
match PlannedEvent::find_by_id(db, data.id).await {
Some(planned_event) => {
planned_event
2023-05-24 12:11:55 +02:00
.update(db, data.planned_amount_cox, data.max_people, data.notes)
2023-05-03 22:40:22 +02:00
.await;
Flash::success(Redirect::to("/"), "Successfully edited the event")
}
None => Flash::error(Redirect::to("/"), "Planned event id not found"),
}
}
2023-04-04 12:19:56 +02:00
#[get("/planned-event/<id>/delete")]
async fn delete(db: &State<SqlitePool>, id: i64, _admin: AdminUser) -> Flash<Redirect> {
2023-04-26 12:21:30 +02:00
match PlannedEvent::find_by_id(db, id).await {
Some(planned_event) => {
planned_event.delete(db).await;
Flash::success(Redirect::to("/"), "Successfully deleted the event")
}
None => Flash::error(Redirect::to("/"), "PlannedEvent does not exist"),
}
2023-04-04 12:19:56 +02:00
}
pub fn routes() -> Vec<Route> {
2023-05-03 22:40:22 +02:00
routes![create, delete, update]
2023-04-04 12:19:56 +02:00
}