From 7e9dbd60f55f02ab065c764f8230aabaa6778eed Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 5 Sep 2024 11:25:29 +0200 Subject: Keep a device token for the user notification --- src/graphql/mutation.rs | 46 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) (limited to 'src/graphql/mutation.rs') diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index a389a04..b5de3fb 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -3,7 +3,7 @@ use crate::{ alert, jwt::{self, Authentication}, position, - user::find_user, + user::{self, find_user}, }, state::AppState, }; @@ -58,6 +58,50 @@ impl Mutation { } } + /// Make GraphQL call to register a notification device token for the user. + /// + /// Example: + /// ```text + /// curl -X POST http://localhost:8000/graphql \ + /// -H "Content-Type: application/json" \ + /// -d '{ + /// "query": "mutation RegisterDevice($input: RegisterNotificationToken!) { registerDevice(input: $input) { id name email } }", + /// "variables": { + /// "input": { + /// "token": "***", + /// } + /// } + /// }' + /// ``` + async fn register_device<'ctx>( + &self, + ctx: &Context<'ctx>, + input: user::RegisterNotificationToken, + ) -> FieldResult { + let state = ctx.data::().expect("Can't connect to db"); + let client = &*state.client; + + let auth: &Authentication = ctx.data().unwrap(); + match auth { + Authentication::NotLogged => Err(Error::new("Can't find the owner")), + Authentication::Logged(claims) => { + let user = find_user(client, claims.user_id) + .await + .expect("Should not be here"); + + client + .query( + "UPDATE users SET notification_token = $1 WHERE id = $2", + &[&input.token, &claims.user_id], + ) + .await + .unwrap(); + + Ok(user) + } + } + } + /// Make GraphQL request to create new position to track /// /// Example: -- cgit v1.2.3-18-g5258