#[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::com_atproto::repo::strong_ref::StrongRef;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "network.cosmik.collectionLinkRemoval",
tag = "$type"
)]
pub struct CollectionLinkRemoval<'a> {
#[serde(borrow)]
pub collection: StrongRef<'a>,
pub removed_at: Datetime,
#[serde(borrow)]
pub removed_link: StrongRef<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CollectionLinkRemovalGetRecordOutput<'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: CollectionLinkRemoval<'a>,
}
impl<'a> CollectionLinkRemoval<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, CollectionLinkRemovalRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = CollectionLinkRemovalGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<CollectionLinkRemovalGetRecordOutput<'_>> for CollectionLinkRemoval<'_> {
fn from(output: CollectionLinkRemovalGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for CollectionLinkRemoval<'_> {
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<'a> LexiconSchema for CollectionLinkRemoval<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Collection;
type RemovedLink;
type RemovedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Collection = Unset;
type RemovedLink = Unset;
type RemovedAt = Unset;
}
pub struct SetCollection<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCollection<S> {}
impl<S: State> State for SetCollection<S> {
type Collection = Set<members::collection>;
type RemovedLink = S::RemovedLink;
type RemovedAt = S::RemovedAt;
}
pub struct SetRemovedLink<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRemovedLink<S> {}
impl<S: State> State for SetRemovedLink<S> {
type Collection = S::Collection;
type RemovedLink = Set<members::removed_link>;
type RemovedAt = S::RemovedAt;
}
pub struct SetRemovedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRemovedAt<S> {}
impl<S: State> State for SetRemovedAt<S> {
type Collection = S::Collection;
type RemovedLink = S::RemovedLink;
type RemovedAt = Set<members::removed_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct collection(());
pub struct removed_link(());
pub struct removed_at(());
}
}
pub struct CollectionLinkRemovalBuilder<'a, S: collection_link_removal_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<StrongRef<'a>>, Option<Datetime>, Option<StrongRef<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> CollectionLinkRemoval<'a> {
pub fn new() -> CollectionLinkRemovalBuilder<
'a,
collection_link_removal_state::Empty,
> {
CollectionLinkRemovalBuilder::new()
}
}
impl<'a> CollectionLinkRemovalBuilder<'a, collection_link_removal_state::Empty> {
pub fn new() -> Self {
CollectionLinkRemovalBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> CollectionLinkRemovalBuilder<'a, S>
where
S: collection_link_removal_state::State,
S::Collection: collection_link_removal_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<StrongRef<'a>>,
) -> CollectionLinkRemovalBuilder<
'a,
collection_link_removal_state::SetCollection<S>,
> {
self._fields.0 = Option::Some(value.into());
CollectionLinkRemovalBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CollectionLinkRemovalBuilder<'a, S>
where
S: collection_link_removal_state::State,
S::RemovedAt: collection_link_removal_state::IsUnset,
{
pub fn removed_at(
mut self,
value: impl Into<Datetime>,
) -> CollectionLinkRemovalBuilder<
'a,
collection_link_removal_state::SetRemovedAt<S>,
> {
self._fields.1 = Option::Some(value.into());
CollectionLinkRemovalBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CollectionLinkRemovalBuilder<'a, S>
where
S: collection_link_removal_state::State,
S::RemovedLink: collection_link_removal_state::IsUnset,
{
pub fn removed_link(
mut self,
value: impl Into<StrongRef<'a>>,
) -> CollectionLinkRemovalBuilder<
'a,
collection_link_removal_state::SetRemovedLink<S>,
> {
self._fields.2 = Option::Some(value.into());
CollectionLinkRemovalBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CollectionLinkRemovalBuilder<'a, S>
where
S: collection_link_removal_state::State,
S::Collection: collection_link_removal_state::IsSet,
S::RemovedLink: collection_link_removal_state::IsSet,
S::RemovedAt: collection_link_removal_state::IsSet,
{
pub fn build(self) -> CollectionLinkRemoval<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> CollectionLinkRemoval<'a> {
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> {
#[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("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()
}
}