#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
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::net_anisota::graph::list_mute;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ContentTypes<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_content_types_posts")]
pub posts: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_content_types_quotes")]
pub quotes: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_content_types_replies")]
pub replies: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_content_types_reposts")]
pub reposts: Option<bool>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListMute<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub content_types: Option<list_mute::ContentTypes<'a>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub expires_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub reason: Option<CowStr<'a>>,
#[serde(borrow)]
pub subject: AtUri<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub target_feeds: Option<Vec<AtUri<'a>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListMuteGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: ListMute<'a>,
}
impl<'a> ListMute<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ListMuteRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
impl<'a> LexiconSchema for ContentTypes<'a> {
fn nsid() -> &'static str {
"net.anisota.graph.listMute"
}
fn def_name() -> &'static str {
"contentTypes"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_net_anisota_graph_listMute()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ListMuteRecord;
impl XrpcResp for ListMuteRecord {
const NSID: &'static str = "net.anisota.graph.listMute";
const ENCODING: &'static str = "application/json";
type Output<'de> = ListMuteGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ListMuteGetRecordOutput<'_>> for ListMute<'_> {
fn from(output: ListMuteGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for ListMute<'_> {
const NSID: &'static str = "net.anisota.graph.listMute";
type Record = ListMuteRecord;
}
impl Collection for ListMuteRecord {
const NSID: &'static str = "net.anisota.graph.listMute";
type Record = ListMuteRecord;
}
impl<'a> LexiconSchema for ListMute<'a> {
fn nsid() -> &'static str {
"net.anisota.graph.listMute"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_net_anisota_graph_listMute()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.reason {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 300usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("reason"),
max: 300usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.target_feeds {
#[allow(unused_comparisons)]
if value.len() > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("target_feeds"),
max: 50usize,
actual: value.len(),
});
}
}
Ok(())
}
}
fn _default_content_types_posts() -> Option<bool> {
Some(true)
}
fn _default_content_types_quotes() -> Option<bool> {
Some(true)
}
fn _default_content_types_replies() -> Option<bool> {
Some(true)
}
fn _default_content_types_reposts() -> Option<bool> {
Some(true)
}
impl Default for ContentTypes<'_> {
fn default() -> Self {
Self {
posts: Some(true),
quotes: Some(true),
replies: Some(true),
reposts: Some(true),
extra_data: Default::default(),
}
}
}
fn lexicon_doc_net_anisota_graph_listMute() -> 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("net.anisota.graph.listMute"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("contentTypes"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"Configuration for which types of content to mute",
),
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("posts"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("quotes"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("replies"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("reposts"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A record for muting content from all accounts on a list with fine-grained control over content types, duration, and feed targeting",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("subject"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("contentTypes"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#contentTypes"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When the mute was created"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("expiresAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"When this mute expires. If not set, mute is permanent",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("reason"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Optional reason for muting this list"),
),
max_length: Some(300usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI of the list to mute (app.bsky.graph.list record)",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("targetFeeds"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Specific feeds where this mute should apply. If empty, applies to all feeds",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
max_length: Some(50usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod list_mute_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 CreatedAt;
type Subject;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Subject = Unset;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type CreatedAt = Set<members::created_at>;
type Subject = S::Subject;
}
pub struct SetSubject<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSubject<S> {}
impl<S: State> State for SetSubject<S> {
type CreatedAt = S::CreatedAt;
type Subject = Set<members::subject>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct subject(());
}
}
pub struct ListMuteBuilder<'a, S: list_mute_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<list_mute::ContentTypes<'a>>,
Option<Datetime>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<AtUri<'a>>,
Option<Vec<AtUri<'a>>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ListMute<'a> {
pub fn new() -> ListMuteBuilder<'a, list_mute_state::Empty> {
ListMuteBuilder::new()
}
}
impl<'a> ListMuteBuilder<'a, list_mute_state::Empty> {
pub fn new() -> Self {
ListMuteBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_mute_state::State> ListMuteBuilder<'a, S> {
pub fn content_types(
mut self,
value: impl Into<Option<list_mute::ContentTypes<'a>>>,
) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_content_types(
mut self,
value: Option<list_mute::ContentTypes<'a>>,
) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> ListMuteBuilder<'a, S>
where
S: list_mute_state::State,
S::CreatedAt: list_mute_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ListMuteBuilder<'a, list_mute_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
ListMuteBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_mute_state::State> ListMuteBuilder<'a, S> {
pub fn expires_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_expires_at(mut self, value: Option<Datetime>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: list_mute_state::State> ListMuteBuilder<'a, S> {
pub fn reason(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_reason(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> ListMuteBuilder<'a, S>
where
S: list_mute_state::State,
S::Subject: list_mute_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<AtUri<'a>>,
) -> ListMuteBuilder<'a, list_mute_state::SetSubject<S>> {
self._fields.4 = Option::Some(value.into());
ListMuteBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_mute_state::State> ListMuteBuilder<'a, S> {
pub fn target_feeds(mut self, value: impl Into<Option<Vec<AtUri<'a>>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_target_feeds(mut self, value: Option<Vec<AtUri<'a>>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> ListMuteBuilder<'a, S>
where
S: list_mute_state::State,
S::CreatedAt: list_mute_state::IsSet,
S::Subject: list_mute_state::IsSet,
{
pub fn build(self) -> ListMute<'a> {
ListMute {
content_types: self._fields.0,
created_at: self._fields.1.unwrap(),
expires_at: self._fields.2,
reason: self._fields.3,
subject: self._fields.4.unwrap(),
target_feeds: self._fields.5,
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>,
>,
) -> ListMute<'a> {
ListMute {
content_types: self._fields.0,
created_at: self._fields.1.unwrap(),
expires_at: self._fields.2,
reason: self._fields.3,
subject: self._fields.4.unwrap(),
target_feeds: self._fields.5,
extra_data: Some(extra_data),
}
}
}