#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::string::Did;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::place_stream::live::get_recommendations;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct LivestreamRecommendation<'a> {
#[serde(borrow)]
pub did: Did<'a>,
#[serde(borrow)]
pub source: CowStr<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetRecommendations<'a> {
#[serde(borrow)]
pub user_did: Did<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetRecommendationsOutput<'a> {
#[serde(borrow)]
pub recommendations: Vec<get_recommendations::LivestreamRecommendation<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub user_did: Option<Did<'a>>,
}
impl<'a> LexiconSchema for LivestreamRecommendation<'a> {
fn nsid() -> &'static str {
"place.stream.live.getRecommendations"
}
fn def_name() -> &'static str {
"livestreamRecommendation"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_live_getRecommendations()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub struct GetRecommendationsResponse;
impl jacquard_common::xrpc::XrpcResp for GetRecommendationsResponse {
const NSID: &'static str = "place.stream.live.getRecommendations";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetRecommendationsOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetRecommendations<'a> {
const NSID: &'static str = "place.stream.live.getRecommendations";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetRecommendationsResponse;
}
pub struct GetRecommendationsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetRecommendationsRequest {
const PATH: &'static str = "/xrpc/place.stream.live.getRecommendations";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetRecommendations<'de>;
type Response = GetRecommendationsResponse;
}
pub mod livestream_recommendation_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 Did;
type Source;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Did = Unset;
type Source = Unset;
}
pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDid<S> {}
impl<S: State> State for SetDid<S> {
type Did = Set<members::did>;
type Source = S::Source;
}
pub struct SetSource<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSource<S> {}
impl<S: State> State for SetSource<S> {
type Did = S::Did;
type Source = Set<members::source>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct did(());
pub struct source(());
}
}
pub struct LivestreamRecommendationBuilder<
'a,
S: livestream_recommendation_state::State,
> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> LivestreamRecommendation<'a> {
pub fn new() -> LivestreamRecommendationBuilder<
'a,
livestream_recommendation_state::Empty,
> {
LivestreamRecommendationBuilder::new()
}
}
impl<'a> LivestreamRecommendationBuilder<'a, livestream_recommendation_state::Empty> {
pub fn new() -> Self {
LivestreamRecommendationBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> LivestreamRecommendationBuilder<'a, S>
where
S: livestream_recommendation_state::State,
S::Did: livestream_recommendation_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<'a>>,
) -> LivestreamRecommendationBuilder<
'a,
livestream_recommendation_state::SetDid<S>,
> {
self._fields.0 = Option::Some(value.into());
LivestreamRecommendationBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LivestreamRecommendationBuilder<'a, S>
where
S: livestream_recommendation_state::State,
S::Source: livestream_recommendation_state::IsUnset,
{
pub fn source(
mut self,
value: impl Into<CowStr<'a>>,
) -> LivestreamRecommendationBuilder<
'a,
livestream_recommendation_state::SetSource<S>,
> {
self._fields.1 = Option::Some(value.into());
LivestreamRecommendationBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LivestreamRecommendationBuilder<'a, S>
where
S: livestream_recommendation_state::State,
S::Did: livestream_recommendation_state::IsSet,
S::Source: livestream_recommendation_state::IsSet,
{
pub fn build(self) -> LivestreamRecommendation<'a> {
LivestreamRecommendation {
did: self._fields.0.unwrap(),
source: self._fields.1.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>,
>,
) -> LivestreamRecommendation<'a> {
LivestreamRecommendation {
did: self._fields.0.unwrap(),
source: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_live_getRecommendations() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("place.stream.live.getRecommendations"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("livestreamRecommendation"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("did"), SmolStr::new_static("source")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The DID of the recommended streamer"),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("source"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Source of the recommendation"),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcQuery(LexXrpcQuery {
parameters: Some(
LexXrpcQueryParameter::Params(LexXrpcParameters {
required: Some(vec![SmolStr::new_static("userDID")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("userDID"),
LexXrpcParametersProperty::String(LexString {
description: Some(
CowStr::new_static(
"The DID of the user whose recommendations to fetch",
),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod get_recommendations_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 UserDid;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type UserDid = Unset;
}
pub struct SetUserDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUserDid<S> {}
impl<S: State> State for SetUserDid<S> {
type UserDid = Set<members::user_did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct user_did(());
}
}
pub struct GetRecommendationsBuilder<'a, S: get_recommendations_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetRecommendations<'a> {
pub fn new() -> GetRecommendationsBuilder<'a, get_recommendations_state::Empty> {
GetRecommendationsBuilder::new()
}
}
impl<'a> GetRecommendationsBuilder<'a, get_recommendations_state::Empty> {
pub fn new() -> Self {
GetRecommendationsBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetRecommendationsBuilder<'a, S>
where
S: get_recommendations_state::State,
S::UserDid: get_recommendations_state::IsUnset,
{
pub fn user_did(
mut self,
value: impl Into<Did<'a>>,
) -> GetRecommendationsBuilder<'a, get_recommendations_state::SetUserDid<S>> {
self._fields.0 = Option::Some(value.into());
GetRecommendationsBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetRecommendationsBuilder<'a, S>
where
S: get_recommendations_state::State,
S::UserDid: get_recommendations_state::IsSet,
{
pub fn build(self) -> GetRecommendations<'a> {
GetRecommendations {
user_did: self._fields.0.unwrap(),
}
}
}