#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, 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, Did};
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;
use crate::net_asadaame5121::at_circle::RingRef;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "net.asadaame5121.at-circle.block",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Block<S: BosStr = DefaultStr> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub reason: Option<S>,
pub ring: RingRef<S>,
pub subject: Did<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 BlockGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Block<S>,
}
impl<S: BosStr> Block<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, BlockRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct BlockRecord;
impl XrpcResp for BlockRecord {
const NSID: &'static str = "net.asadaame5121.at-circle.block";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = BlockGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<BlockGetRecordOutput<S>> for Block<S> {
fn from(output: BlockGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Block<S> {
const NSID: &'static str = "net.asadaame5121.at-circle.block";
type Record = BlockRecord;
}
impl Collection for BlockRecord {
const NSID: &'static str = "net.asadaame5121.at-circle.block";
type Record = BlockRecord;
}
impl<S: BosStr> LexiconSchema for Block<S> {
fn nsid() -> &'static str {
"net.asadaame5121.at-circle.block"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_net_asadaame5121_at_circle_block()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.reason {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("reason"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.reason {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 100usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("reason"),
max: 100usize,
actual: count,
});
}
}
}
{
let value = &self.subject;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("subject"),
max: 2000usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod block_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Ring;
type Subject;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ring = Unset;
type Subject = Unset;
type CreatedAt = Unset;
}
pub struct SetRing<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRing<St> {}
impl<St: State> State for SetRing<St> {
type Ring = Set<members::ring>;
type Subject = St::Subject;
type CreatedAt = St::CreatedAt;
}
pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSubject<St> {}
impl<St: State> State for SetSubject<St> {
type Ring = St::Ring;
type Subject = Set<members::subject>;
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 Ring = St::Ring;
type Subject = St::Subject;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct ring(());
pub struct subject(());
pub struct created_at(());
}
}
pub struct BlockBuilder<S: BosStr, St: block_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<S>,
Option<RingRef<S>>,
Option<Did<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Block<S> {
pub fn new() -> BlockBuilder<S, block_state::Empty> {
BlockBuilder::new()
}
}
impl<S: BosStr> BlockBuilder<S, block_state::Empty> {
pub fn new() -> Self {
BlockBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BlockBuilder<S, St>
where
St: block_state::State,
St::CreatedAt: block_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> BlockBuilder<S, block_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
BlockBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: block_state::State> BlockBuilder<S, St> {
pub fn reason(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_reason(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> BlockBuilder<S, St>
where
St: block_state::State,
St::Ring: block_state::IsUnset,
{
pub fn ring(
mut self,
value: impl Into<RingRef<S>>,
) -> BlockBuilder<S, block_state::SetRing<St>> {
self._fields.2 = Option::Some(value.into());
BlockBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BlockBuilder<S, St>
where
St: block_state::State,
St::Subject: block_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<Did<S>>,
) -> BlockBuilder<S, block_state::SetSubject<St>> {
self._fields.3 = Option::Some(value.into());
BlockBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BlockBuilder<S, St>
where
St: block_state::State,
St::Ring: block_state::IsSet,
St::Subject: block_state::IsSet,
St::CreatedAt: block_state::IsSet,
{
pub fn build(self) -> Block<S> {
Block {
created_at: self._fields.0.unwrap(),
reason: self._fields.1,
ring: self._fields.2.unwrap(),
subject: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Block<S> {
Block {
created_at: self._fields.0.unwrap(),
reason: self._fields.1,
ring: self._fields.2.unwrap(),
subject: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_net_asadaame5121_at_circle_block() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("net.asadaame5121.at-circle.block"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("Block/Kick a member from the circle")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("subject"),
SmolStr::new_static("ring"),
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("reason"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Reason for blocking")),
max_length: Some(1000usize),
max_graphemes: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ring"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"net.asadaame5121.at-circle.defs#ringRef",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"DID of the member to block",
)),
format: Some(LexStringFormat::Did),
max_length: Some(2000usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}