#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, 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::blob::BlobRef;
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::types::value::Data;
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};
use crate::app_fitsky::workout_plan;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "app.fitsky.workoutPlan",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct WorkoutPlan<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub exercises: Vec<workout_plan::PlanExercise<S>>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub og_image: Option<BlobRef<S>>,
pub r#type: WorkoutPlanType<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 WorkoutPlanType<S: BosStr = DefaultStr> {
Weightlifting,
Bodyweight,
Yoga,
Hiit,
Other(S),
}
impl<S: BosStr> WorkoutPlanType<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Weightlifting => "weightlifting",
Self::Bodyweight => "bodyweight",
Self::Yoga => "yoga",
Self::Hiit => "hiit",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"weightlifting" => Self::Weightlifting,
"bodyweight" => Self::Bodyweight,
"yoga" => Self::Yoga,
"hiit" => Self::Hiit,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for WorkoutPlanType<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for WorkoutPlanType<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for WorkoutPlanType<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 WorkoutPlanType<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 WorkoutPlanType<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for WorkoutPlanType<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = WorkoutPlanType<S::Output>;
fn into_static(self) -> Self::Output {
match self {
WorkoutPlanType::Weightlifting => WorkoutPlanType::Weightlifting,
WorkoutPlanType::Bodyweight => WorkoutPlanType::Bodyweight,
WorkoutPlanType::Yoga => WorkoutPlanType::Yoga,
WorkoutPlanType::Hiit => WorkoutPlanType::Hiit,
WorkoutPlanType::Other(v) => WorkoutPlanType::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct WorkoutPlanGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: WorkoutPlan<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct PlanExercise<S: BosStr = DefaultStr> {
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub notes: Option<S>,
pub target_reps: i64,
pub target_sets: i64,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> WorkoutPlan<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, WorkoutPlanRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct WorkoutPlanRecord;
impl XrpcResp for WorkoutPlanRecord {
const NSID: &'static str = "app.fitsky.workoutPlan";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = WorkoutPlanGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<WorkoutPlanGetRecordOutput<S>> for WorkoutPlan<S> {
fn from(output: WorkoutPlanGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for WorkoutPlan<S> {
const NSID: &'static str = "app.fitsky.workoutPlan";
type Record = WorkoutPlanRecord;
}
impl Collection for WorkoutPlanRecord {
const NSID: &'static str = "app.fitsky.workoutPlan";
type Record = WorkoutPlanRecord;
}
impl<S: BosStr> LexiconSchema for WorkoutPlan<S> {
fn nsid() -> &'static str {
"app.fitsky.workoutPlan"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_fitsky_workoutPlan()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.og_image {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("og_image"),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.og_image {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/png", "image/jpeg", "image/webp"];
let matched = accepted
.iter()
.any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix)
&& mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("og_image"),
accepted: vec![
"image/png".to_string(), "image/jpeg".to_string(),
"image/webp".to_string()
],
actual: mime.to_string(),
});
}
}
}
{
let value = &self.r#type;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 64usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("type"),
max: 64usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for PlanExercise<S> {
fn nsid() -> &'static str {
"app.fitsky.workoutPlan"
}
fn def_name() -> &'static str {
"planExercise"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_fitsky_workoutPlan()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.notes {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("notes"),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.target_reps;
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("target_reps"),
min: 1i64,
actual: *value,
});
}
}
{
let value = &self.target_sets;
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("target_sets"),
min: 1i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod workout_plan_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 Exercises;
type CreatedAt;
type Type;
type Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Exercises = Unset;
type CreatedAt = Unset;
type Type = Unset;
type Name = Unset;
}
pub struct SetExercises<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetExercises<St> {}
impl<St: State> State for SetExercises<St> {
type Exercises = Set<members::exercises>;
type CreatedAt = St::CreatedAt;
type Type = St::Type;
type Name = St::Name;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type Exercises = St::Exercises;
type CreatedAt = Set<members::created_at>;
type Type = St::Type;
type Name = St::Name;
}
pub struct SetType<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetType<St> {}
impl<St: State> State for SetType<St> {
type Exercises = St::Exercises;
type CreatedAt = St::CreatedAt;
type Type = Set<members::r#type>;
type Name = St::Name;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type Exercises = St::Exercises;
type CreatedAt = St::CreatedAt;
type Type = St::Type;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct exercises(());
pub struct created_at(());
pub struct r#type(());
pub struct name(());
}
}
pub struct WorkoutPlanBuilder<S: BosStr, St: workout_plan_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<Vec<workout_plan::PlanExercise<S>>>,
Option<S>,
Option<BlobRef<S>>,
Option<WorkoutPlanType<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> WorkoutPlan<S> {
pub fn new() -> WorkoutPlanBuilder<S, workout_plan_state::Empty> {
WorkoutPlanBuilder::new()
}
}
impl<S: BosStr> WorkoutPlanBuilder<S, workout_plan_state::Empty> {
pub fn new() -> Self {
WorkoutPlanBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> WorkoutPlanBuilder<S, St>
where
St: workout_plan_state::State,
St::CreatedAt: workout_plan_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> WorkoutPlanBuilder<S, workout_plan_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
WorkoutPlanBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> WorkoutPlanBuilder<S, St>
where
St: workout_plan_state::State,
St::Exercises: workout_plan_state::IsUnset,
{
pub fn exercises(
mut self,
value: impl Into<Vec<workout_plan::PlanExercise<S>>>,
) -> WorkoutPlanBuilder<S, workout_plan_state::SetExercises<St>> {
self._fields.1 = Option::Some(value.into());
WorkoutPlanBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> WorkoutPlanBuilder<S, St>
where
St: workout_plan_state::State,
St::Name: workout_plan_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> WorkoutPlanBuilder<S, workout_plan_state::SetName<St>> {
self._fields.2 = Option::Some(value.into());
WorkoutPlanBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: workout_plan_state::State> WorkoutPlanBuilder<S, St> {
pub fn og_image(mut self, value: impl Into<Option<BlobRef<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_og_image(mut self, value: Option<BlobRef<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> WorkoutPlanBuilder<S, St>
where
St: workout_plan_state::State,
St::Type: workout_plan_state::IsUnset,
{
pub fn r#type(
mut self,
value: impl Into<WorkoutPlanType<S>>,
) -> WorkoutPlanBuilder<S, workout_plan_state::SetType<St>> {
self._fields.4 = Option::Some(value.into());
WorkoutPlanBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> WorkoutPlanBuilder<S, St>
where
St: workout_plan_state::State,
St::Exercises: workout_plan_state::IsSet,
St::CreatedAt: workout_plan_state::IsSet,
St::Type: workout_plan_state::IsSet,
St::Name: workout_plan_state::IsSet,
{
pub fn build(self) -> WorkoutPlan<S> {
WorkoutPlan {
created_at: self._fields.0.unwrap(),
exercises: self._fields.1.unwrap(),
name: self._fields.2.unwrap(),
og_image: self._fields.3,
r#type: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> WorkoutPlan<S> {
WorkoutPlan {
created_at: self._fields.0.unwrap(),
exercises: self._fields.1.unwrap(),
name: self._fields.2.unwrap(),
og_image: self._fields.3,
r#type: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_fitsky_workoutPlan() -> 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("app.fitsky.workoutPlan"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("A reusable workout plan template"),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"), SmolStr::new_static("type"),
SmolStr::new_static("exercises"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("exercises"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#planExercise"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ogImage"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("type"),
LexObjectProperty::String(LexString {
max_length: Some(64usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("planExercise"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"),
SmolStr::new_static("targetSets"),
SmolStr::new_static("targetReps")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_length: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("notes"),
LexObjectProperty::String(LexString {
max_length: Some(512usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("targetReps"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("targetSets"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod plan_exercise_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 Name;
type TargetReps;
type TargetSets;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type TargetReps = Unset;
type TargetSets = Unset;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type Name = Set<members::name>;
type TargetReps = St::TargetReps;
type TargetSets = St::TargetSets;
}
pub struct SetTargetReps<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTargetReps<St> {}
impl<St: State> State for SetTargetReps<St> {
type Name = St::Name;
type TargetReps = Set<members::target_reps>;
type TargetSets = St::TargetSets;
}
pub struct SetTargetSets<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTargetSets<St> {}
impl<St: State> State for SetTargetSets<St> {
type Name = St::Name;
type TargetReps = St::TargetReps;
type TargetSets = Set<members::target_sets>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct target_reps(());
pub struct target_sets(());
}
}
pub struct PlanExerciseBuilder<S: BosStr, St: plan_exercise_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<S>, Option<i64>, Option<i64>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> PlanExercise<S> {
pub fn new() -> PlanExerciseBuilder<S, plan_exercise_state::Empty> {
PlanExerciseBuilder::new()
}
}
impl<S: BosStr> PlanExerciseBuilder<S, plan_exercise_state::Empty> {
pub fn new() -> Self {
PlanExerciseBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PlanExerciseBuilder<S, St>
where
St: plan_exercise_state::State,
St::Name: plan_exercise_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> PlanExerciseBuilder<S, plan_exercise_state::SetName<St>> {
self._fields.0 = Option::Some(value.into());
PlanExerciseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: plan_exercise_state::State> PlanExerciseBuilder<S, St> {
pub fn notes(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_notes(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> PlanExerciseBuilder<S, St>
where
St: plan_exercise_state::State,
St::TargetReps: plan_exercise_state::IsUnset,
{
pub fn target_reps(
mut self,
value: impl Into<i64>,
) -> PlanExerciseBuilder<S, plan_exercise_state::SetTargetReps<St>> {
self._fields.2 = Option::Some(value.into());
PlanExerciseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PlanExerciseBuilder<S, St>
where
St: plan_exercise_state::State,
St::TargetSets: plan_exercise_state::IsUnset,
{
pub fn target_sets(
mut self,
value: impl Into<i64>,
) -> PlanExerciseBuilder<S, plan_exercise_state::SetTargetSets<St>> {
self._fields.3 = Option::Some(value.into());
PlanExerciseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PlanExerciseBuilder<S, St>
where
St: plan_exercise_state::State,
St::Name: plan_exercise_state::IsSet,
St::TargetReps: plan_exercise_state::IsSet,
St::TargetSets: plan_exercise_state::IsSet,
{
pub fn build(self) -> PlanExercise<S> {
PlanExercise {
name: self._fields.0.unwrap(),
notes: self._fields.1,
target_reps: self._fields.2.unwrap(),
target_sets: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> PlanExercise<S> {
PlanExercise {
name: self._fields.0.unwrap(),
notes: self._fields.1,
target_reps: self._fields.2.unwrap(),
target_sets: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}