jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: place.stream.moderation.updateLivestream
//
// 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;
use jacquard_common::types::string::{Did, AtUri, Cid};
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct UpdateLivestream<'a> {
    ///The AT-URI of the livestream record to update.
    #[serde(borrow)]
    pub livestream_uri: AtUri<'a>,
    ///The DID of the streamer.
    #[serde(borrow)]
    pub streamer: Did<'a>,
    ///New title for the livestream.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub title: Option<CowStr<'a>>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct UpdateLivestreamOutput<'a> {
    ///The CID of the updated livestream record.
    #[serde(borrow)]
    pub cid: Cid<'a>,
    ///The AT-URI of the updated livestream record.
    #[serde(borrow)]
    pub uri: AtUri<'a>,
}


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

#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum UpdateLivestreamError<'a> {
    /// The request lacks valid authentication credentials.
    #[serde(rename = "Unauthorized")]
    Unauthorized(Option<CowStr<'a>>),
    /// The caller does not have permission to update livestream metadata for this streamer.
    #[serde(rename = "Forbidden")]
    Forbidden(Option<CowStr<'a>>),
    /// The streamer's OAuth session could not be found or is invalid.
    #[serde(rename = "SessionNotFound")]
    SessionNotFound(Option<CowStr<'a>>),
    /// The specified livestream record does not exist.
    #[serde(rename = "RecordNotFound")]
    RecordNotFound(Option<CowStr<'a>>),
}

impl core::fmt::Display for UpdateLivestreamError<'_> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::Unauthorized(msg) => {
                write!(f, "Unauthorized")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Forbidden(msg) => {
                write!(f, "Forbidden")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::SessionNotFound(msg) => {
                write!(f, "SessionNotFound")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::RecordNotFound(msg) => {
                write!(f, "RecordNotFound")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
        }
    }
}

/// Response type for place.stream.moderation.updateLivestream
pub struct UpdateLivestreamResponse;
impl jacquard_common::xrpc::XrpcResp for UpdateLivestreamResponse {
    const NSID: &'static str = "place.stream.moderation.updateLivestream";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = UpdateLivestreamOutput<'de>;
    type Err<'de> = UpdateLivestreamError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for UpdateLivestream<'a> {
    const NSID: &'static str = "place.stream.moderation.updateLivestream";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = UpdateLivestreamResponse;
}

/// Endpoint type for place.stream.moderation.updateLivestream
pub struct UpdateLivestreamRequest;
impl jacquard_common::xrpc::XrpcEndpoint for UpdateLivestreamRequest {
    const PATH: &'static str = "/xrpc/place.stream.moderation.updateLivestream";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = UpdateLivestream<'de>;
    type Response = UpdateLivestreamResponse;
}

pub mod update_livestream_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 Streamer;
        type LivestreamUri;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Streamer = Unset;
        type LivestreamUri = Unset;
    }
    ///State transition - sets the `streamer` field to Set
    pub struct SetStreamer<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetStreamer<S> {}
    impl<S: State> State for SetStreamer<S> {
        type Streamer = Set<members::streamer>;
        type LivestreamUri = S::LivestreamUri;
    }
    ///State transition - sets the `livestream_uri` field to Set
    pub struct SetLivestreamUri<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetLivestreamUri<S> {}
    impl<S: State> State for SetLivestreamUri<S> {
        type Streamer = S::Streamer;
        type LivestreamUri = Set<members::livestream_uri>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `streamer` field
        pub struct streamer(());
        ///Marker type for the `livestream_uri` field
        pub struct livestream_uri(());
    }
}

/// Builder for constructing an instance of this type
pub struct UpdateLivestreamBuilder<'a, S: update_livestream_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<AtUri<'a>>, Option<Did<'a>>, Option<CowStr<'a>>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> UpdateLivestream<'a> {
    /// Create a new builder for this type
    pub fn new() -> UpdateLivestreamBuilder<'a, update_livestream_state::Empty> {
        UpdateLivestreamBuilder::new()
    }
}

impl<'a> UpdateLivestreamBuilder<'a, update_livestream_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        UpdateLivestreamBuilder {
            _state: PhantomData,
            _fields: (None, None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> UpdateLivestreamBuilder<'a, S>
where
    S: update_livestream_state::State,
    S::LivestreamUri: update_livestream_state::IsUnset,
{
    /// Set the `livestreamUri` field (required)
    pub fn livestream_uri(
        mut self,
        value: impl Into<AtUri<'a>>,
    ) -> UpdateLivestreamBuilder<'a, update_livestream_state::SetLivestreamUri<S>> {
        self._fields.0 = Option::Some(value.into());
        UpdateLivestreamBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> UpdateLivestreamBuilder<'a, S>
where
    S: update_livestream_state::State,
    S::Streamer: update_livestream_state::IsUnset,
{
    /// Set the `streamer` field (required)
    pub fn streamer(
        mut self,
        value: impl Into<Did<'a>>,
    ) -> UpdateLivestreamBuilder<'a, update_livestream_state::SetStreamer<S>> {
        self._fields.1 = Option::Some(value.into());
        UpdateLivestreamBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: update_livestream_state::State> UpdateLivestreamBuilder<'a, S> {
    /// Set the `title` field (optional)
    pub fn title(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `title` field to an Option value (optional)
    pub fn maybe_title(mut self, value: Option<CowStr<'a>>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<'a, S> UpdateLivestreamBuilder<'a, S>
where
    S: update_livestream_state::State,
    S::Streamer: update_livestream_state::IsSet,
    S::LivestreamUri: update_livestream_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> UpdateLivestream<'a> {
        UpdateLivestream {
            livestream_uri: self._fields.0.unwrap(),
            streamer: self._fields.1.unwrap(),
            title: self._fields.2,
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> UpdateLivestream<'a> {
        UpdateLivestream {
            livestream_uri: self._fields.0.unwrap(),
            streamer: self._fields.1.unwrap(),
            title: self._fields.2,
            extra_data: Some(extra_data),
        }
    }
}