summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-29 11:01:01 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-29 11:01:01 +0200
commit776e61237601236fb1ad68f4047cca40263acf23 (patch)
tree176c168c84a21c66105cb54730c6d3da7c701d14
parenta1f4c18afa3807d32e15966d89b201fd3f823ce2 (diff)
Valid the polygon before the alert creation
-rw-r--r--src/graphql/mutation.rs37
-rw-r--r--src/graphql/types/alert.rs5
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 {