#[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::app_certified::badge::award::Award;
#[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 = "app.certified.badge.response",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Response<S: BosStr = DefaultStr> {
pub badge_award: Award<S>,
pub created_at: Datetime,
pub response: ResponseResponse<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub weight: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ResponseResponse<S: BosStr = DefaultStr> {
Accepted,
Rejected,
Other(S),
}
impl<S: BosStr> ResponseResponse<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Accepted => "accepted",
Self::Rejected => "rejected",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"accepted" => Self::Accepted,
"rejected" => Self::Rejected,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ResponseResponse<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ResponseResponse<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ResponseResponse<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for ResponseResponse<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for ResponseResponse<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ResponseResponse<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ResponseResponse<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ResponseResponse::Accepted => ResponseResponse::Accepted,
ResponseResponse::Rejected => ResponseResponse::Rejected,
ResponseResponse::Other(v) => ResponseResponse::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ResponseGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Response<S>,
}
impl<S: BosStr> Response<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ResponseRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ResponseRecord;
impl XrpcResp for ResponseRecord {
const NSID: &'static str = "app.certified.badge.response";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ResponseGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ResponseGetRecordOutput<S>> for Response<S> {
fn from(output: ResponseGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Response<S> {
const NSID: &'static str = "app.certified.badge.response";
type Record = ResponseRecord;
}
impl Collection for ResponseRecord {
const NSID: &'static str = "app.certified.badge.response";
type Record = ResponseRecord;
}
impl<S: BosStr> LexiconSchema for Response<S> {
fn nsid() -> &'static str {
"app.certified.badge.response"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_certified_badge_response()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.weight {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("weight"),
max: 50usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod response_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 BadgeAward;
type Response;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type BadgeAward = Unset;
type Response = Unset;
type CreatedAt = Unset;
}
pub struct SetBadgeAward<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetBadgeAward<St> {}
impl<St: State> State for SetBadgeAward<St> {
type BadgeAward = Set<members::badge_award>;
type Response = St::Response;
type CreatedAt = St::CreatedAt;
}
pub struct SetResponse<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetResponse<St> {}
impl<St: State> State for SetResponse<St> {
type BadgeAward = St::BadgeAward;
type Response = Set<members::response>;
type CreatedAt = St::CreatedAt;
}
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 BadgeAward = St::BadgeAward;
type Response = St::Response;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct badge_award(());
pub struct response(());
pub struct created_at(());
}
}
pub struct ResponseBuilder<S: BosStr, St: response_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Award<S>>,
Option<Datetime>,
Option<ResponseResponse<S>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Response<S> {
pub fn new() -> ResponseBuilder<S, response_state::Empty> {
ResponseBuilder::new()
}
}
impl<S: BosStr> ResponseBuilder<S, response_state::Empty> {
pub fn new() -> Self {
ResponseBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ResponseBuilder<S, St>
where
St: response_state::State,
St::BadgeAward: response_state::IsUnset,
{
pub fn badge_award(
mut self,
value: impl Into<Award<S>>,
) -> ResponseBuilder<S, response_state::SetBadgeAward<St>> {
self._fields.0 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ResponseBuilder<S, St>
where
St: response_state::State,
St::CreatedAt: response_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ResponseBuilder<S, response_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ResponseBuilder<S, St>
where
St: response_state::State,
St::Response: response_state::IsUnset,
{
pub fn response(
mut self,
value: impl Into<ResponseResponse<S>>,
) -> ResponseBuilder<S, response_state::SetResponse<St>> {
self._fields.2 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: response_state::State> ResponseBuilder<S, St> {
pub fn weight(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_weight(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> ResponseBuilder<S, St>
where
St: response_state::State,
St::BadgeAward: response_state::IsSet,
St::Response: response_state::IsSet,
St::CreatedAt: response_state::IsSet,
{
pub fn build(self) -> Response<S> {
Response {
badge_award: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
response: self._fields.2.unwrap(),
weight: self._fields.3,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Response<S> {
Response {
badge_award: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
response: self._fields.2.unwrap(),
weight: self._fields.3,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_certified_badge_response() -> 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("app.certified.badge.response"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("Recipient response to a badge award."),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("badgeAward"),
SmolStr::new_static("response"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("badgeAward"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.certified.badge.award"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Client-declared timestamp when this record was originally created",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("response"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The recipient’s response for the badge (accepted or rejected).",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("weight"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional relative weight for accepted badges, assigned by the recipient.",
),
),
max_length: Some(50usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}