#[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, 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;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Acknowledgement<'a> {
pub acknowledged: bool,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub comment: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub context: Option<AcknowledgementContext<'a>>,
pub created_at: Datetime,
#[serde(borrow)]
pub subject: StrongRef<'a>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum AcknowledgementContext<'a> {
#[serde(rename = "org.hypercerts.defs#uri")]
Uri(Box<Uri<'a>>),
#[serde(rename = "com.atproto.repo.strongRef")]
StrongRef(Box<StrongRef<'a>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct AcknowledgementGetRecordOutput<'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: Acknowledgement<'a>,
}
impl<'a> Acknowledgement<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, AcknowledgementRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = AcknowledgementGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<AcknowledgementGetRecordOutput<'_>> for Acknowledgement<'_> {
fn from(output: AcknowledgementGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Acknowledgement<'_> {
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<'a> LexiconSchema for Acknowledgement<'a> {
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 Acknowledged;
type CreatedAt;
type Subject;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Acknowledged = Unset;
type CreatedAt = Unset;
type Subject = Unset;
}
pub struct SetAcknowledged<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAcknowledged<S> {}
impl<S: State> State for SetAcknowledged<S> {
type Acknowledged = Set<members::acknowledged>;
type CreatedAt = S::CreatedAt;
type Subject = S::Subject;
}
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 Acknowledged = S::Acknowledged;
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 Acknowledged = S::Acknowledged;
type CreatedAt = S::CreatedAt;
type Subject = Set<members::subject>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct acknowledged(());
pub struct created_at(());
pub struct subject(());
}
}
pub struct AcknowledgementBuilder<'a, S: acknowledgement_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<bool>,
Option<CowStr<'a>>,
Option<AcknowledgementContext<'a>>,
Option<Datetime>,
Option<StrongRef<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Acknowledgement<'a> {
pub fn new() -> AcknowledgementBuilder<'a, acknowledgement_state::Empty> {
AcknowledgementBuilder::new()
}
}
impl<'a> AcknowledgementBuilder<'a, acknowledgement_state::Empty> {
pub fn new() -> Self {
AcknowledgementBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> AcknowledgementBuilder<'a, S>
where
S: acknowledgement_state::State,
S::Acknowledged: acknowledgement_state::IsUnset,
{
pub fn acknowledged(
mut self,
value: impl Into<bool>,
) -> AcknowledgementBuilder<'a, acknowledgement_state::SetAcknowledged<S>> {
self._fields.0 = Option::Some(value.into());
AcknowledgementBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: acknowledgement_state::State> AcknowledgementBuilder<'a, S> {
pub fn comment(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_comment(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: acknowledgement_state::State> AcknowledgementBuilder<'a, S> {
pub fn context(
mut self,
value: impl Into<Option<AcknowledgementContext<'a>>>,
) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_context(mut self, value: Option<AcknowledgementContext<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> AcknowledgementBuilder<'a, S>
where
S: acknowledgement_state::State,
S::CreatedAt: acknowledgement_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> AcknowledgementBuilder<'a, acknowledgement_state::SetCreatedAt<S>> {
self._fields.3 = Option::Some(value.into());
AcknowledgementBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> AcknowledgementBuilder<'a, S>
where
S: acknowledgement_state::State,
S::Subject: acknowledgement_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<StrongRef<'a>>,
) -> AcknowledgementBuilder<'a, acknowledgement_state::SetSubject<S>> {
self._fields.4 = Option::Some(value.into());
AcknowledgementBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> AcknowledgementBuilder<'a, S>
where
S: acknowledgement_state::State,
S::Acknowledged: acknowledgement_state::IsSet,
S::CreatedAt: acknowledgement_state::IsSet,
S::Subject: acknowledgement_state::IsSet,
{
pub fn build(self) -> Acknowledgement<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Acknowledgement<'a> {
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()
}
}