diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-29 11:01:01 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-29 11:01:01 +0200 |
commit | 776e61237601236fb1ad68f4047cca40263acf23 (patch) | |
tree | 176c168c84a21c66105cb54730c6d3da7c701d14 /src/graphql | |
parent | a1f4c18afa3807d32e15966d89b201fd3f823ce2 (diff) |
Valid the polygon before the alert creation
Diffstat (limited to 'src/graphql')
-rw-r--r-- | src/graphql/mutation.rs | 37 | ||||
-rw-r--r-- | src/graphql/types/alert.rs | 5 |
2 files changed, 36 insertions, 6 deletions
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<String> = input + let points: String = input .points .iter() .map(|x| { @@ -125,16 +125,41 @@ impl Mutation { x.longitude, x.latitude ) }) - .collect(); + .collect::<Vec<String>>() + .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<alert::PolygonValid> = 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) => { diff --git a/src/graphql/types/alert.rs b/src/graphql/types/alert.rs index 006e9ae..cede465 100644 --- a/src/graphql/types/alert.rs +++ b/src/graphql/types/alert.rs @@ -55,6 +55,11 @@ impl ToSql for LevelAlert { to_sql_checked!(); } +#[derive(Serialize, Deserialize)] +pub struct PolygonValid { + pub is_valid: bool, +} + #[derive(SimpleObject, Clone, Debug, Serialize, Deserialize)] /// Alert struct pub struct Alert { |