#[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> {
#[serde(borrow)]
pub livestream_uri: AtUri<'a>,
#[serde(borrow)]
pub streamer: Did<'a>,
#[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> {
#[serde(borrow)]
pub cid: Cid<'a>,
#[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> {
#[serde(rename = "Unauthorized")]
Unauthorized(Option<CowStr<'a>>),
#[serde(rename = "Forbidden")]
Forbidden(Option<CowStr<'a>>),
#[serde(rename = "SessionNotFound")]
SessionNotFound(Option<CowStr<'a>>),
#[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),
}
}
}
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;
}
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 {}
}
pub trait State: sealed::Sealed {
type Streamer;
type LivestreamUri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Streamer = Unset;
type LivestreamUri = Unset;
}
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;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct streamer(());
pub struct livestream_uri(());
}
}
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> {
pub fn new() -> UpdateLivestreamBuilder<'a, update_livestream_state::Empty> {
UpdateLivestreamBuilder::new()
}
}
impl<'a> UpdateLivestreamBuilder<'a, update_livestream_state::Empty> {
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,
{
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,
{
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> {
pub fn title(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
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,
{
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(),
}
}
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),
}
}
}