#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::bytes::Bytes;
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, Did, UriValue};
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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "social.pmsky.vote",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Vote<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub aid: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub cts: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub reasons: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default, with = "jacquard_common::opt_serde_bytes_helper")]
pub sig: Option<Bytes>,
pub src: Did<S>,
pub uri: UriValue<S>,
pub val: i64,
#[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 VoteGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Vote<S>,
}
impl<S: BosStr> Vote<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, VoteRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct VoteRecord;
impl XrpcResp for VoteRecord {
const NSID: &'static str = "social.pmsky.vote";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = VoteGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<VoteGetRecordOutput<S>> for Vote<S> {
fn from(output: VoteGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Vote<S> {
const NSID: &'static str = "social.pmsky.vote";
type Record = VoteRecord;
}
impl Collection for VoteRecord {
const NSID: &'static str = "social.pmsky.vote";
type Record = VoteRecord;
}
impl<S: BosStr> LexiconSchema for Vote<S> {
fn nsid() -> &'static str {
"social.pmsky.vote"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_social_pmsky_vote()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod vote_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 Uri;
type Src;
type Val;
type Cts;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Src = Unset;
type Val = Unset;
type Cts = Unset;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Uri = Set<members::uri>;
type Src = St::Src;
type Val = St::Val;
type Cts = St::Cts;
}
pub struct SetSrc<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSrc<St> {}
impl<St: State> State for SetSrc<St> {
type Uri = St::Uri;
type Src = Set<members::src>;
type Val = St::Val;
type Cts = St::Cts;
}
pub struct SetVal<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetVal<St> {}
impl<St: State> State for SetVal<St> {
type Uri = St::Uri;
type Src = St::Src;
type Val = Set<members::val>;
type Cts = St::Cts;
}
pub struct SetCts<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCts<St> {}
impl<St: State> State for SetCts<St> {
type Uri = St::Uri;
type Src = St::Src;
type Val = St::Val;
type Cts = Set<members::cts>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct src(());
pub struct val(());
pub struct cts(());
}
}
pub struct VoteBuilder<S: BosStr, St: vote_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Cid<S>>,
Option<Datetime>,
Option<Vec<S>>,
Option<Bytes>,
Option<Did<S>>,
Option<UriValue<S>>,
Option<i64>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Vote<S> {
pub fn new() -> VoteBuilder<S, vote_state::Empty> {
VoteBuilder::new()
}
}
impl<S: BosStr> VoteBuilder<S, vote_state::Empty> {
pub fn new() -> Self {
VoteBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: vote_state::State> VoteBuilder<S, St> {
pub fn aid(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_aid(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: vote_state::State> VoteBuilder<S, St> {
pub fn cid(mut self, value: impl Into<Option<Cid<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cid(mut self, value: Option<Cid<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> VoteBuilder<S, St>
where
St: vote_state::State,
St::Cts: vote_state::IsUnset,
{
pub fn cts(mut self, value: impl Into<Datetime>) -> VoteBuilder<S, vote_state::SetCts<St>> {
self._fields.2 = Option::Some(value.into());
VoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: vote_state::State> VoteBuilder<S, St> {
pub fn reasons(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_reasons(mut self, value: Option<Vec<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: vote_state::State> VoteBuilder<S, St> {
pub fn sig(mut self, value: impl Into<Option<Bytes>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_sig(mut self, value: Option<Bytes>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> VoteBuilder<S, St>
where
St: vote_state::State,
St::Src: vote_state::IsUnset,
{
pub fn src(mut self, value: impl Into<Did<S>>) -> VoteBuilder<S, vote_state::SetSrc<St>> {
self._fields.5 = Option::Some(value.into());
VoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VoteBuilder<S, St>
where
St: vote_state::State,
St::Uri: vote_state::IsUnset,
{
pub fn uri(mut self, value: impl Into<UriValue<S>>) -> VoteBuilder<S, vote_state::SetUri<St>> {
self._fields.6 = Option::Some(value.into());
VoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VoteBuilder<S, St>
where
St: vote_state::State,
St::Val: vote_state::IsUnset,
{
pub fn val(mut self, value: impl Into<i64>) -> VoteBuilder<S, vote_state::SetVal<St>> {
self._fields.7 = Option::Some(value.into());
VoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VoteBuilder<S, St>
where
St: vote_state::State,
St::Uri: vote_state::IsSet,
St::Src: vote_state::IsSet,
St::Val: vote_state::IsSet,
St::Cts: vote_state::IsSet,
{
pub fn build(self) -> Vote<S> {
Vote {
aid: self._fields.0,
cid: self._fields.1,
cts: self._fields.2.unwrap(),
reasons: self._fields.3,
sig: self._fields.4,
src: self._fields.5.unwrap(),
uri: self._fields.6.unwrap(),
val: self._fields.7.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Vote<S> {
Vote {
aid: self._fields.0,
cid: self._fields.1,
cts: self._fields.2.unwrap(),
reasons: self._fields.3,
sig: self._fields.4,
src: self._fields.5.unwrap(),
uri: self._fields.6.unwrap(),
val: self._fields.7.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_social_pmsky_vote() -> 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("social.pmsky.vote"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
description: Some(
CowStr::new_static(
"A vote record, representing a user's approval or disapproval of the referenced resource. The resource my be a proposal, a post, a web page, or anything that can be agreed or disagreed with.",
),
),
required: Some(
vec![
SmolStr::new_static("src"), SmolStr::new_static("uri"),
SmolStr::new_static("val"), SmolStr::new_static("cts")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("aid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The persistent, anonymous identifier for the user casting the vote.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optionally, CID specifying the specific version of 'uri' resource this vote applies to.",
),
),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cts"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp when this vote was created."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("reasons"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"An optional array of predefined reasons justifying the vote.",
),
),
items: LexArrayItem::String(LexString {
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("sig"),
LexObjectProperty::Bytes(LexBytes { ..Default::default() }),
);
map.insert(
SmolStr::new_static("src"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"the account creating the vote, not necessarily the same as the user who voted",
),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT URI of the record, repository (account), or other resource that this vote applies to.",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("val"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}