#[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};
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::com_atproto::repo::strong_ref::StrongRef;
#[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 = "network.cosmik.collectionLinkRemoval",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct CollectionLinkRemoval<S: BosStr = DefaultStr> {
pub collection: StrongRef<S>,
pub removed_at: Datetime,
pub removed_link: StrongRef<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 CollectionLinkRemovalGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: CollectionLinkRemoval<S>,
}
impl<S: BosStr> CollectionLinkRemoval<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, CollectionLinkRemovalRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CollectionLinkRemovalRecord;
impl XrpcResp for CollectionLinkRemovalRecord {
const NSID: &'static str = "network.cosmik.collectionLinkRemoval";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = CollectionLinkRemovalGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<CollectionLinkRemovalGetRecordOutput<S>> for CollectionLinkRemoval<S> {
fn from(output: CollectionLinkRemovalGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for CollectionLinkRemoval<S> {
const NSID: &'static str = "network.cosmik.collectionLinkRemoval";
type Record = CollectionLinkRemovalRecord;
}
impl Collection for CollectionLinkRemovalRecord {
const NSID: &'static str = "network.cosmik.collectionLinkRemoval";
type Record = CollectionLinkRemovalRecord;
}
impl<S: BosStr> LexiconSchema for CollectionLinkRemoval<S> {
fn nsid() -> &'static str {
"network.cosmik.collectionLinkRemoval"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_network_cosmik_collectionLinkRemoval()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod collection_link_removal_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 RemovedLink;
type Collection;
type RemovedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type RemovedLink = Unset;
type Collection = Unset;
type RemovedAt = Unset;
}
pub struct SetRemovedLink<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRemovedLink<St> {}
impl<St: State> State for SetRemovedLink<St> {
type RemovedLink = Set<members::removed_link>;
type Collection = St::Collection;
type RemovedAt = St::RemovedAt;
}
pub struct SetCollection<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCollection<St> {}
impl<St: State> State for SetCollection<St> {
type RemovedLink = St::RemovedLink;
type Collection = Set<members::collection>;
type RemovedAt = St::RemovedAt;
}
pub struct SetRemovedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRemovedAt<St> {}
impl<St: State> State for SetRemovedAt<St> {
type RemovedLink = St::RemovedLink;
type Collection = St::Collection;
type RemovedAt = Set<members::removed_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct removed_link(());
pub struct collection(());
pub struct removed_at(());
}
}
pub struct CollectionLinkRemovalBuilder<S: BosStr, St: collection_link_removal_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<StrongRef<S>>, Option<Datetime>, Option<StrongRef<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> CollectionLinkRemoval<S> {
pub fn new() -> CollectionLinkRemovalBuilder<S, collection_link_removal_state::Empty> {
CollectionLinkRemovalBuilder::new()
}
}
impl<S: BosStr> CollectionLinkRemovalBuilder<S, collection_link_removal_state::Empty> {
pub fn new() -> Self {
CollectionLinkRemovalBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CollectionLinkRemovalBuilder<S, St>
where
St: collection_link_removal_state::State,
St::Collection: collection_link_removal_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<StrongRef<S>>,
) -> CollectionLinkRemovalBuilder<S, collection_link_removal_state::SetCollection<St>> {
self._fields.0 = Option::Some(value.into());
CollectionLinkRemovalBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CollectionLinkRemovalBuilder<S, St>
where
St: collection_link_removal_state::State,
St::RemovedAt: collection_link_removal_state::IsUnset,
{
pub fn removed_at(
mut self,
value: impl Into<Datetime>,
) -> CollectionLinkRemovalBuilder<S, collection_link_removal_state::SetRemovedAt<St>> {
self._fields.1 = Option::Some(value.into());
CollectionLinkRemovalBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CollectionLinkRemovalBuilder<S, St>
where
St: collection_link_removal_state::State,
St::RemovedLink: collection_link_removal_state::IsUnset,
{
pub fn removed_link(
mut self,
value: impl Into<StrongRef<S>>,
) -> CollectionLinkRemovalBuilder<S, collection_link_removal_state::SetRemovedLink<St>> {
self._fields.2 = Option::Some(value.into());
CollectionLinkRemovalBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CollectionLinkRemovalBuilder<S, St>
where
St: collection_link_removal_state::State,
St::RemovedLink: collection_link_removal_state::IsSet,
St::Collection: collection_link_removal_state::IsSet,
St::RemovedAt: collection_link_removal_state::IsSet,
{
pub fn build(self) -> CollectionLinkRemoval<S> {
CollectionLinkRemoval {
collection: self._fields.0.unwrap(),
removed_at: self._fields.1.unwrap(),
removed_link: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> CollectionLinkRemoval<S> {
CollectionLinkRemoval {
collection: self._fields.0.unwrap(),
removed_at: self._fields.1.unwrap(),
removed_link: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_network_cosmik_collectionLinkRemoval() -> 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("network.cosmik.collectionLinkRemoval"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A record representing the removal of a collection link by a collection owner when they cannot delete the original link (which exists in another user's repository). The creator of this record (determined from the AT-URI) is the user who performed the removal.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("collection"),
SmolStr::new_static("removedLink"),
SmolStr::new_static("removedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("collection"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("removedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Timestamp when the link was removed from the collection.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("removedLink"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}