#[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 Poll<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_poll_allow_multiple")]
pub allow_multiple: Option<bool>,
#[serde(borrow)]
pub channel: AtUri<'a>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub expires_at: Option<Datetime>,
#[serde(borrow)]
pub options: Vec<CowStr<'a>>,
#[serde(borrow)]
pub question: CowStr<'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 = "app.protoimsg.chat.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 = "app.protoimsg.chat.poll";
type Record = PollRecord;
}
impl Collection for PollRecord {
const NSID: &'static str = "app.protoimsg.chat.poll";
type Record = PollRecord;
}
impl<'a> LexiconSchema for Poll<'a> {
fn nsid() -> &'static str {
"app.protoimsg.chat.poll"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_protoimsg_chat_poll()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.options;
#[allow(unused_comparisons)]
if value.len() > 10usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("options"),
max: 10usize,
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(),
});
}
}
{
let value = &self.question;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 200usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("question"),
max: 200usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
fn _default_poll_allow_multiple() -> Option<bool> {
Some(false)
}
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 Question;
type Options;
type Channel;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Question = Unset;
type Options = Unset;
type Channel = Unset;
type CreatedAt = Unset;
}
pub struct SetQuestion<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetQuestion<S> {}
impl<S: State> State for SetQuestion<S> {
type Question = Set<members::question>;
type Options = S::Options;
type Channel = S::Channel;
type CreatedAt = S::CreatedAt;
}
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 Question = S::Question;
type Options = Set<members::options>;
type Channel = S::Channel;
type CreatedAt = S::CreatedAt;
}
pub struct SetChannel<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetChannel<S> {}
impl<S: State> State for SetChannel<S> {
type Question = S::Question;
type Options = S::Options;
type Channel = Set<members::channel>;
type CreatedAt = S::CreatedAt;
}
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 Question = S::Question;
type Options = S::Options;
type Channel = S::Channel;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct question(());
pub struct options(());
pub struct channel(());
pub struct created_at(());
}
}
pub struct PollBuilder<'a, S: poll_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<bool>,
Option<AtUri<'a>>,
Option<Datetime>,
Option<Datetime>,
Option<Vec<CowStr<'a>>>,
Option<CowStr<'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, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: poll_state::State> PollBuilder<'a, S> {
pub fn allow_multiple(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_allow_multiple(mut self, value: Option<bool>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> PollBuilder<'a, S>
where
S: poll_state::State,
S::Channel: poll_state::IsUnset,
{
pub fn channel(
mut self,
value: impl Into<AtUri<'a>>,
) -> PollBuilder<'a, poll_state::SetChannel<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::CreatedAt: poll_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> PollBuilder<'a, poll_state::SetCreatedAt<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 expires_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_expires_at(mut self, value: Option<Datetime>) -> Self {
self._fields.3 = value;
self
}
}
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.4 = Option::Some(value.into());
PollBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollBuilder<'a, S>
where
S: poll_state::State,
S::Question: poll_state::IsUnset,
{
pub fn question(
mut self,
value: impl Into<CowStr<'a>>,
) -> PollBuilder<'a, poll_state::SetQuestion<S>> {
self._fields.5 = Option::Some(value.into());
PollBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PollBuilder<'a, S>
where
S: poll_state::State,
S::Question: poll_state::IsSet,
S::Options: poll_state::IsSet,
S::Channel: poll_state::IsSet,
S::CreatedAt: poll_state::IsSet,
{
pub fn build(self) -> Poll<'a> {
Poll {
allow_multiple: self._fields.0.or_else(|| Some(false)),
channel: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
expires_at: self._fields.3,
options: self._fields.4.unwrap(),
question: self._fields.5.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>,
>,
) -> Poll<'a> {
Poll {
allow_multiple: self._fields.0.or_else(|| Some(false)),
channel: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
expires_at: self._fields.3,
options: self._fields.4.unwrap(),
question: self._fields.5.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_protoimsg_chat_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("app.protoimsg.chat.poll"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A poll within a chat channel. Lives in the creator's repo.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("channel"),
SmolStr::new_static("question"),
SmolStr::new_static("options"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("allowMultiple"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("channel"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI of the channel this poll belongs to.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp of poll creation."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("expiresAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"When the poll closes. Omit for no expiry.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("options"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("Poll answer options."),
),
items: LexArrayItem::String(LexString {
max_length: Some(100usize),
..Default::default()
}),
min_length: Some(2usize),
max_length: Some(10usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("question"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The poll question.")),
max_length: Some(200usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}