#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{Did, Handle, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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::tools_ozone::verification::VerificationView;
use crate::tools_ozone::verification::grant_verifications;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GrantError<S: BosStr = DefaultStr> {
pub error: S,
pub subject: Did<S>,
#[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", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GrantVerifications<S: BosStr = DefaultStr> {
pub verifications: Vec<grant_verifications::VerificationInput<S>>,
#[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", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GrantVerificationsOutput<S: BosStr = DefaultStr> {
pub failed_verifications: Vec<grant_verifications::GrantError<S>>,
pub verifications: Vec<VerificationView<S>>,
#[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", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct VerificationInput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
pub display_name: S,
pub handle: Handle<S>,
pub subject: Did<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for GrantError<S> {
fn nsid() -> &'static str {
"tools.ozone.verification.grantVerifications"
}
fn def_name() -> &'static str {
"grantError"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_tools_ozone_verification_grantVerifications()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub struct GrantVerificationsResponse;
impl jacquard_common::xrpc::XrpcResp for GrantVerificationsResponse {
const NSID: &'static str = "tools.ozone.verification.grantVerifications";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GrantVerificationsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GrantVerifications<S> {
const NSID: &'static str = "tools.ozone.verification.grantVerifications";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = GrantVerificationsResponse;
}
pub struct GrantVerificationsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GrantVerificationsRequest {
const PATH: &'static str = "/xrpc/tools.ozone.verification.grantVerifications";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = GrantVerifications<S>;
type Response = GrantVerificationsResponse;
}
impl<S: BosStr> LexiconSchema for VerificationInput<S> {
fn nsid() -> &'static str {
"tools.ozone.verification.grantVerifications"
}
fn def_name() -> &'static str {
"verificationInput"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_tools_ozone_verification_grantVerifications()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod grant_error_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 Error;
type Subject;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Error = Unset;
type Subject = Unset;
}
pub struct SetError<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetError<St> {}
impl<St: State> State for SetError<St> {
type Error = Set<members::error>;
type Subject = St::Subject;
}
pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSubject<St> {}
impl<St: State> State for SetSubject<St> {
type Error = St::Error;
type Subject = Set<members::subject>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct error(());
pub struct subject(());
}
}
pub struct GrantErrorBuilder<S: BosStr, St: grant_error_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<Did<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GrantError<S> {
pub fn new() -> GrantErrorBuilder<S, grant_error_state::Empty> {
GrantErrorBuilder::new()
}
}
impl<S: BosStr> GrantErrorBuilder<S, grant_error_state::Empty> {
pub fn new() -> Self {
GrantErrorBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GrantErrorBuilder<S, St>
where
St: grant_error_state::State,
St::Error: grant_error_state::IsUnset,
{
pub fn error(
mut self,
value: impl Into<S>,
) -> GrantErrorBuilder<S, grant_error_state::SetError<St>> {
self._fields.0 = Option::Some(value.into());
GrantErrorBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GrantErrorBuilder<S, St>
where
St: grant_error_state::State,
St::Subject: grant_error_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<Did<S>>,
) -> GrantErrorBuilder<S, grant_error_state::SetSubject<St>> {
self._fields.1 = Option::Some(value.into());
GrantErrorBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GrantErrorBuilder<S, St>
where
St: grant_error_state::State,
St::Error: grant_error_state::IsSet,
St::Subject: grant_error_state::IsSet,
{
pub fn build(self) -> GrantError<S> {
GrantError {
error: self._fields.0.unwrap(),
subject: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> GrantError<S> {
GrantError {
error: self._fields.0.unwrap(),
subject: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_tools_ozone_verification_grantVerifications() -> 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("tools.ozone.verification.grantVerifications"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("grantError"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("Error object for failed verifications."),
),
required: Some(
vec![
SmolStr::new_static("error"), SmolStr::new_static("subject")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("error"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Error message describing the reason for failure.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The did of the subject being verified"),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcProcedure(LexXrpcProcedure {
input: Some(LexXrpcBody {
encoding: CowStr::new_static("application/json"),
schema: Some(
LexXrpcBodySchema::Object(LexObject {
required: Some(vec![SmolStr::new_static("verifications")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("verifications"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Array of verification requests to process",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#verificationInput"),
..Default::default()
}),
max_length: Some(100usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("verificationInput"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("subject"),
SmolStr::new_static("handle"),
SmolStr::new_static("displayName")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Timestamp for verification record. Defaults to current time when not specified.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("displayName"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Display name of the subject the verification applies to at the moment of verifying.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("handle"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Handle of the subject the verification applies to at the moment of verifying.",
),
),
format: Some(LexStringFormat::Handle),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The did of the subject being verified"),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod grant_verifications_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 Verifications;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Verifications = Unset;
}
pub struct SetVerifications<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetVerifications<St> {}
impl<St: State> State for SetVerifications<St> {
type Verifications = Set<members::verifications>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct verifications(());
}
}
pub struct GrantVerificationsBuilder<S: BosStr, St: grant_verifications_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<grant_verifications::VerificationInput<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GrantVerifications<S> {
pub fn new() -> GrantVerificationsBuilder<S, grant_verifications_state::Empty> {
GrantVerificationsBuilder::new()
}
}
impl<S: BosStr> GrantVerificationsBuilder<S, grant_verifications_state::Empty> {
pub fn new() -> Self {
GrantVerificationsBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GrantVerificationsBuilder<S, St>
where
St: grant_verifications_state::State,
St::Verifications: grant_verifications_state::IsUnset,
{
pub fn verifications(
mut self,
value: impl Into<Vec<grant_verifications::VerificationInput<S>>>,
) -> GrantVerificationsBuilder<S, grant_verifications_state::SetVerifications<St>> {
self._fields.0 = Option::Some(value.into());
GrantVerificationsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GrantVerificationsBuilder<S, St>
where
St: grant_verifications_state::State,
St::Verifications: grant_verifications_state::IsSet,
{
pub fn build(self) -> GrantVerifications<S> {
GrantVerifications {
verifications: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> GrantVerifications<S> {
GrantVerifications {
verifications: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
pub mod verification_input_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 DisplayName;
type Subject;
type Handle;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type DisplayName = Unset;
type Subject = Unset;
type Handle = Unset;
}
pub struct SetDisplayName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDisplayName<St> {}
impl<St: State> State for SetDisplayName<St> {
type DisplayName = Set<members::display_name>;
type Subject = St::Subject;
type Handle = St::Handle;
}
pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSubject<St> {}
impl<St: State> State for SetSubject<St> {
type DisplayName = St::DisplayName;
type Subject = Set<members::subject>;
type Handle = St::Handle;
}
pub struct SetHandle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetHandle<St> {}
impl<St: State> State for SetHandle<St> {
type DisplayName = St::DisplayName;
type Subject = St::Subject;
type Handle = Set<members::handle>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct display_name(());
pub struct subject(());
pub struct handle(());
}
}
pub struct VerificationInputBuilder<S: BosStr, St: verification_input_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<S>, Option<Handle<S>>, Option<Did<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> VerificationInput<S> {
pub fn new() -> VerificationInputBuilder<S, verification_input_state::Empty> {
VerificationInputBuilder::new()
}
}
impl<S: BosStr> VerificationInputBuilder<S, verification_input_state::Empty> {
pub fn new() -> Self {
VerificationInputBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: verification_input_state::State> VerificationInputBuilder<S, St> {
pub fn created_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_created_at(mut self, value: Option<Datetime>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> VerificationInputBuilder<S, St>
where
St: verification_input_state::State,
St::DisplayName: verification_input_state::IsUnset,
{
pub fn display_name(
mut self,
value: impl Into<S>,
) -> VerificationInputBuilder<S, verification_input_state::SetDisplayName<St>> {
self._fields.1 = Option::Some(value.into());
VerificationInputBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationInputBuilder<S, St>
where
St: verification_input_state::State,
St::Handle: verification_input_state::IsUnset,
{
pub fn handle(
mut self,
value: impl Into<Handle<S>>,
) -> VerificationInputBuilder<S, verification_input_state::SetHandle<St>> {
self._fields.2 = Option::Some(value.into());
VerificationInputBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationInputBuilder<S, St>
where
St: verification_input_state::State,
St::Subject: verification_input_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<Did<S>>,
) -> VerificationInputBuilder<S, verification_input_state::SetSubject<St>> {
self._fields.3 = Option::Some(value.into());
VerificationInputBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> VerificationInputBuilder<S, St>
where
St: verification_input_state::State,
St::DisplayName: verification_input_state::IsSet,
St::Subject: verification_input_state::IsSet,
St::Handle: verification_input_state::IsSet,
{
pub fn build(self) -> VerificationInput<S> {
VerificationInput {
created_at: self._fields.0,
display_name: self._fields.1.unwrap(),
handle: self._fields.2.unwrap(),
subject: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> VerificationInput<S> {
VerificationInput {
created_at: self._fields.0,
display_name: self._fields.1.unwrap(),
handle: self._fields.2.unwrap(),
subject: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}