blob: f4cecc64bcf1053b4ae75deee511117c748baa48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
use expo_push_notification_client::{Expo, ExpoClientOptions, ExpoPushMessage};
use crate::errors::AppError;
/// Setup a new Expo API
pub fn setup(access_token: String) -> Expo {
Expo::new(ExpoClientOptions {
access_token: Some(access_token),
})
}
/// Send notifications using Expo
pub async fn send(
expo: Expo,
tokens: Vec<String>,
body: String,
title: String,
) -> Result<(), AppError> {
let expo_push_message = ExpoPushMessage::builder(tokens)
.body(body)
.title(title)
.build()?;
if expo
.send_push_notifications(expo_push_message)
.await
.is_err()
{
return Err(AppError::BadRequest(
"Expo Notifications sending".to_string(),
));
}
Ok(())
}
|