#[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, 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::com_atproto::repo::strong_ref::StrongRef;
use crate::org_hypercerts::Uri;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "org.hypercerts.context.acknowledgement",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Acknowledgement<S: BosStr = DefaultStr> {
pub acknowledged: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub comment: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub context: Option<AcknowledgementContext<S>>,
pub created_at: Datetime,
pub subject: StrongRef<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum AcknowledgementContext<S: BosStr = DefaultStr> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<S>>),
#[serde(rename = "com.atproto.repo.strongRef")]
StrongRef(Box<StrongRef<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct AcknowledgementGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Acknowledgement<S>,
}
impl<S: BosStr> Acknowledgement<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, AcknowledgementRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct AcknowledgementRecord;
impl XrpcResp for AcknowledgementRecord {
const NSID: &'static str = "org.hypercerts.context.acknowledgement";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = AcknowledgementGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<AcknowledgementGetRecordOutput<S>> for Acknowledgement<S> {
fn from(output: AcknowledgementGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Acknowledgement<S> {
const NSID: &'static str = "org.hypercerts.context.acknowledgement";
type Record = AcknowledgementRecord;
}
impl Collection for AcknowledgementRecord {
const NSID: &'static str = "org.hypercerts.context.acknowledgement";
type Record = AcknowledgementRecord;
}
impl<S: BosStr> LexiconSchema for Acknowledgement<S> {
fn nsid() -> &'static str {
"org.hypercerts.context.acknowledgement"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_hypercerts_context_acknowledgement()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.comment {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("comment"),
max: 10000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.comment {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 1000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("comment"),
max: 1000usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod acknowledgement_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 Subject;
type CreatedAt;
type Acknowledged;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Subject = Unset;
type CreatedAt = Unset;
type Acknowledged = Unset;
}
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 Subject = Set<members::subject>;
type CreatedAt = St::CreatedAt;
type Acknowledged = St::Acknowledged;
}
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 Subject = St::Subject;
type CreatedAt = Set<members::created_at>;
type Acknowledged = St::Acknowledged;
}
pub struct SetAcknowledged<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAcknowledged<St> {}
impl<St: State> State for SetAcknowledged<St> {
type Subject = St::Subject;
type CreatedAt = St::CreatedAt;
type Acknowledged = Set<members::acknowledged>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct subject(());
pub struct created_at(());
pub struct acknowledged(());
}
}
pub struct AcknowledgementBuilder<S: BosStr, St: acknowledgement_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<bool>,
Option<S>,
Option<AcknowledgementContext<S>>,
Option<Datetime>,
Option<StrongRef<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Acknowledgement<S> {
pub fn new() -> AcknowledgementBuilder<S, acknowledgement_state::Empty> {
AcknowledgementBuilder::new()
}
}
impl<S: BosStr> AcknowledgementBuilder<S, acknowledgement_state::Empty> {
pub fn new() -> Self {
AcknowledgementBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> AcknowledgementBuilder<S, St>
where
St: acknowledgement_state::State,
St::Acknowledged: acknowledgement_state::IsUnset,
{
pub fn acknowledged(
mut self,
value: impl Into<bool>,
) -> AcknowledgementBuilder<S, acknowledgement_state::SetAcknowledged<St>> {
self._fields.0 = Option::Some(value.into());
AcknowledgementBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: acknowledgement_state::State> AcknowledgementBuilder<S, St> {
pub fn comment(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_comment(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: acknowledgement_state::State> AcknowledgementBuilder<S, St> {
pub fn context(
mut self,
value: impl Into<Option<AcknowledgementContext<S>>>,
) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_context(mut self, value: Option<AcknowledgementContext<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> AcknowledgementBuilder<S, St>
where
St: acknowledgement_state::State,
St::CreatedAt: acknowledgement_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> AcknowledgementBuilder<S, acknowledgement_state::SetCreatedAt<St>> {
self._fields.3 = Option::Some(value.into());
AcknowledgementBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> AcknowledgementBuilder<S, St>
where
St: acknowledgement_state::State,
St::Subject: acknowledgement_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<StrongRef<S>>,
) -> AcknowledgementBuilder<S, acknowledgement_state::SetSubject<St>> {
self._fields.4 = Option::Some(value.into());
AcknowledgementBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> AcknowledgementBuilder<S, St>
where
St: acknowledgement_state::State,
St::Subject: acknowledgement_state::IsSet,
St::CreatedAt: acknowledgement_state::IsSet,
St::Acknowledged: acknowledgement_state::IsSet,
{
pub fn build(self) -> Acknowledgement<S> {
Acknowledgement {
acknowledged: self._fields.0.unwrap(),
comment: self._fields.1,
context: self._fields.2,
created_at: self._fields.3.unwrap(),
subject: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> Acknowledgement<S> {
Acknowledgement {
acknowledged: self._fields.0.unwrap(),
comment: self._fields.1,
context: self._fields.2,
created_at: self._fields.3.unwrap(),
subject: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_hypercerts_context_acknowledgement() -> 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("org.hypercerts.context.acknowledgement"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Acknowledges a record (subject) or its relationship in a context. Created in the acknowledging actor's repo to form a bidirectional link. Examples: a contributor acknowledging inclusion in an activity, an activity owner acknowledging inclusion in a collection, or a record owner acknowledging an evaluation.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("subject"),
SmolStr::new_static("acknowledged"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("acknowledged"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("comment"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional plain-text comment providing additional context or reasoning.",
),
),
max_length: Some(10000usize),
max_graphemes: Some(1000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("context"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"Context for the acknowledgement (e.g. the collection that includes an activity, or the activity that includes a contributor). A URI for a lightweight reference or a strong reference for content-hash verification.",
),
),
refs: vec![
CowStr::new_static("org.hypercerts.defs#uri"),
CowStr::new_static("com.atproto.repo.strongRef")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Client-declared timestamp when this record was originally created.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}