From 6e6f2ce7c24acabdfd1f1f59378467ea225fb27a Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 26 Aug 2024 22:07:42 +0200 Subject: Add alerts A payload for alert creation can be ``` { "query": "mutation NewAlert($input: AlertInput!) { newAlert(input: $input) { id createdAt level } }", "variables": { "input": { "points": [ { "latitude": 40.73061, "longitude": -73.935242 }, { "latitude": 40.741895, "longitude": -73.989308 }, { "latitude": 40.712776, "longitude": -74.005974 }, { "latitude": 40.73061, "longitude": -73.935242 }, ], "level": "TWO" } } } ``` --- src/graphql/mutation.rs | 67 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) (limited to 'src/graphql/mutation.rs') diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index 5a93038..540dd0f 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -1,8 +1,10 @@ use crate::{ dates::GraphQLDate, graphql::types::{ + alert, jwt::{self, Authentication}, position, + user::find_user, }, state::AppState, }; @@ -92,4 +94,69 @@ impl Mutation { } } } + + /// Make GraphQL request to create new alert. Only for admins. + async fn new_alert<'ctx>( + &self, + ctx: &Context<'ctx>, + input: alert::AlertInput, + ) -> FieldResult { + let state = ctx.data::().expect("Can't connect to db"); + let client = &*state.client; + + let auth: &Authentication = ctx.data().unwrap(); + match auth { + Authentication::NotLogged => Err(Error::new("Can't find the owner")), + Authentication::Logged(claims) => { + let claim_user = find_user(client, claims.user_id) + .await + .expect("Should not be here"); + + if !claim_user.is_admin { + return Err(Error::new("Unauthorized")); + } + + let polygon: Vec = input + .points + .iter() + .map(|x| { + format!( + "ST_SetSRID(ST_MakePoint({}, {}), 4326)", + x.latitude, x.longitude + ) + }) + .collect(); + + let query = format!("INSERT INTO alerts (user_id, area, level) + VALUES($1, ST_MakePolygon( + ST_MakeLine( + ARRAY[{}] + ) + ), $2) + RETURNING id, user_id, created_at, ST_AsText(area) as area, level, reached_users + ", polygon.join(",")); + + match client.query(&query, &[&claims.user_id, &input.level]).await { + Ok(rows) => { + let alerts: Vec = rows + .iter() + .map(|row| alert::Alert { + id: row.get("id"), + user_id: row.get("user_id"), + created_at: GraphQLDate(Utc::now()), + area: row.get("area"), + level: row.get("level"), + reached_users: row.get("reached_users"), + }) + .collect(); + + // TODO: Send notifications + + Ok(alerts[0].clone()) + } + Err(e) => Err(e.into()), + } + } + } + } } -- cgit v1.2.3-18-g5258