summaryrefslogtreecommitdiff
path: root/src/graphql
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-10 16:34:59 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-10 16:34:59 +0200
commit069b3526099bf309e9a0e5a0e9d4fc07a6ecef53 (patch)
tree38e0c536a32f433e06ba08a71da29e036ad5ee25 /src/graphql
parent33d1fab07889b7d3ea898ecb306e112808126d84 (diff)
Fix polygon validation
Diffstat (limited to 'src/graphql')
-rw-r--r--src/graphql/types/alert.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/graphql/types/alert.rs b/src/graphql/types/alert.rs
index ba93c03..2e7f10b 100644
--- a/src/graphql/types/alert.rs
+++ b/src/graphql/types/alert.rs
@@ -216,7 +216,15 @@ pub mod mutations {
let polygon = format!("ST_MakePolygon(ST_MakeLine(ARRAY[{}]))", points);
let valid_query = format!("SELECT ST_IsValid({}) as is_valid", polygon);
- let rows = client.query(&valid_query, &[]).await.unwrap();
+ let rows;
+ match client.query(&valid_query, &[]).await {
+ Ok(r) => {
+ rows = r;
+ }
+ Err(_) => {
+ return Err(async_graphql::Error::new("Polygon is not valid"));
+ }
+ };
let is_valid: bool = rows[0].get("is_valid");
if !is_valid {