#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::string::{Did, Cid, UriValue};
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::place_stream::livestream::Livestream;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StartLivestream<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
pub create_bluesky_post: Option<bool>,
#[serde(borrow)]
pub livestream: Livestream<'a>,
#[serde(borrow)]
pub streamer: Did<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StartLivestreamOutput<'a> {
#[serde(borrow)]
pub cid: Cid<'a>,
#[serde(borrow)]
pub uri: UriValue<'a>,
}
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<'de> = StartLivestreamOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for StartLivestream<'a> {
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<'de> = StartLivestream<'de>;
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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetLivestream<S> {}
impl<S: State> State for SetLivestream<S> {
type Livestream = Set<members::livestream>;
type Streamer = S::Streamer;
}
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 Livestream = S::Livestream;
type Streamer = Set<members::streamer>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct livestream(());
pub struct streamer(());
}
}
pub struct StartLivestreamBuilder<'a, S: start_livestream_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<bool>, Option<Livestream<'a>>, Option<Did<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> StartLivestream<'a> {
pub fn new() -> StartLivestreamBuilder<'a, start_livestream_state::Empty> {
StartLivestreamBuilder::new()
}
}
impl<'a> StartLivestreamBuilder<'a, start_livestream_state::Empty> {
pub fn new() -> Self {
StartLivestreamBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: start_livestream_state::State> StartLivestreamBuilder<'a, S> {
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<'a, S> StartLivestreamBuilder<'a, S>
where
S: start_livestream_state::State,
S::Livestream: start_livestream_state::IsUnset,
{
pub fn livestream(
mut self,
value: impl Into<Livestream<'a>>,
) -> StartLivestreamBuilder<'a, start_livestream_state::SetLivestream<S>> {
self._fields.1 = Option::Some(value.into());
StartLivestreamBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> StartLivestreamBuilder<'a, S>
where
S: start_livestream_state::State,
S::Streamer: start_livestream_state::IsUnset,
{
pub fn streamer(
mut self,
value: impl Into<Did<'a>>,
) -> StartLivestreamBuilder<'a, start_livestream_state::SetStreamer<S>> {
self._fields.2 = Option::Some(value.into());
StartLivestreamBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> StartLivestreamBuilder<'a, S>
where
S: start_livestream_state::State,
S::Livestream: start_livestream_state::IsSet,
S::Streamer: start_livestream_state::IsSet,
{
pub fn build(self) -> StartLivestream<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> StartLivestream<'a> {
StartLivestream {
create_bluesky_post: self._fields.0,
livestream: self._fields.1.unwrap(),
streamer: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}