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::{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::string::{Datetime, Did, Handle, UriValue};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::social_clippr::actor;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum PreferencesItem<S: BosStr = DefaultStr> {
#[serde(rename = "social.clippr.actor.defs#publishingScopesPref")]
PublishingScopesPref(Box<actor::PublishingScopesPref<S>>),
}
pub type Preferences<S = DefaultStr> = Vec<PreferencesItem<S>>;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ProfileView<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub avatar: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
pub did: Did<S>,
pub display_name: S,
pub handle: Handle<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, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct PublishingScopesPref<S: BosStr = DefaultStr> {
pub default_scope: PublishingScopesPrefDefaultScope<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum PublishingScopesPrefDefaultScope<S: BosStr = DefaultStr> {
Public,
Unlisted,
Other(S),
}
impl<S: BosStr> PublishingScopesPrefDefaultScope<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Public => "public",
Self::Unlisted => "unlisted",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"public" => Self::Public,
"unlisted" => Self::Unlisted,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for PublishingScopesPrefDefaultScope<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for PublishingScopesPrefDefaultScope<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for PublishingScopesPrefDefaultScope<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for PublishingScopesPrefDefaultScope<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for PublishingScopesPrefDefaultScope<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for PublishingScopesPrefDefaultScope<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = PublishingScopesPrefDefaultScope<S::Output>;
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<S: BosStr> LexiconSchema for ProfileView<S> {
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<S: BosStr> LexiconSchema for PublishingScopesPref<S> {
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::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type DisplayName;
type Handle;
type Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type DisplayName = Unset;
type Handle = Unset;
type Did = Unset;
}
pub struct SetDisplayName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDisplayName<St> {}
impl<St: State> State for SetDisplayName<St> {
type DisplayName = Set<members::display_name>;
type Handle = St::Handle;
type Did = St::Did;
}
pub struct SetHandle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetHandle<St> {}
impl<St: State> State for SetHandle<St> {
type DisplayName = St::DisplayName;
type Handle = Set<members::handle>;
type Did = St::Did;
}
pub struct SetDid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDid<St> {}
impl<St: State> State for SetDid<St> {
type DisplayName = St::DisplayName;
type Handle = St::Handle;
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct display_name(());
pub struct handle(());
pub struct did(());
}
}
pub struct ProfileViewBuilder<S: BosStr, St: profile_view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<UriValue<S>>,
Option<Datetime>,
Option<S>,
Option<Did<S>>,
Option<S>,
Option<Handle<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> ProfileView<S> {
pub fn new() -> ProfileViewBuilder<S, profile_view_state::Empty> {
ProfileViewBuilder::new()
}
}
impl<S: BosStr> ProfileViewBuilder<S, profile_view_state::Empty> {
pub fn new() -> Self {
ProfileViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: profile_view_state::State> ProfileViewBuilder<S, St> {
pub fn avatar(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_avatar(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: profile_view_state::State> ProfileViewBuilder<S, St> {
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<S: BosStr, St: profile_view_state::State> ProfileViewBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> ProfileViewBuilder<S, St>
where
St: profile_view_state::State,
St::Did: profile_view_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<S>>,
) -> ProfileViewBuilder<S, profile_view_state::SetDid<St>> {
self._fields.3 = Option::Some(value.into());
ProfileViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ProfileViewBuilder<S, St>
where
St: profile_view_state::State,
St::DisplayName: profile_view_state::IsUnset,
{
pub fn display_name(
mut self,
value: impl Into<S>,
) -> ProfileViewBuilder<S, profile_view_state::SetDisplayName<St>> {
self._fields.4 = Option::Some(value.into());
ProfileViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ProfileViewBuilder<S, St>
where
St: profile_view_state::State,
St::Handle: profile_view_state::IsUnset,
{
pub fn handle(
mut self,
value: impl Into<Handle<S>>,
) -> ProfileViewBuilder<S, profile_view_state::SetHandle<St>> {
self._fields.5 = Option::Some(value.into());
ProfileViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ProfileViewBuilder<S, St>
where
St: profile_view_state::State,
St::DisplayName: profile_view_state::IsSet,
St::Handle: profile_view_state::IsSet,
St::Did: profile_view_state::IsSet,
{
pub fn build(self) -> ProfileView<S> {
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<SmolStr, Data<S>>) -> ProfileView<S> {
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> {
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("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()
}
}