jacquard-api 0.12.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: chat.bsky.group.createGroup
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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, open_union};
use serde::{Serialize, Deserialize};
use crate::chat_bsky::convo::ConvoView;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreateGroup<S: BosStr = DefaultStr> {
    pub members: Vec<Did<S>>,
    pub name: S,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}


#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CreateGroupOutput<S: BosStr = DefaultStr> {
    pub convo: ConvoView<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}


#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    thiserror::Error,
    miette::Diagnostic
)]

#[serde(tag = "error", content = "message")]
pub enum CreateGroupError {
    #[serde(rename = "AccountSuspended")]
    AccountSuspended(Option<SmolStr>),
    #[serde(rename = "BlockedActor")]
    BlockedActor(Option<SmolStr>),
    #[serde(rename = "BlockedSubject")]
    BlockedSubject(Option<SmolStr>),
    #[serde(rename = "NewAccountCannotCreateGroup")]
    NewAccountCannotCreateGroup(Option<SmolStr>),
    #[serde(rename = "NotFollowedBySender")]
    NotFollowedBySender(Option<SmolStr>),
    #[serde(rename = "RecipientNotFound")]
    RecipientNotFound(Option<SmolStr>),
    #[serde(rename = "UserForbidsGroups")]
    UserForbidsGroups(Option<SmolStr>),
    /// Catch-all for unknown error codes.
    #[serde(untagged)]
    Other { error: SmolStr, message: Option<SmolStr> },
}

impl core::fmt::Display for CreateGroupError {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::AccountSuspended(msg) => {
                write!(f, "AccountSuspended")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::BlockedActor(msg) => {
                write!(f, "BlockedActor")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::BlockedSubject(msg) => {
                write!(f, "BlockedSubject")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::NewAccountCannotCreateGroup(msg) => {
                write!(f, "NewAccountCannotCreateGroup")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::NotFollowedBySender(msg) => {
                write!(f, "NotFollowedBySender")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::RecipientNotFound(msg) => {
                write!(f, "RecipientNotFound")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::UserForbidsGroups(msg) => {
                write!(f, "UserForbidsGroups")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Other { error, message } => {
                write!(f, "{}", error)?;
                if let Some(msg) = message {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
        }
    }
}

/** Response marker for the `chat.bsky.group.createGroup` procedure.

Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output<S>`, which is `CreateGroupOutput<S>` for this endpoint.*/
pub struct CreateGroupResponse;
impl jacquard_common::xrpc::XrpcResp for CreateGroupResponse {
    const NSID: &'static str = "chat.bsky.group.createGroup";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = CreateGroupOutput<S>;
    type Err = CreateGroupError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for CreateGroup<S> {
    const NSID: &'static str = "chat.bsky.group.createGroup";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = CreateGroupResponse;
}

/** Endpoint marker for the `chat.bsky.group.createGroup` procedure.

Path: `/xrpc/chat.bsky.group.createGroup`. The request payload type is `CreateGroup<S>`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/
pub struct CreateGroupRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateGroupRequest {
    const PATH: &'static str = "/xrpc/chat.bsky.group.createGroup";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<S: BosStr> = CreateGroup<S>;
    type Response = CreateGroupResponse;
}

pub mod create_group_state {

    pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type Members;
        type Name;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Members = Unset;
        type Name = Unset;
    }
    ///State transition - sets the `members` field to Set
    pub struct SetMembers<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetMembers<St> {}
    impl<St: State> State for SetMembers<St> {
        type Members = Set<members::members>;
        type Name = St::Name;
    }
    ///State transition - sets the `name` field to Set
    pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetName<St> {}
    impl<St: State> State for SetName<St> {
        type Members = St::Members;
        type Name = Set<members::name>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `members` field
        pub struct members(());
        ///Marker type for the `name` field
        pub struct name(());
    }
}

/// Builder for constructing an instance of this type.
pub struct CreateGroupBuilder<St: create_group_state::State, S: BosStr = DefaultStr> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<Vec<Did<S>>>, Option<S>),
    _type: PhantomData<fn() -> S>,
}

impl CreateGroup<DefaultStr> {
    /// Create a new builder for this type, using the default string type (DefaultStr = SmolStr) if needed
    pub fn new() -> CreateGroupBuilder<create_group_state::Empty, DefaultStr> {
        CreateGroupBuilder::new()
    }
}

impl<S: BosStr> CreateGroup<S> {
    /// Create a new builder for this type
    pub fn builder() -> CreateGroupBuilder<create_group_state::Empty, S> {
        CreateGroupBuilder::builder()
    }
}

impl CreateGroupBuilder<create_group_state::Empty, DefaultStr> {
    /// Create a new builder with all fields unset, using the default string type, if needed
    pub fn new() -> Self {
        CreateGroupBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr> CreateGroupBuilder<create_group_state::Empty, S> {
    /// Create a new builder with all fields unset
    pub fn builder() -> Self {
        CreateGroupBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _type: PhantomData,
        }
    }
}

impl<St, S: BosStr> CreateGroupBuilder<St, S>
where
    St: create_group_state::State,
    St::Members: create_group_state::IsUnset,
{
    /// Set the `members` field (required)
    pub fn members(
        mut self,
        value: impl Into<Vec<Did<S>>>,
    ) -> CreateGroupBuilder<create_group_state::SetMembers<St>, S> {
        self._fields.0 = Option::Some(value.into());
        CreateGroupBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<St, S: BosStr> CreateGroupBuilder<St, S>
where
    St: create_group_state::State,
    St::Name: create_group_state::IsUnset,
{
    /// Set the `name` field (required)
    pub fn name(
        mut self,
        value: impl Into<S>,
    ) -> CreateGroupBuilder<create_group_state::SetName<St>, S> {
        self._fields.1 = Option::Some(value.into());
        CreateGroupBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<St, S: BosStr> CreateGroupBuilder<St, S>
where
    St: create_group_state::State,
    St::Members: create_group_state::IsSet,
    St::Name: create_group_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> CreateGroup<S> {
        CreateGroup {
            members: self._fields.0.unwrap(),
            name: self._fields.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<SmolStr, Data<S>>,
    ) -> CreateGroup<S> {
        CreateGroup {
            members: self._fields.0.unwrap(),
            name: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}