diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 11:25:29 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 11:25:29 +0200 |
commit | 7e9dbd60f55f02ab065c764f8230aabaa6778eed (patch) | |
tree | 53d41bb27dbc3cf6e3c17ae99742029ab554ce53 /src/graphql/mutation.rs | |
parent | 58ff30ec66b5fd94c98cd0dfe441d6968af35ff2 (diff) |
Keep a device token for the user notification
Diffstat (limited to 'src/graphql/mutation.rs')
-rw-r--r-- | src/graphql/mutation.rs | 46 |
1 files changed, 45 insertions, 1 deletions
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<user::User> { + let state = ctx.data::<AppState>().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: |