#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
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::fyi_frontpage::feed::get_feed_skeleton;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetFeedSkeleton<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub feed: AtUri<S>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetFeedSkeletonOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub feed: Vec<get_feed_skeleton::SkeletonFeedPost<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,
thiserror::Error,
miette::Diagnostic
)]
#[serde(tag = "error", content = "message")]
pub enum GetFeedSkeletonError {
#[serde(rename = "UnknownFeed")]
UnknownFeed(Option<SmolStr>),
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for GetFeedSkeletonError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::UnknownFeed(msg) => {
write!(f, "UnknownFeed")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct SkeletonFeedPost<S: BosStr = DefaultStr> {
pub post: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetFeedSkeletonResponse;
impl jacquard_common::xrpc::XrpcResp for GetFeedSkeletonResponse {
const NSID: &'static str = "fyi.frontpage.feed.getFeedSkeleton";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetFeedSkeletonOutput<S>;
type Err = GetFeedSkeletonError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetFeedSkeleton<S> {
const NSID: &'static str = "fyi.frontpage.feed.getFeedSkeleton";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetFeedSkeletonResponse;
}
pub struct GetFeedSkeletonRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetFeedSkeletonRequest {
const PATH: &'static str = "/xrpc/fyi.frontpage.feed.getFeedSkeleton";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetFeedSkeleton<S>;
type Response = GetFeedSkeletonResponse;
}
impl<S: BosStr> LexiconSchema for SkeletonFeedPost<S> {
fn nsid() -> &'static str {
"fyi.frontpage.feed.getFeedSkeleton"
}
fn def_name() -> &'static str {
"skeletonFeedPost"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_fyi_frontpage_feed_getFeedSkeleton()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
pub mod get_feed_skeleton_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 Feed;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Feed = Unset;
}
pub struct SetFeed<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetFeed<St> {}
impl<St: State> State for SetFeed<St> {
type Feed = Set<members::feed>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct feed(());
}
}
pub struct GetFeedSkeletonBuilder<
St: get_feed_skeleton_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<AtUri<S>>, Option<i64>),
_type: PhantomData<fn() -> S>,
}
impl GetFeedSkeleton<DefaultStr> {
pub fn new() -> GetFeedSkeletonBuilder<get_feed_skeleton_state::Empty, DefaultStr> {
GetFeedSkeletonBuilder::new()
}
}
impl<S: BosStr> GetFeedSkeleton<S> {
pub fn builder() -> GetFeedSkeletonBuilder<get_feed_skeleton_state::Empty, S> {
GetFeedSkeletonBuilder::builder()
}
}
impl GetFeedSkeletonBuilder<get_feed_skeleton_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetFeedSkeletonBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetFeedSkeletonBuilder<get_feed_skeleton_state::Empty, S> {
pub fn builder() -> Self {
GetFeedSkeletonBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<St: get_feed_skeleton_state::State, S: BosStr> GetFeedSkeletonBuilder<St, S> {
pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<St, S: BosStr> GetFeedSkeletonBuilder<St, S>
where
St: get_feed_skeleton_state::State,
St::Feed: get_feed_skeleton_state::IsUnset,
{
pub fn feed(
mut self,
value: impl Into<AtUri<S>>,
) -> GetFeedSkeletonBuilder<get_feed_skeleton_state::SetFeed<St>, S> {
self._fields.1 = Option::Some(value.into());
GetFeedSkeletonBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: get_feed_skeleton_state::State, S: BosStr> GetFeedSkeletonBuilder<St, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> GetFeedSkeletonBuilder<St, S>
where
St: get_feed_skeleton_state::State,
St::Feed: get_feed_skeleton_state::IsSet,
{
pub fn build(self) -> GetFeedSkeleton<S> {
GetFeedSkeleton {
cursor: self._fields.0,
feed: self._fields.1.unwrap(),
limit: self._fields.2,
}
}
}
pub mod skeleton_feed_post_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 Post;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Post = Unset;
}
pub struct SetPost<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetPost<St> {}
impl<St: State> State for SetPost<St> {
type Post = Set<members::post>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct post(());
}
}
pub struct SkeletonFeedPostBuilder<
St: skeleton_feed_post_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtUri<S>>,),
_type: PhantomData<fn() -> S>,
}
impl SkeletonFeedPost<DefaultStr> {
pub fn new() -> SkeletonFeedPostBuilder<
skeleton_feed_post_state::Empty,
DefaultStr,
> {
SkeletonFeedPostBuilder::new()
}
}
impl<S: BosStr> SkeletonFeedPost<S> {
pub fn builder() -> SkeletonFeedPostBuilder<skeleton_feed_post_state::Empty, S> {
SkeletonFeedPostBuilder::builder()
}
}
impl SkeletonFeedPostBuilder<skeleton_feed_post_state::Empty, DefaultStr> {
pub fn new() -> Self {
SkeletonFeedPostBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr> SkeletonFeedPostBuilder<skeleton_feed_post_state::Empty, S> {
pub fn builder() -> Self {
SkeletonFeedPostBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> SkeletonFeedPostBuilder<St, S>
where
St: skeleton_feed_post_state::State,
St::Post: skeleton_feed_post_state::IsUnset,
{
pub fn post(
mut self,
value: impl Into<AtUri<S>>,
) -> SkeletonFeedPostBuilder<skeleton_feed_post_state::SetPost<St>, S> {
self._fields.0 = Option::Some(value.into());
SkeletonFeedPostBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> SkeletonFeedPostBuilder<St, S>
where
St: skeleton_feed_post_state::State,
St::Post: skeleton_feed_post_state::IsSet,
{
pub fn build(self) -> SkeletonFeedPost<S> {
SkeletonFeedPost {
post: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> SkeletonFeedPost<S> {
SkeletonFeedPost {
post: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_fyi_frontpage_feed_getFeedSkeleton() -> 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("fyi.frontpage.feed.getFeedSkeleton"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcQuery(LexXrpcQuery {
parameters: Some(
LexXrpcQueryParameter::Params(LexXrpcParameters {
required: Some(vec![SmolStr::new_static("feed")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cursor"),
LexXrpcParametersProperty::String(LexString {
description: Some(CowStr::new_static("Pagination cursor.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("feed"),
LexXrpcParametersProperty::String(LexString {
description: Some(
CowStr::new_static("AT URI of the feed generator record."),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("limit"),
LexXrpcParametersProperty::Integer(LexInteger {
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("skeletonFeedPost"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("post")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("post"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("AT URI of the post."),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}