#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{Did, Cid, UriValue};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::place_stream::livestream::Livestream;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct StartLivestream<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub create_bluesky_post: Option<bool>,
pub livestream: Livestream<S>,
pub streamer: Did<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 StartLivestreamOutput<S: BosStr = DefaultStr> {
pub cid: Cid<S>,
pub uri: UriValue<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct StartLivestreamResponse;
impl jacquard_common::xrpc::XrpcResp for StartLivestreamResponse {
const NSID: &'static str = "place.stream.live.startLivestream";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = StartLivestreamOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for StartLivestream<S> {
const NSID: &'static str = "place.stream.live.startLivestream";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = StartLivestreamResponse;
}
pub struct StartLivestreamRequest;
impl jacquard_common::xrpc::XrpcEndpoint for StartLivestreamRequest {
const PATH: &'static str = "/xrpc/place.stream.live.startLivestream";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = StartLivestream<S>;
type Response = StartLivestreamResponse;
}
pub mod start_livestream_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 Livestream;
type Streamer;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Livestream = Unset;
type Streamer = Unset;
}
pub struct SetLivestream<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLivestream<St> {}
impl<St: State> State for SetLivestream<St> {
type Livestream = Set<members::livestream>;
type Streamer = St::Streamer;
}
pub struct SetStreamer<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStreamer<St> {}
impl<St: State> State for SetStreamer<St> {
type Livestream = St::Livestream;
type Streamer = Set<members::streamer>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct livestream(());
pub struct streamer(());
}
}
pub struct StartLivestreamBuilder<S: BosStr, St: start_livestream_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<bool>, Option<Livestream<S>>, Option<Did<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> StartLivestream<S> {
pub fn new() -> StartLivestreamBuilder<S, start_livestream_state::Empty> {
StartLivestreamBuilder::new()
}
}
impl<S: BosStr> StartLivestreamBuilder<S, start_livestream_state::Empty> {
pub fn new() -> Self {
StartLivestreamBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: start_livestream_state::State> StartLivestreamBuilder<S, St> {
pub fn create_bluesky_post(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_create_bluesky_post(mut self, value: Option<bool>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> StartLivestreamBuilder<S, St>
where
St: start_livestream_state::State,
St::Livestream: start_livestream_state::IsUnset,
{
pub fn livestream(
mut self,
value: impl Into<Livestream<S>>,
) -> StartLivestreamBuilder<S, start_livestream_state::SetLivestream<St>> {
self._fields.1 = Option::Some(value.into());
StartLivestreamBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StartLivestreamBuilder<S, St>
where
St: start_livestream_state::State,
St::Streamer: start_livestream_state::IsUnset,
{
pub fn streamer(
mut self,
value: impl Into<Did<S>>,
) -> StartLivestreamBuilder<S, start_livestream_state::SetStreamer<St>> {
self._fields.2 = Option::Some(value.into());
StartLivestreamBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StartLivestreamBuilder<S, St>
where
St: start_livestream_state::State,
St::Livestream: start_livestream_state::IsSet,
St::Streamer: start_livestream_state::IsSet,
{
pub fn build(self) -> StartLivestream<S> {
StartLivestream {
create_bluesky_post: self._fields.0,
livestream: self._fields.1.unwrap(),
streamer: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> StartLivestream<S> {
StartLivestream {
create_bluesky_post: self._fields.0,
livestream: self._fields.1.unwrap(),
streamer: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}