pub mod clip;
pub mod get_clips;
pub mod get_profile_clips;
pub mod get_profile_tags;
pub mod get_tag_list;
pub mod get_tags;
pub mod tag;
#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
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::social_clippr::actor::ProfileView;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ClipView<'a> {
#[serde(borrow)]
pub author: ProfileView<'a>,
#[serde(borrow)]
pub cid: Cid<'a>,
pub indexed_at: Datetime,
#[serde(borrow)]
pub record: Data<'a>,
#[serde(borrow)]
pub uri: AtUri<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TagView<'a> {
#[serde(borrow)]
pub author: ProfileView<'a>,
#[serde(borrow)]
pub cid: Cid<'a>,
pub indexed_at: Datetime,
#[serde(borrow)]
pub record: Data<'a>,
#[serde(borrow)]
pub uri: AtUri<'a>,
}
impl<'a> LexiconSchema for ClipView<'a> {
fn nsid() -> &'static str {
"social.clippr.feed.defs"
}
fn def_name() -> &'static str {
"clipView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_clippr_feed_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for TagView<'a> {
fn nsid() -> &'static str {
"social.clippr.feed.defs"
}
fn def_name() -> &'static str {
"tagView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_clippr_feed_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod clip_view_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 Uri;
type IndexedAt;
type Record;
type Author;
type Cid;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type IndexedAt = Unset;
type Record = Unset;
type Author = Unset;
type Cid = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
type IndexedAt = S::IndexedAt;
type Record = S::Record;
type Author = S::Author;
type Cid = S::Cid;
}
pub struct SetIndexedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetIndexedAt<S> {}
impl<S: State> State for SetIndexedAt<S> {
type Uri = S::Uri;
type IndexedAt = Set<members::indexed_at>;
type Record = S::Record;
type Author = S::Author;
type Cid = S::Cid;
}
pub struct SetRecord<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRecord<S> {}
impl<S: State> State for SetRecord<S> {
type Uri = S::Uri;
type IndexedAt = S::IndexedAt;
type Record = Set<members::record>;
type Author = S::Author;
type Cid = S::Cid;
}
pub struct SetAuthor<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAuthor<S> {}
impl<S: State> State for SetAuthor<S> {
type Uri = S::Uri;
type IndexedAt = S::IndexedAt;
type Record = S::Record;
type Author = Set<members::author>;
type Cid = S::Cid;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Uri = S::Uri;
type IndexedAt = S::IndexedAt;
type Record = S::Record;
type Author = S::Author;
type Cid = Set<members::cid>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct indexed_at(());
pub struct record(());
pub struct author(());
pub struct cid(());
}
}
pub struct ClipViewBuilder<'a, S: clip_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<ProfileView<'a>>,
Option<Cid<'a>>,
Option<Datetime>,
Option<Data<'a>>,
Option<AtUri<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ClipView<'a> {
pub fn new() -> ClipViewBuilder<'a, clip_view_state::Empty> {
ClipViewBuilder::new()
}
}
impl<'a> ClipViewBuilder<'a, clip_view_state::Empty> {
pub fn new() -> Self {
ClipViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClipViewBuilder<'a, S>
where
S: clip_view_state::State,
S::Author: clip_view_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<ProfileView<'a>>,
) -> ClipViewBuilder<'a, clip_view_state::SetAuthor<S>> {
self._fields.0 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClipViewBuilder<'a, S>
where
S: clip_view_state::State,
S::Cid: clip_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> ClipViewBuilder<'a, clip_view_state::SetCid<S>> {
self._fields.1 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClipViewBuilder<'a, S>
where
S: clip_view_state::State,
S::IndexedAt: clip_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> ClipViewBuilder<'a, clip_view_state::SetIndexedAt<S>> {
self._fields.2 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClipViewBuilder<'a, S>
where
S: clip_view_state::State,
S::Record: clip_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<'a>>,
) -> ClipViewBuilder<'a, clip_view_state::SetRecord<S>> {
self._fields.3 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClipViewBuilder<'a, S>
where
S: clip_view_state::State,
S::Uri: clip_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> ClipViewBuilder<'a, clip_view_state::SetUri<S>> {
self._fields.4 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ClipViewBuilder<'a, S>
where
S: clip_view_state::State,
S::Uri: clip_view_state::IsSet,
S::IndexedAt: clip_view_state::IsSet,
S::Record: clip_view_state::IsSet,
S::Author: clip_view_state::IsSet,
S::Cid: clip_view_state::IsSet,
{
pub fn build(self) -> ClipView<'a> {
ClipView {
author: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
record: self._fields.3.unwrap(),
uri: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> ClipView<'a> {
ClipView {
author: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
record: self._fields.3.unwrap(),
uri: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_social_clippr_feed_defs() -> 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("social.clippr.feed.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("clipView"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("A view of a single bookmark (or 'clip')."),
),
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("author"), SmolStr::new_static("record"),
SmolStr::new_static("indexedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"social.clippr.actor.defs#profileView",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The CID of the clip"),
),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"When the tag was first indexed by the AppView",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The AT-URI of the clip"),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tagView"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static("A view of a single tag.")),
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("author"), SmolStr::new_static("record"),
SmolStr::new_static("indexedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"social.clippr.actor.defs#profileView",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The CID of the tag")),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"When the tag was first indexed by the AppView",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The AT-URI to the tag"),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod tag_view_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 Uri;
type Author;
type Record;
type Cid;
type IndexedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Author = Unset;
type Record = Unset;
type Cid = Unset;
type IndexedAt = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
type Author = S::Author;
type Record = S::Record;
type Cid = S::Cid;
type IndexedAt = S::IndexedAt;
}
pub struct SetAuthor<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAuthor<S> {}
impl<S: State> State for SetAuthor<S> {
type Uri = S::Uri;
type Author = Set<members::author>;
type Record = S::Record;
type Cid = S::Cid;
type IndexedAt = S::IndexedAt;
}
pub struct SetRecord<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRecord<S> {}
impl<S: State> State for SetRecord<S> {
type Uri = S::Uri;
type Author = S::Author;
type Record = Set<members::record>;
type Cid = S::Cid;
type IndexedAt = S::IndexedAt;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Uri = S::Uri;
type Author = S::Author;
type Record = S::Record;
type Cid = Set<members::cid>;
type IndexedAt = S::IndexedAt;
}
pub struct SetIndexedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetIndexedAt<S> {}
impl<S: State> State for SetIndexedAt<S> {
type Uri = S::Uri;
type Author = S::Author;
type Record = S::Record;
type Cid = S::Cid;
type IndexedAt = Set<members::indexed_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct author(());
pub struct record(());
pub struct cid(());
pub struct indexed_at(());
}
}
pub struct TagViewBuilder<'a, S: tag_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<ProfileView<'a>>,
Option<Cid<'a>>,
Option<Datetime>,
Option<Data<'a>>,
Option<AtUri<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> TagView<'a> {
pub fn new() -> TagViewBuilder<'a, tag_view_state::Empty> {
TagViewBuilder::new()
}
}
impl<'a> TagViewBuilder<'a, tag_view_state::Empty> {
pub fn new() -> Self {
TagViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> TagViewBuilder<'a, S>
where
S: tag_view_state::State,
S::Author: tag_view_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<ProfileView<'a>>,
) -> TagViewBuilder<'a, tag_view_state::SetAuthor<S>> {
self._fields.0 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TagViewBuilder<'a, S>
where
S: tag_view_state::State,
S::Cid: tag_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> TagViewBuilder<'a, tag_view_state::SetCid<S>> {
self._fields.1 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TagViewBuilder<'a, S>
where
S: tag_view_state::State,
S::IndexedAt: tag_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> TagViewBuilder<'a, tag_view_state::SetIndexedAt<S>> {
self._fields.2 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TagViewBuilder<'a, S>
where
S: tag_view_state::State,
S::Record: tag_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<'a>>,
) -> TagViewBuilder<'a, tag_view_state::SetRecord<S>> {
self._fields.3 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TagViewBuilder<'a, S>
where
S: tag_view_state::State,
S::Uri: tag_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> TagViewBuilder<'a, tag_view_state::SetUri<S>> {
self._fields.4 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TagViewBuilder<'a, S>
where
S: tag_view_state::State,
S::Uri: tag_view_state::IsSet,
S::Author: tag_view_state::IsSet,
S::Record: tag_view_state::IsSet,
S::Cid: tag_view_state::IsSet,
S::IndexedAt: tag_view_state::IsSet,
{
pub fn build(self) -> TagView<'a> {
TagView {
author: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
record: self._fields.3.unwrap(),
uri: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> TagView<'a> {
TagView {
author: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
record: self._fields.3.unwrap(),
uri: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}