#[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::app_certified::badge::award::Award;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "app.certified.badge.response",
tag = "$type"
)]
pub struct Response<'a> {
#[serde(borrow)]
pub badge_award: Award<'a>,
pub created_at: Datetime,
#[serde(borrow)]
pub response: ResponseResponse<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub weight: Option<CowStr<'a>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ResponseResponse<'a> {
Accepted,
Rejected,
Other(CowStr<'a>),
}
impl<'a> ResponseResponse<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Accepted => "accepted",
Self::Rejected => "rejected",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for ResponseResponse<'a> {
fn from(s: &'a str) -> Self {
match s {
"accepted" => Self::Accepted,
"rejected" => Self::Rejected,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for ResponseResponse<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"accepted" => Self::Accepted,
"rejected" => Self::Rejected,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for ResponseResponse<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for ResponseResponse<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for ResponseResponse<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for ResponseResponse<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for ResponseResponse<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for ResponseResponse<'_> {
type Output = ResponseResponse<'static>;
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<'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: Response<'a>,
}
impl<'a> Response<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ResponseRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = ResponseGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ResponseGetRecordOutput<'_>> for Response<'_> {
fn from(output: ResponseGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Response<'_> {
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<'a> LexiconSchema for Response<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Response;
type CreatedAt;
type BadgeAward;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Response = Unset;
type CreatedAt = Unset;
type BadgeAward = Unset;
}
pub struct SetResponse<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetResponse<S> {}
impl<S: State> State for SetResponse<S> {
type Response = Set<members::response>;
type CreatedAt = S::CreatedAt;
type BadgeAward = S::BadgeAward;
}
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 Response = S::Response;
type CreatedAt = Set<members::created_at>;
type BadgeAward = S::BadgeAward;
}
pub struct SetBadgeAward<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetBadgeAward<S> {}
impl<S: State> State for SetBadgeAward<S> {
type Response = S::Response;
type CreatedAt = S::CreatedAt;
type BadgeAward = Set<members::badge_award>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct response(());
pub struct created_at(());
pub struct badge_award(());
}
}
pub struct ResponseBuilder<'a, S: response_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Award<'a>>,
Option<Datetime>,
Option<ResponseResponse<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Response<'a> {
pub fn new() -> ResponseBuilder<'a, response_state::Empty> {
ResponseBuilder::new()
}
}
impl<'a> ResponseBuilder<'a, response_state::Empty> {
pub fn new() -> Self {
ResponseBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ResponseBuilder<'a, S>
where
S: response_state::State,
S::BadgeAward: response_state::IsUnset,
{
pub fn badge_award(
mut self,
value: impl Into<Award<'a>>,
) -> ResponseBuilder<'a, response_state::SetBadgeAward<S>> {
self._fields.0 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ResponseBuilder<'a, S>
where
S: response_state::State,
S::CreatedAt: response_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ResponseBuilder<'a, response_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ResponseBuilder<'a, S>
where
S: response_state::State,
S::Response: response_state::IsUnset,
{
pub fn response(
mut self,
value: impl Into<ResponseResponse<'a>>,
) -> ResponseBuilder<'a, response_state::SetResponse<S>> {
self._fields.2 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: response_state::State> ResponseBuilder<'a, S> {
pub fn weight(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_weight(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> ResponseBuilder<'a, S>
where
S: response_state::State,
S::Response: response_state::IsSet,
S::CreatedAt: response_state::IsSet,
S::BadgeAward: response_state::IsSet,
{
pub fn build(self) -> Response<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Response<'a> {
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> {
#[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.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()
}
}