#[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};
use crate::com_atproto::repo::strong_ref::StrongRef;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "tech.tokimeki.poll.poll", tag = "$type")]
pub struct Poll<'a> {
pub created_at: Datetime,
pub ends_at: Datetime,
#[serde(borrow)]
pub options: Vec<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub subject: Option<StrongRef<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PollGetRecordOutput<'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: Poll<'a>,
}
impl<'a> Poll<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, PollRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = PollGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<PollGetRecordOutput<'_>> for Poll<'_> {
fn from(output: PollGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Poll<'_> {
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<'a> LexiconSchema for Poll<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetOptions<S> {}
impl<S: State> State for SetOptions<S> {
type Options = Set<members::options>;
type CreatedAt = S::CreatedAt;
type EndsAt = S::EndsAt;
}
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 Options = S::Options;
type CreatedAt = Set<members::created_at>;
type EndsAt = S::EndsAt;
}
pub struct SetEndsAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetEndsAt<S> {}
impl<S: State> State for SetEndsAt<S> {
type Options = S::Options;
type CreatedAt = S::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<'a, S: poll_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<Datetime>,
Option<Vec<CowStr<'a>>>,
Option<StrongRef<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Poll<'a> {
pub fn new() -> PollBuilder<'a, poll_state::Empty> {
PollBuilder::new()
}
}
impl<'a> PollBuilder<'a, poll_state::Empty> {
pub fn new() -> Self {
PollBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollBuilder<'a, S>
where
S: poll_state::State,
S::CreatedAt: poll_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> PollBuilder<'a, poll_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
PollBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollBuilder<'a, S>
where
S: poll_state::State,
S::EndsAt: poll_state::IsUnset,
{
pub fn ends_at(
mut self,
value: impl Into<Datetime>,
) -> PollBuilder<'a, poll_state::SetEndsAt<S>> {
self._fields.1 = Option::Some(value.into());
PollBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollBuilder<'a, S>
where
S: poll_state::State,
S::Options: poll_state::IsUnset,
{
pub fn options(
mut self,
value: impl Into<Vec<CowStr<'a>>>,
) -> PollBuilder<'a, poll_state::SetOptions<S>> {
self._fields.2 = Option::Some(value.into());
PollBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: poll_state::State> PollBuilder<'a, S> {
pub fn subject(mut self, value: impl Into<Option<StrongRef<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_subject(mut self, value: Option<StrongRef<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> PollBuilder<'a, S>
where
S: poll_state::State,
S::Options: poll_state::IsSet,
S::CreatedAt: poll_state::IsSet,
S::EndsAt: poll_state::IsSet,
{
pub fn build(self) -> Poll<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Poll<'a> {
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> {
#[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("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()
}
}