From f56b18fd28054aa5b241a897d22bcfc58c321286 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 5 Sep 2024 14:21:32 +0200 Subject: Send notifications by Expo API --- src/graphql/mutation.rs | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) (limited to 'src/graphql/mutation.rs') diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index 4387b77..dfffad8 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -1,4 +1,5 @@ use crate::{ + expo, graphql::types::{ alert, jwt::{self, Authentication}, @@ -282,8 +283,8 @@ impl Mutation { .collect(); let mut notification_ids = vec![]; - for id in position_ids { - let notification = notification::Notification::new(client, alert.id, id) + for id in &position_ids { + let notification = notification::Notification::new(client, alert.id, *id) .await .unwrap(); notification_ids.push(notification); @@ -298,6 +299,37 @@ impl Mutation { .await .unwrap(); + let placeholders: Vec = (1..=position_ids.len()) + .map(|i| format!("${}", i)) + .collect(); + let query = format!( + "SELECT u.notification_token FROM positions p JOIN users u ON u.id = p.user_id + WHERE p.id IN ({}) AND notification_token IS NOT NULL", + placeholders.join(", ") + ); + + let tokens: Vec = client + .query( + &query, + &position_ids + .iter() + .map(|id| id as &(dyn tokio_postgres::types::ToSql + Sync)) + .collect::>(), + ) + .await + .unwrap() + .iter() + .map(|row| format!("ExponentPushToken[{}]", row.get::(0))) + .collect(); + + expo::send( + tokens, + "New Alert!".to_string(), + "Keep an eye open".to_string(), + ) + .await + .unwrap(); + Ok(alert) } } -- cgit v1.2.3-18-g5258