#[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::{Did, AtUri, Cid};
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};
use crate::com_atproto::repo::strong_ref::StrongRef;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct League<'a> {
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(borrow)]
pub quiz_masters: Vec<Did<'a>>,
#[serde(borrow)]
pub teams: Vec<StrongRef<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct LeagueGetRecordOutput<'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: League<'a>,
}
impl<'a> League<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, LeagueRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct LeagueRecord;
impl XrpcResp for LeagueRecord {
const NSID: &'static str = "pub.quizzy.league";
const ENCODING: &'static str = "application/json";
type Output<'de> = LeagueGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<LeagueGetRecordOutput<'_>> for League<'_> {
fn from(output: LeagueGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for League<'_> {
const NSID: &'static str = "pub.quizzy.league";
type Record = LeagueRecord;
}
impl Collection for LeagueRecord {
const NSID: &'static str = "pub.quizzy.league";
type Record = LeagueRecord;
}
impl<'a> LexiconSchema for League<'a> {
fn nsid() -> &'static str {
"pub.quizzy.league"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_pub_quizzy_league()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 100usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 100usize,
actual: count,
});
}
}
}
{
let value = &self.quiz_masters;
#[allow(unused_comparisons)]
if value.len() > 5usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("quiz_masters"),
max: 5usize,
actual: value.len(),
});
}
}
{
let value = &self.quiz_masters;
#[allow(unused_comparisons)]
if value.len() < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("quiz_masters"),
min: 1usize,
actual: value.len(),
});
}
}
{
let value = &self.teams;
#[allow(unused_comparisons)]
if value.len() > 100usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("teams"),
max: 100usize,
actual: value.len(),
});
}
}
Ok(())
}
}
pub mod league_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 QuizMasters;
type Teams;
type Name;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type QuizMasters = Unset;
type Teams = Unset;
type Name = Unset;
}
pub struct SetQuizMasters<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetQuizMasters<S> {}
impl<S: State> State for SetQuizMasters<S> {
type QuizMasters = Set<members::quiz_masters>;
type Teams = S::Teams;
type Name = S::Name;
}
pub struct SetTeams<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTeams<S> {}
impl<S: State> State for SetTeams<S> {
type QuizMasters = S::QuizMasters;
type Teams = Set<members::teams>;
type Name = S::Name;
}
pub struct SetName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetName<S> {}
impl<S: State> State for SetName<S> {
type QuizMasters = S::QuizMasters;
type Teams = S::Teams;
type Name = Set<members::name>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct quiz_masters(());
pub struct teams(());
pub struct name(());
}
}
pub struct LeagueBuilder<'a, S: league_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<Vec<Did<'a>>>, Option<Vec<StrongRef<'a>>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> League<'a> {
pub fn new() -> LeagueBuilder<'a, league_state::Empty> {
LeagueBuilder::new()
}
}
impl<'a> LeagueBuilder<'a, league_state::Empty> {
pub fn new() -> Self {
LeagueBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> LeagueBuilder<'a, S>
where
S: league_state::State,
S::Name: league_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> LeagueBuilder<'a, league_state::SetName<S>> {
self._fields.0 = Option::Some(value.into());
LeagueBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LeagueBuilder<'a, S>
where
S: league_state::State,
S::QuizMasters: league_state::IsUnset,
{
pub fn quiz_masters(
mut self,
value: impl Into<Vec<Did<'a>>>,
) -> LeagueBuilder<'a, league_state::SetQuizMasters<S>> {
self._fields.1 = Option::Some(value.into());
LeagueBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LeagueBuilder<'a, S>
where
S: league_state::State,
S::Teams: league_state::IsUnset,
{
pub fn teams(
mut self,
value: impl Into<Vec<StrongRef<'a>>>,
) -> LeagueBuilder<'a, league_state::SetTeams<S>> {
self._fields.2 = Option::Some(value.into());
LeagueBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> LeagueBuilder<'a, S>
where
S: league_state::State,
S::QuizMasters: league_state::IsSet,
S::Teams: league_state::IsSet,
S::Name: league_state::IsSet,
{
pub fn build(self) -> League<'a> {
League {
name: self._fields.0.unwrap(),
quiz_masters: self._fields.1.unwrap(),
teams: self._fields.2.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>,
>,
) -> League<'a> {
League {
name: self._fields.0.unwrap(),
quiz_masters: self._fields.1.unwrap(),
teams: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_pub_quizzy_league() -> 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("pub.quizzy.league"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("A quiz league with quiz masters and teams"),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"),
SmolStr::new_static("quizMasters"),
SmolStr::new_static("teams")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Name of the league")),
max_length: Some(1000usize),
max_graphemes: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("quizMasters"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"DIDs of quiz masters who can run quizzes for this league",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
min_length: Some(1usize),
max_length: Some(5usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("teams"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("Teams participating in this league"),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
max_length: Some(100usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}