use super::{Keys, PushSubscription};
use crate::{core::get::GetObject, DataType, Get, Set};
use base64::{engine::general_purpose::URL_SAFE, Engine};
impl PushSubscription<Get> {
pub fn id(&self) -> Option<&str> {
self.id.as_deref()
}
pub fn take_id(&mut self) -> String {
self.id.take().unwrap_or_default()
}
pub fn device_client_id(&self) -> Option<&str> {
self.device_client_id.as_deref()
}
pub fn url(&self) -> Option<&str> {
self.url.as_deref()
}
pub fn keys(&self) -> Option<&Keys> {
self.keys.as_ref()
}
pub fn verification_code(&self) -> Option<&str> {
self.verification_code.as_deref()
}
pub fn expires(&self) -> Option<i64> {
self.expires.map(|v| v.timestamp())
}
pub fn types(&self) -> Option<&[DataType]> {
self.types.as_deref()
}
}
impl Keys {
pub fn p256dh(&self) -> Option<Vec<u8>> {
URL_SAFE.decode(&self.p256dh).ok()
}
pub fn auth(&self) -> Option<Vec<u8>> {
URL_SAFE.decode(&self.auth).ok()
}
}
impl GetObject for PushSubscription<Set> {
type GetArguments = ();
}
impl GetObject for PushSubscription<Get> {
type GetArguments = ();
}