#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct RegisterPush<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub age_restricted: Option<bool>,
pub app_id: S,
pub platform: RegisterPushPlatform<S>,
pub service_did: Did<S>,
pub token: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum RegisterPushPlatform<S: BosStr = DefaultStr> {
Ios,
Android,
Web,
Other(S),
}
impl<S: BosStr> RegisterPushPlatform<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Ios => "ios",
Self::Android => "android",
Self::Web => "web",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"ios" => Self::Ios,
"android" => Self::Android,
"web" => Self::Web,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for RegisterPushPlatform<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for RegisterPushPlatform<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for RegisterPushPlatform<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for RegisterPushPlatform<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for RegisterPushPlatform<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for RegisterPushPlatform<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = RegisterPushPlatform<S::Output>;
fn into_static(self) -> Self::Output {
match self {
RegisterPushPlatform::Ios => RegisterPushPlatform::Ios,
RegisterPushPlatform::Android => RegisterPushPlatform::Android,
RegisterPushPlatform::Web => RegisterPushPlatform::Web,
RegisterPushPlatform::Other(v) => {
RegisterPushPlatform::Other(v.into_static())
}
}
}
}
pub struct RegisterPushResponse;
impl jacquard_common::xrpc::XrpcResp for RegisterPushResponse {
const NSID: &'static str = "app.bsky.notification.registerPush";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ();
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for RegisterPush<S> {
const NSID: &'static str = "app.bsky.notification.registerPush";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = RegisterPushResponse;
}
pub struct RegisterPushRequest;
impl jacquard_common::xrpc::XrpcEndpoint for RegisterPushRequest {
const PATH: &'static str = "/xrpc/app.bsky.notification.registerPush";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = RegisterPush<S>;
type Response = RegisterPushResponse;
}
pub mod register_push_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Platform;
type Token;
type AppId;
type ServiceDid;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Platform = Unset;
type Token = Unset;
type AppId = Unset;
type ServiceDid = Unset;
}
pub struct SetPlatform<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetPlatform<St> {}
impl<St: State> State for SetPlatform<St> {
type Platform = Set<members::platform>;
type Token = St::Token;
type AppId = St::AppId;
type ServiceDid = St::ServiceDid;
}
pub struct SetToken<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetToken<St> {}
impl<St: State> State for SetToken<St> {
type Platform = St::Platform;
type Token = Set<members::token>;
type AppId = St::AppId;
type ServiceDid = St::ServiceDid;
}
pub struct SetAppId<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAppId<St> {}
impl<St: State> State for SetAppId<St> {
type Platform = St::Platform;
type Token = St::Token;
type AppId = Set<members::app_id>;
type ServiceDid = St::ServiceDid;
}
pub struct SetServiceDid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetServiceDid<St> {}
impl<St: State> State for SetServiceDid<St> {
type Platform = St::Platform;
type Token = St::Token;
type AppId = St::AppId;
type ServiceDid = Set<members::service_did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct platform(());
pub struct token(());
pub struct app_id(());
pub struct service_did(());
}
}
pub struct RegisterPushBuilder<S: BosStr, St: register_push_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<bool>,
Option<S>,
Option<RegisterPushPlatform<S>>,
Option<Did<S>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> RegisterPush<S> {
pub fn new() -> RegisterPushBuilder<S, register_push_state::Empty> {
RegisterPushBuilder::new()
}
}
impl<S: BosStr> RegisterPushBuilder<S, register_push_state::Empty> {
pub fn new() -> Self {
RegisterPushBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: register_push_state::State> RegisterPushBuilder<S, St> {
pub fn age_restricted(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_age_restricted(mut self, value: Option<bool>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> RegisterPushBuilder<S, St>
where
St: register_push_state::State,
St::AppId: register_push_state::IsUnset,
{
pub fn app_id(
mut self,
value: impl Into<S>,
) -> RegisterPushBuilder<S, register_push_state::SetAppId<St>> {
self._fields.1 = Option::Some(value.into());
RegisterPushBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RegisterPushBuilder<S, St>
where
St: register_push_state::State,
St::Platform: register_push_state::IsUnset,
{
pub fn platform(
mut self,
value: impl Into<RegisterPushPlatform<S>>,
) -> RegisterPushBuilder<S, register_push_state::SetPlatform<St>> {
self._fields.2 = Option::Some(value.into());
RegisterPushBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RegisterPushBuilder<S, St>
where
St: register_push_state::State,
St::ServiceDid: register_push_state::IsUnset,
{
pub fn service_did(
mut self,
value: impl Into<Did<S>>,
) -> RegisterPushBuilder<S, register_push_state::SetServiceDid<St>> {
self._fields.3 = Option::Some(value.into());
RegisterPushBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RegisterPushBuilder<S, St>
where
St: register_push_state::State,
St::Token: register_push_state::IsUnset,
{
pub fn token(
mut self,
value: impl Into<S>,
) -> RegisterPushBuilder<S, register_push_state::SetToken<St>> {
self._fields.4 = Option::Some(value.into());
RegisterPushBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RegisterPushBuilder<S, St>
where
St: register_push_state::State,
St::Platform: register_push_state::IsSet,
St::Token: register_push_state::IsSet,
St::AppId: register_push_state::IsSet,
St::ServiceDid: register_push_state::IsSet,
{
pub fn build(self) -> RegisterPush<S> {
RegisterPush {
age_restricted: self._fields.0,
app_id: self._fields.1.unwrap(),
platform: self._fields.2.unwrap(),
service_did: self._fields.3.unwrap(),
token: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> RegisterPush<S> {
RegisterPush {
age_restricted: self._fields.0,
app_id: self._fields.1.unwrap(),
platform: self._fields.2.unwrap(),
service_did: self._fields.3.unwrap(),
token: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}