pub mod get_preferences;
pub mod get_profile;
pub mod profile;
pub mod put_preferences;
pub mod search_clips;
pub mod search_profiles;
pub mod search_tags;
#[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::string::{Did, Handle, Datetime, UriValue};
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::social_clippr::actor;
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum PreferencesItem<'a> {
#[serde(rename = "social.clippr.actor.defs#publishingScopesPref")]
PublishingScopesPref(Box<actor::PublishingScopesPref<'a>>),
}
pub type Preferences<'a> = Vec<PreferencesItem<'a>>;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ProfileView<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub avatar: Option<UriValue<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(borrow)]
pub did: Did<'a>,
#[serde(borrow)]
pub display_name: CowStr<'a>,
#[serde(borrow)]
pub handle: Handle<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct PublishingScopesPref<'a> {
#[serde(borrow)]
pub default_scope: PublishingScopesPrefDefaultScope<'a>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum PublishingScopesPrefDefaultScope<'a> {
Public,
Unlisted,
Other(CowStr<'a>),
}
impl<'a> PublishingScopesPrefDefaultScope<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Public => "public",
Self::Unlisted => "unlisted",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for PublishingScopesPrefDefaultScope<'a> {
fn from(s: &'a str) -> Self {
match s {
"public" => Self::Public,
"unlisted" => Self::Unlisted,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for PublishingScopesPrefDefaultScope<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"public" => Self::Public,
"unlisted" => Self::Unlisted,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for PublishingScopesPrefDefaultScope<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for PublishingScopesPrefDefaultScope<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for PublishingScopesPrefDefaultScope<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for PublishingScopesPrefDefaultScope<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for PublishingScopesPrefDefaultScope<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for PublishingScopesPrefDefaultScope<'_> {
type Output = PublishingScopesPrefDefaultScope<'static>;
fn into_static(self) -> Self::Output {
match self {
PublishingScopesPrefDefaultScope::Public => {
PublishingScopesPrefDefaultScope::Public
}
PublishingScopesPrefDefaultScope::Unlisted => {
PublishingScopesPrefDefaultScope::Unlisted
}
PublishingScopesPrefDefaultScope::Other(v) => {
PublishingScopesPrefDefaultScope::Other(v.into_static())
}
}
}
}
impl<'a> LexiconSchema for ProfileView<'a> {
fn nsid() -> &'static str {
"social.clippr.actor.defs"
}
fn def_name() -> &'static str {
"profileView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_clippr_actor_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 5000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 5000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 500usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("description"),
max: 500usize,
actual: count,
});
}
}
}
{
let value = &self.display_name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 640usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("display_name"),
max: 640usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.display_name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 64usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("display_name"),
max: 64usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<'a> LexiconSchema for PublishingScopesPref<'a> {
fn nsid() -> &'static str {
"social.clippr.actor.defs"
}
fn def_name() -> &'static str {
"publishingScopesPref"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_clippr_actor_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod profile_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 Handle;
type DisplayName;
type Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Handle = Unset;
type DisplayName = Unset;
type Did = Unset;
}
pub struct SetHandle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetHandle<S> {}
impl<S: State> State for SetHandle<S> {
type Handle = Set<members::handle>;
type DisplayName = S::DisplayName;
type Did = S::Did;
}
pub struct SetDisplayName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDisplayName<S> {}
impl<S: State> State for SetDisplayName<S> {
type Handle = S::Handle;
type DisplayName = Set<members::display_name>;
type Did = S::Did;
}
pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDid<S> {}
impl<S: State> State for SetDid<S> {
type Handle = S::Handle;
type DisplayName = S::DisplayName;
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct handle(());
pub struct display_name(());
pub struct did(());
}
}
pub struct ProfileViewBuilder<'a, S: profile_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<UriValue<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<Did<'a>>,
Option<CowStr<'a>>,
Option<Handle<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ProfileView<'a> {
pub fn new() -> ProfileViewBuilder<'a, profile_view_state::Empty> {
ProfileViewBuilder::new()
}
}
impl<'a> ProfileViewBuilder<'a, profile_view_state::Empty> {
pub fn new() -> Self {
ProfileViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: profile_view_state::State> ProfileViewBuilder<'a, S> {
pub fn avatar(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_avatar(mut self, value: Option<UriValue<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: profile_view_state::State> ProfileViewBuilder<'a, S> {
pub fn created_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_created_at(mut self, value: Option<Datetime>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: profile_view_state::State> ProfileViewBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> ProfileViewBuilder<'a, S>
where
S: profile_view_state::State,
S::Did: profile_view_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<'a>>,
) -> ProfileViewBuilder<'a, profile_view_state::SetDid<S>> {
self._fields.3 = Option::Some(value.into());
ProfileViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ProfileViewBuilder<'a, S>
where
S: profile_view_state::State,
S::DisplayName: profile_view_state::IsUnset,
{
pub fn display_name(
mut self,
value: impl Into<CowStr<'a>>,
) -> ProfileViewBuilder<'a, profile_view_state::SetDisplayName<S>> {
self._fields.4 = Option::Some(value.into());
ProfileViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ProfileViewBuilder<'a, S>
where
S: profile_view_state::State,
S::Handle: profile_view_state::IsUnset,
{
pub fn handle(
mut self,
value: impl Into<Handle<'a>>,
) -> ProfileViewBuilder<'a, profile_view_state::SetHandle<S>> {
self._fields.5 = Option::Some(value.into());
ProfileViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ProfileViewBuilder<'a, S>
where
S: profile_view_state::State,
S::Handle: profile_view_state::IsSet,
S::DisplayName: profile_view_state::IsSet,
S::Did: profile_view_state::IsSet,
{
pub fn build(self) -> ProfileView<'a> {
ProfileView {
avatar: self._fields.0,
created_at: self._fields.1,
description: self._fields.2,
did: self._fields.3.unwrap(),
display_name: self._fields.4.unwrap(),
handle: self._fields.5.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>,
>,
) -> ProfileView<'a> {
ProfileView {
avatar: self._fields.0,
created_at: self._fields.1,
description: self._fields.2,
did: self._fields.3.unwrap(),
display_name: self._fields.4.unwrap(),
handle: self._fields.5.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_social_clippr_actor_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.actor.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("preferences"),
LexUserType::Array(LexArray {
items: LexArrayItem::Union(LexRefUnion {
refs: vec![CowStr::new_static("#publishingScopesPref")],
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("profileView"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("A view of an actor's profile."),
),
required: Some(
vec![
SmolStr::new_static("did"), SmolStr::new_static("handle"),
SmolStr::new_static("displayName")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("avatar"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("A link to the profile's avatar"),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"When the profile record was first created",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The biography associated to the profile",
),
),
max_length: Some(5000usize),
max_graphemes: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The DID of the profile"),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("displayName"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The display name associated to the profile",
),
),
max_length: Some(640usize),
max_graphemes: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("handle"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The handle of the profile"),
),
format: Some(LexStringFormat::Handle),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("publishingScopesPref"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"Preferences for an user's publishing scopes.",
),
),
required: Some(vec![SmolStr::new_static("defaultScope")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("defaultScope"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"What publishing scope to mark a clip as by default",
),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}