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;
use jacquard_common::{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::string::{AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ClipView<S: BosStr = DefaultStr> {
pub author: ProfileView<S>,
pub cid: Cid<S>,
pub indexed_at: Datetime,
pub record: Data<S>,
pub uri: AtUri<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", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct TagView<S: BosStr = DefaultStr> {
pub author: ProfileView<S>,
pub cid: Cid<S>,
pub indexed_at: Datetime,
pub record: Data<S>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for ClipView<S> {
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<S: BosStr> LexiconSchema for TagView<S> {
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 Author;
type Cid;
type Record;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type IndexedAt = Unset;
type Author = Unset;
type Cid = Unset;
type Record = Unset;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Uri = Set<members::uri>;
type IndexedAt = St::IndexedAt;
type Author = St::Author;
type Cid = St::Cid;
type Record = St::Record;
}
pub struct SetIndexedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIndexedAt<St> {}
impl<St: State> State for SetIndexedAt<St> {
type Uri = St::Uri;
type IndexedAt = Set<members::indexed_at>;
type Author = St::Author;
type Cid = St::Cid;
type Record = St::Record;
}
pub struct SetAuthor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAuthor<St> {}
impl<St: State> State for SetAuthor<St> {
type Uri = St::Uri;
type IndexedAt = St::IndexedAt;
type Author = Set<members::author>;
type Cid = St::Cid;
type Record = St::Record;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Uri = St::Uri;
type IndexedAt = St::IndexedAt;
type Author = St::Author;
type Cid = Set<members::cid>;
type Record = St::Record;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Uri = St::Uri;
type IndexedAt = St::IndexedAt;
type Author = St::Author;
type Cid = St::Cid;
type Record = Set<members::record>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct indexed_at(());
pub struct author(());
pub struct cid(());
pub struct record(());
}
}
pub struct ClipViewBuilder<S: BosStr, St: clip_view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<ProfileView<S>>,
Option<Cid<S>>,
Option<Datetime>,
Option<Data<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> ClipView<S> {
pub fn new() -> ClipViewBuilder<S, clip_view_state::Empty> {
ClipViewBuilder::new()
}
}
impl<S: BosStr> ClipViewBuilder<S, clip_view_state::Empty> {
pub fn new() -> Self {
ClipViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClipViewBuilder<S, St>
where
St: clip_view_state::State,
St::Author: clip_view_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<ProfileView<S>>,
) -> ClipViewBuilder<S, clip_view_state::SetAuthor<St>> {
self._fields.0 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClipViewBuilder<S, St>
where
St: clip_view_state::State,
St::Cid: clip_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> ClipViewBuilder<S, clip_view_state::SetCid<St>> {
self._fields.1 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClipViewBuilder<S, St>
where
St: clip_view_state::State,
St::IndexedAt: clip_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> ClipViewBuilder<S, clip_view_state::SetIndexedAt<St>> {
self._fields.2 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClipViewBuilder<S, St>
where
St: clip_view_state::State,
St::Record: clip_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> ClipViewBuilder<S, clip_view_state::SetRecord<St>> {
self._fields.3 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClipViewBuilder<S, St>
where
St: clip_view_state::State,
St::Uri: clip_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> ClipViewBuilder<S, clip_view_state::SetUri<St>> {
self._fields.4 = Option::Some(value.into());
ClipViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClipViewBuilder<S, St>
where
St: clip_view_state::State,
St::Uri: clip_view_state::IsSet,
St::IndexedAt: clip_view_state::IsSet,
St::Author: clip_view_state::IsSet,
St::Cid: clip_view_state::IsSet,
St::Record: clip_view_state::IsSet,
{
pub fn build(self) -> ClipView<S> {
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<SmolStr, Data<S>>) -> ClipView<S> {
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 Cid;
type IndexedAt;
type Author;
type Uri;
type Record;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cid = Unset;
type IndexedAt = Unset;
type Author = Unset;
type Uri = Unset;
type Record = Unset;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Cid = Set<members::cid>;
type IndexedAt = St::IndexedAt;
type Author = St::Author;
type Uri = St::Uri;
type Record = St::Record;
}
pub struct SetIndexedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIndexedAt<St> {}
impl<St: State> State for SetIndexedAt<St> {
type Cid = St::Cid;
type IndexedAt = Set<members::indexed_at>;
type Author = St::Author;
type Uri = St::Uri;
type Record = St::Record;
}
pub struct SetAuthor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAuthor<St> {}
impl<St: State> State for SetAuthor<St> {
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type Author = Set<members::author>;
type Uri = St::Uri;
type Record = St::Record;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type Author = St::Author;
type Uri = Set<members::uri>;
type Record = St::Record;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type Author = St::Author;
type Uri = St::Uri;
type Record = Set<members::record>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cid(());
pub struct indexed_at(());
pub struct author(());
pub struct uri(());
pub struct record(());
}
}
pub struct TagViewBuilder<S: BosStr, St: tag_view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<ProfileView<S>>,
Option<Cid<S>>,
Option<Datetime>,
Option<Data<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> TagView<S> {
pub fn new() -> TagViewBuilder<S, tag_view_state::Empty> {
TagViewBuilder::new()
}
}
impl<S: BosStr> TagViewBuilder<S, tag_view_state::Empty> {
pub fn new() -> Self {
TagViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TagViewBuilder<S, St>
where
St: tag_view_state::State,
St::Author: tag_view_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<ProfileView<S>>,
) -> TagViewBuilder<S, tag_view_state::SetAuthor<St>> {
self._fields.0 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TagViewBuilder<S, St>
where
St: tag_view_state::State,
St::Cid: tag_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> TagViewBuilder<S, tag_view_state::SetCid<St>> {
self._fields.1 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TagViewBuilder<S, St>
where
St: tag_view_state::State,
St::IndexedAt: tag_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> TagViewBuilder<S, tag_view_state::SetIndexedAt<St>> {
self._fields.2 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TagViewBuilder<S, St>
where
St: tag_view_state::State,
St::Record: tag_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> TagViewBuilder<S, tag_view_state::SetRecord<St>> {
self._fields.3 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TagViewBuilder<S, St>
where
St: tag_view_state::State,
St::Uri: tag_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> TagViewBuilder<S, tag_view_state::SetUri<St>> {
self._fields.4 = Option::Some(value.into());
TagViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TagViewBuilder<S, St>
where
St: tag_view_state::State,
St::Cid: tag_view_state::IsSet,
St::IndexedAt: tag_view_state::IsSet,
St::Author: tag_view_state::IsSet,
St::Uri: tag_view_state::IsSet,
St::Record: tag_view_state::IsSet,
{
pub fn build(self) -> TagView<S> {
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<SmolStr, Data<S>>) -> TagView<S> {
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),
}
}
}