use failure::Fail;
use reqwest::StatusCode;
use serde::{Deserialize, Serialize};
use serde_repr::{Deserialize_repr, Serialize_repr};
use uuid::Uuid;
pub static APN_URL_PRODUCTION: &'static str = "https://api.push.apple.com";
pub static APN_URL_DEV: &'static str = "https://api.sandbox.push.apple.com";
#[derive(Serialize_repr, Deserialize_repr, PartialEq, Eq, Clone, Copy, Debug)]
#[repr(u8)]
pub enum Priority {
Low = 1, Middle = 5,
High = 10, }
impl Priority {
pub fn to_uint(self) -> u8 {
self as u8
}
}
#[derive(Fail, Debug)]
#[fail(display = "CollapseId too long (must be at most 64 bytes)")]
pub struct CollapseIdTooLongError;
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct CollapseId(String);
impl CollapseId {
pub fn new(value: String) -> Result<Self, CollapseIdTooLongError> {
if value.len() > 64 {
Err(CollapseIdTooLongError)
} else {
Ok(CollapseId(value))
}
}
pub fn as_str(&self) -> &str {
&self.0
}
}
#[derive(Deserialize, Serialize, Debug, Clone)]
#[serde(rename_all = "lowercase")]
pub enum ApnsPushType {
Alert,
Background,
Voip,
Location,
Complication,
Fileprovider,
Mdm,
}
impl ApnsPushType {
pub fn as_str(&self) -> &'static str {
match self {
ApnsPushType::Alert => "alert",
ApnsPushType::Background => "background",
ApnsPushType::Voip => "voip",
ApnsPushType::Location => "location",
ApnsPushType::Complication => "complication",
ApnsPushType::Fileprovider => "fileprovider",
ApnsPushType::Mdm => "mdm",
}
}
}
#[derive(Serialize, Deserialize, Default, Clone, Debug)]
pub struct AlertPayload {
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub body: Option<String>,
#[serde(rename = "title-loc-key", skip_serializing_if = "Option::is_none")]
pub title_loc_key: Option<String>,
#[serde(rename = "title-loc-args", skip_serializing_if = "Option::is_none")]
pub title_loc_args: Option<Vec<String>>,
#[serde(rename = "action-loc-key", skip_serializing_if = "Option::is_none")]
pub action_loc_key: Option<String>,
#[serde(rename = "loc-key", skip_serializing_if = "Option::is_none")]
pub loc_key: Option<String>,
#[serde(rename = "loc-args", skip_serializing_if = "Option::is_none")]
pub loc_args: Option<Vec<String>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub loc_image: Option<String>,
}
impl AlertPayload {
fn new(title: Option<String>, body: Option<String>) -> Self {
AlertPayload {
title: title,
body: body,
title_loc_key: None,
title_loc_args: None,
action_loc_key: None,
loc_key: None,
loc_args: None,
loc_image: None,
}
}
}
#[derive(Serialize, Deserialize, Clone, Debug)]
#[serde(untagged)]
pub enum Alert {
Simple(String),
Payload(AlertPayload),
}
#[derive(Serialize, Deserialize, Default, Clone, Debug)]
pub struct Payload {
#[serde(skip_serializing_if = "Option::is_none")]
pub alert: Option<Alert>,
#[serde(skip_serializing_if = "Option::is_none")]
pub badge: Option<u32>,
#[serde(skip_serializing_if = "Option::is_none")]
pub sound: Option<String>,
#[serde(rename = "content-available", skip_serializing_if = "Option::is_none")]
pub content_available: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub category: Option<String>,
#[serde(rename = "thread-id", skip_serializing_if = "Option::is_none")]
pub thread_id: Option<String>,
}
#[derive(Serialize, Deserialize, Clone, Debug)]
pub(crate) struct ApnsRequest {
pub aps: Payload,
}
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct Notification {
pub topic: String,
pub device_token: String,
pub payload: Payload,
pub id: Option<Uuid>,
pub expiration: Option<u64>,
pub priority: Option<Priority>,
pub collapse_id: Option<CollapseId>,
pub apns_push_type: Option<ApnsPushType>,
}
impl Notification {
pub fn new(topic: String, device_token: String, payload: Payload) -> Self {
Notification {
topic,
device_token,
payload,
id: None,
expiration: None,
priority: None,
collapse_id: None,
apns_push_type: None,
}
}
}
pub struct NotificationBuilder {
notification: Notification,
}
impl NotificationBuilder {
pub fn new(topic: String, device_id: String) -> Self {
NotificationBuilder {
notification: Notification::new(topic, device_id, Payload::default()),
}
}
pub fn push_type(mut self, push_type: ApnsPushType) -> Self {
self.notification.apns_push_type = push_type.into();
self
}
pub fn payload(mut self, payload: Payload) -> Self {
self.notification.payload = payload;
self
}
pub fn alert<S: Into<String>>(mut self, alert: S) -> Self {
self.notification.payload.alert = Some(Alert::Simple(alert.into()));
self
}
pub fn title<S: Into<String>>(mut self, title: S) -> Self {
let title = title.into();
let payload = match self.notification.payload.alert.take() {
None => AlertPayload::new(Some(title), None),
Some(Alert::Simple(_)) => AlertPayload::new(Some(title), None),
Some(Alert::Payload(mut payload)) => {
payload.title = Some(title);
payload
}
};
self.notification.payload.alert = Some(Alert::Payload(payload));
self
}
pub fn body<S: Into<String>>(mut self, body: S) -> Self {
let body = body.into();
let payload = match self.notification.payload.alert.take() {
None => AlertPayload::new(None, Some(body)),
Some(Alert::Simple(title)) => AlertPayload::new(Some(title), Some(body)),
Some(Alert::Payload(mut payload)) => {
payload.body = Some(body);
payload
}
};
self.notification.payload.alert = Some(Alert::Payload(payload));
self
}
pub fn badge(mut self, number: u32) -> Self {
self.notification.payload.badge = Some(number);
self
}
pub fn sound<S: Into<String>>(mut self, sound: S) -> Self {
self.notification.payload.sound = Some(sound.into());
self
}
pub fn content_available(mut self) -> Self {
self.notification.payload.content_available = Some(true);
self
}
pub fn category(mut self, category: String) -> Self {
self.notification.payload.category = Some(category);
self
}
pub fn thread_id(mut self, thread_id: String) -> Self {
self.notification.payload.thread_id = Some(thread_id);
self
}
pub fn id(mut self, id: Uuid) -> Self {
self.notification.id = Some(id);
self
}
pub fn expiration(mut self, expiration: u64) -> Self {
self.notification.expiration = Some(expiration);
self
}
pub fn priority(mut self, priority: Priority) -> Self {
self.notification.priority = Some(priority);
self
}
pub fn collapse_id(mut self, id: CollapseId) -> Self {
self.notification.collapse_id = Some(id);
self
}
pub fn build(self) -> Notification {
self.notification
}
}
#[derive(Debug, Deserialize)]
pub struct Response {
pub reason: String,
pub timestamp: Option<i64>,
pub apns_id: String,
#[serde(skip)]
pub(crate) status_code: StatusCode,
}