#[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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Settings<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
pub complexity_preference: Option<i64>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub longevity_priority: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub presence_style: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub score_lens: Option<SettingsScoreLens<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub scoring_approach: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum SettingsScoreLens<'a> {
Theirs,
Mine,
Other(CowStr<'a>),
}
impl<'a> SettingsScoreLens<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Theirs => "theirs",
Self::Mine => "mine",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for SettingsScoreLens<'a> {
fn from(s: &'a str) -> Self {
match s {
"theirs" => Self::Theirs,
"mine" => Self::Mine,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for SettingsScoreLens<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"theirs" => Self::Theirs,
"mine" => Self::Mine,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for SettingsScoreLens<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for SettingsScoreLens<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for SettingsScoreLens<'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 SettingsScoreLens<'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 SettingsScoreLens<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for SettingsScoreLens<'_> {
type Output = SettingsScoreLens<'static>;
fn into_static(self) -> Self::Output {
match self {
SettingsScoreLens::Theirs => SettingsScoreLens::Theirs,
SettingsScoreLens::Mine => SettingsScoreLens::Mine,
SettingsScoreLens::Other(v) => SettingsScoreLens::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SettingsGetRecordOutput<'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: Settings<'a>,
}
impl<'a> Settings<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, SettingsRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SettingsRecord;
impl XrpcResp for SettingsRecord {
const NSID: &'static str = "social.drydown.settings";
const ENCODING: &'static str = "application/json";
type Output<'de> = SettingsGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<SettingsGetRecordOutput<'_>> for Settings<'_> {
fn from(output: SettingsGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Settings<'_> {
const NSID: &'static str = "social.drydown.settings";
type Record = SettingsRecord;
}
impl Collection for SettingsRecord {
const NSID: &'static str = "social.drydown.settings";
type Record = SettingsRecord;
}
impl<'a> LexiconSchema for Settings<'a> {
fn nsid() -> &'static str {
"social.drydown.settings"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_drydown_settings()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.complexity_preference {
if *value > 5i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("complexity_preference"),
max: 5i64,
actual: *value,
});
}
}
if let Some(ref value) = self.complexity_preference {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("complexity_preference"),
min: 1i64,
actual: *value,
});
}
}
if let Some(ref value) = self.longevity_priority {
if *value > 5i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("longevity_priority"),
max: 5i64,
actual: *value,
});
}
}
if let Some(ref value) = self.longevity_priority {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("longevity_priority"),
min: 1i64,
actual: *value,
});
}
}
if let Some(ref value) = self.presence_style {
if *value > 5i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("presence_style"),
max: 5i64,
actual: *value,
});
}
}
if let Some(ref value) = self.presence_style {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("presence_style"),
min: 1i64,
actual: *value,
});
}
}
if let Some(ref value) = self.score_lens {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("score_lens"),
max: 10usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.scoring_approach {
if *value > 5i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("scoring_approach"),
max: 5i64,
actual: *value,
});
}
}
if let Some(ref value) = self.scoring_approach {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("scoring_approach"),
min: 1i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod settings_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 CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
}
}
pub struct SettingsBuilder<'a, S: settings_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<i64>,
Option<Datetime>,
Option<i64>,
Option<i64>,
Option<SettingsScoreLens<'a>>,
Option<i64>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Settings<'a> {
pub fn new() -> SettingsBuilder<'a, settings_state::Empty> {
SettingsBuilder::new()
}
}
impl<'a> SettingsBuilder<'a, settings_state::Empty> {
pub fn new() -> Self {
SettingsBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn complexity_preference(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_complexity_preference(mut self, value: Option<i64>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> SettingsBuilder<'a, S>
where
S: settings_state::State,
S::CreatedAt: settings_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> SettingsBuilder<'a, settings_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
SettingsBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn longevity_priority(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_longevity_priority(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn presence_style(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_presence_style(mut self, value: Option<i64>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn score_lens(
mut self,
value: impl Into<Option<SettingsScoreLens<'a>>>,
) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_score_lens(mut self, value: Option<SettingsScoreLens<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn scoring_approach(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_scoring_approach(mut self, value: Option<i64>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S> SettingsBuilder<'a, S>
where
S: settings_state::State,
S::CreatedAt: settings_state::IsSet,
{
pub fn build(self) -> Settings<'a> {
Settings {
complexity_preference: self._fields.0,
created_at: self._fields.1.unwrap(),
longevity_priority: self._fields.2,
presence_style: self._fields.3,
score_lens: self._fields.4,
scoring_approach: self._fields.5,
updated_at: self._fields.6,
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>,
>,
) -> Settings<'a> {
Settings {
complexity_preference: self._fields.0,
created_at: self._fields.1.unwrap(),
longevity_priority: self._fields.2,
presence_style: self._fields.3,
score_lens: self._fields.4,
scoring_approach: self._fields.5,
updated_at: self._fields.6,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_social_drydown_settings() -> 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.drydown.settings"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"User preferences for fragrance review scoring",
),
),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("createdAt")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("complexityPreference"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
maximum: Some(5i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Timestamp when settings were first created",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("longevityPriority"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
maximum: Some(5i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("presenceStyle"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
maximum: Some(5i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("scoreLens"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"When viewing others' reviews: show their score or recalculate with your preferences",
),
),
max_length: Some(10usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("scoringApproach"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
maximum: Some(5i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Timestamp when settings were last updated",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}