#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
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::app_bsky::feed::postgate;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct DisableRule<S: BosStr = DefaultStr> {
#[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",
rename = "app.bsky.feed.postgate",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Postgate<S: BosStr = DefaultStr> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub detached_embedding_uris: Option<Vec<AtUri<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub embedding_rules: Option<Vec<postgate::DisableRule<S>>>,
pub post: AtUri<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")]
pub struct PostgateGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Postgate<S>,
}
impl<S: BosStr> Postgate<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, PostgateRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
impl<S: BosStr> LexiconSchema for DisableRule<S> {
fn nsid() -> &'static str {
"app.bsky.feed.postgate"
}
fn def_name() -> &'static str {
"disableRule"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_bsky_feed_postgate()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PostgateRecord;
impl XrpcResp for PostgateRecord {
const NSID: &'static str = "app.bsky.feed.postgate";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = PostgateGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<PostgateGetRecordOutput<S>> for Postgate<S> {
fn from(output: PostgateGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Postgate<S> {
const NSID: &'static str = "app.bsky.feed.postgate";
type Record = PostgateRecord;
}
impl Collection for PostgateRecord {
const NSID: &'static str = "app.bsky.feed.postgate";
type Record = PostgateRecord;
}
impl<S: BosStr> LexiconSchema for Postgate<S> {
fn nsid() -> &'static str {
"app.bsky.feed.postgate"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_bsky_feed_postgate()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.detached_embedding_uris {
#[allow(unused_comparisons)]
if value.len() > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("detached_embedding_uris"),
max: 50usize,
actual: value.len(),
});
}
}
if let Some(ref value) = self.embedding_rules {
#[allow(unused_comparisons)]
if value.len() > 5usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("embedding_rules"),
max: 5usize,
actual: value.len(),
});
}
}
Ok(())
}
}
fn lexicon_doc_app_bsky_feed_postgate() -> 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("app.bsky.feed.postgate"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("disableRule"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("Disables embedding of this post."),
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Record defining interaction rules for a post. The record key (rkey) of the postgate record must match the record key of the post, and that record must be in the same repository.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("post"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("detachedEmbeddingUris"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"List of AT-URIs embedding this post that the author has detached from.",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
max_length: Some(50usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("embeddingRules"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"List of rules defining who can embed this post. If value is an empty array or is undefined, no particular rules apply and anyone can embed.",
),
),
items: LexArrayItem::Union(LexRefUnion {
refs: vec![CowStr::new_static("#disableRule")],
..Default::default()
}),
max_length: Some(5usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("post"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Reference (AT-URI) to the post record."),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod postgate_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;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Post = Unset;
type CreatedAt = 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>;
type CreatedAt = St::CreatedAt;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type Post = St::Post;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct post(());
pub struct created_at(());
}
}
pub struct PostgateBuilder<S: BosStr, St: postgate_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<Vec<AtUri<S>>>,
Option<Vec<postgate::DisableRule<S>>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Postgate<S> {
pub fn new() -> PostgateBuilder<S, postgate_state::Empty> {
PostgateBuilder::new()
}
}
impl<S: BosStr> PostgateBuilder<S, postgate_state::Empty> {
pub fn new() -> Self {
PostgateBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PostgateBuilder<S, St>
where
St: postgate_state::State,
St::CreatedAt: postgate_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> PostgateBuilder<S, postgate_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
PostgateBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: postgate_state::State> PostgateBuilder<S, St> {
pub fn detached_embedding_uris(
mut self,
value: impl Into<Option<Vec<AtUri<S>>>>,
) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_detached_embedding_uris(
mut self,
value: Option<Vec<AtUri<S>>>,
) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: postgate_state::State> PostgateBuilder<S, St> {
pub fn embedding_rules(
mut self,
value: impl Into<Option<Vec<postgate::DisableRule<S>>>>,
) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_embedding_rules(
mut self,
value: Option<Vec<postgate::DisableRule<S>>>,
) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> PostgateBuilder<S, St>
where
St: postgate_state::State,
St::Post: postgate_state::IsUnset,
{
pub fn post(
mut self,
value: impl Into<AtUri<S>>,
) -> PostgateBuilder<S, postgate_state::SetPost<St>> {
self._fields.3 = Option::Some(value.into());
PostgateBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PostgateBuilder<S, St>
where
St: postgate_state::State,
St::Post: postgate_state::IsSet,
St::CreatedAt: postgate_state::IsSet,
{
pub fn build(self) -> Postgate<S> {
Postgate {
created_at: self._fields.0.unwrap(),
detached_embedding_uris: self._fields.1,
embedding_rules: self._fields.2,
post: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Postgate<S> {
Postgate {
created_at: self._fields.0.unwrap(),
detached_embedding_uris: self._fields.1,
embedding_rules: self._fields.2,
post: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}