From 776e61237601236fb1ad68f4047cca40263acf23 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 29 Aug 2024 11:01:01 +0200 Subject: Valid the polygon before the alert creation --- src/graphql/mutation.rs | 37 +++++++++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 6 deletions(-) (limited to 'src/graphql/mutation.rs') diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index e88157a..140d98a 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -116,7 +116,7 @@ impl Mutation { return Err(Error::new("Unauthorized")); } - let polygon: Vec = input + let points: String = input .points .iter() .map(|x| { @@ -125,16 +125,41 @@ impl Mutation { x.longitude, x.latitude ) }) - .collect(); + .collect::>() + .join(","); - let query = format!("INSERT INTO alerts (user_id, area, level) - VALUES($1, ST_MakePolygon( + let polygon = format!( + "ST_MakePolygon( ST_MakeLine( ARRAY[{}] ) - ), $2) + )", + points + ); + + match client + .query(&format!("SELECT ST_IsValid({}) as is_valid", polygon), &[]) + .await + { + Ok(rows) => { + let valids: Vec = rows + .iter() + .map(|row| alert::PolygonValid { + is_valid: row.get("is_valid"), + }) + .collect(); + + if valids[0].is_valid == false { + return Err(Error::new("Polygon is not valid")); + } + } + Err(e) => return Err(e.into()), + }; + + let query = format!("INSERT INTO alerts (user_id, area, level) + VALUES($1, {}, $2) RETURNING id, user_id, created_at, ST_AsText(area) as area, level, reached_users - ", polygon.join(",")); + ", polygon); match client.query(&query, &[&claims.user_id, &input.level]).await { Ok(rows) => { -- cgit v1.2.3-18-g5258