#[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::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;
use crate::com_atproto::repo::strong_ref::StrongRef;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "tech.tokimeki.poll.poll",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Poll<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub ends_at: Datetime,
pub options: Vec<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub subject: Option<StrongRef<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)]
#[serde(rename_all = "camelCase")]
pub struct PollGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Poll<S>,
}
impl<S: BosStr> Poll<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, PollRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PollRecord;
impl XrpcResp for PollRecord {
const NSID: &'static str = "tech.tokimeki.poll.poll";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = PollGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<PollGetRecordOutput<S>> for Poll<S> {
fn from(output: PollGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Poll<S> {
const NSID: &'static str = "tech.tokimeki.poll.poll";
type Record = PollRecord;
}
impl Collection for PollRecord {
const NSID: &'static str = "tech.tokimeki.poll.poll";
type Record = PollRecord;
}
impl<S: BosStr> LexiconSchema for Poll<S> {
fn nsid() -> &'static str {
"tech.tokimeki.poll.poll"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_tech_tokimeki_poll_poll()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.options;
#[allow(unused_comparisons)]
if value.len() > 4usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("options"),
max: 4usize,
actual: value.len(),
});
}
}
{
let value = &self.options;
#[allow(unused_comparisons)]
if value.len() < 2usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("options"),
min: 2usize,
actual: value.len(),
});
}
}
Ok(())
}
}
pub mod poll_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 Options;
type CreatedAt;
type EndsAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Options = Unset;
type CreatedAt = Unset;
type EndsAt = Unset;
}
pub struct SetOptions<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetOptions<St> {}
impl<St: State> State for SetOptions<St> {
type Options = Set<members::options>;
type CreatedAt = St::CreatedAt;
type EndsAt = St::EndsAt;
}
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 Options = St::Options;
type CreatedAt = Set<members::created_at>;
type EndsAt = St::EndsAt;
}
pub struct SetEndsAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetEndsAt<St> {}
impl<St: State> State for SetEndsAt<St> {
type Options = St::Options;
type CreatedAt = St::CreatedAt;
type EndsAt = Set<members::ends_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct options(());
pub struct created_at(());
pub struct ends_at(());
}
}
pub struct PollBuilder<S: BosStr, St: poll_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<Datetime>,
Option<Vec<S>>,
Option<StrongRef<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Poll<S> {
pub fn new() -> PollBuilder<S, poll_state::Empty> {
PollBuilder::new()
}
}
impl<S: BosStr> PollBuilder<S, poll_state::Empty> {
pub fn new() -> Self {
PollBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PollBuilder<S, St>
where
St: poll_state::State,
St::CreatedAt: poll_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> PollBuilder<S, poll_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
PollBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PollBuilder<S, St>
where
St: poll_state::State,
St::EndsAt: poll_state::IsUnset,
{
pub fn ends_at(
mut self,
value: impl Into<Datetime>,
) -> PollBuilder<S, poll_state::SetEndsAt<St>> {
self._fields.1 = Option::Some(value.into());
PollBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PollBuilder<S, St>
where
St: poll_state::State,
St::Options: poll_state::IsUnset,
{
pub fn options(
mut self,
value: impl Into<Vec<S>>,
) -> PollBuilder<S, poll_state::SetOptions<St>> {
self._fields.2 = Option::Some(value.into());
PollBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: poll_state::State> PollBuilder<S, St> {
pub fn subject(mut self, value: impl Into<Option<StrongRef<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_subject(mut self, value: Option<StrongRef<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> PollBuilder<S, St>
where
St: poll_state::State,
St::Options: poll_state::IsSet,
St::CreatedAt: poll_state::IsSet,
St::EndsAt: poll_state::IsSet,
{
pub fn build(self) -> Poll<S> {
Poll {
created_at: self._fields.0.unwrap(),
ends_at: self._fields.1.unwrap(),
options: self._fields.2.unwrap(),
subject: self._fields.3,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Poll<S> {
Poll {
created_at: self._fields.0.unwrap(),
ends_at: self._fields.1.unwrap(),
options: self._fields.2.unwrap(),
subject: self._fields.3,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_tech_tokimeki_poll_poll() -> 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("tech.tokimeki.poll.poll"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static(
"A poll record that can be attached to a post via embed.external",
)),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("options"),
SmolStr::new_static("createdAt"),
SmolStr::new_static("endsAt"),
]),
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("endsAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"When the poll closes for voting",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("options"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static(
"Poll options (2-4 choices)",
)),
items: LexArrayItem::String(LexString {
max_length: Some(100usize),
max_graphemes: Some(50usize),
..Default::default()
}),
min_length: Some(2usize),
max_length: Some(4usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}