#[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, UriValue};
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::zone_stratos::boundary::Domain;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Enrollment<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub boundaries: Option<Vec<Domain<'a>>>,
pub created_at: Datetime,
#[serde(borrow)]
pub service: UriValue<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct EnrollmentGetRecordOutput<'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: Enrollment<'a>,
}
impl<'a> Enrollment<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, EnrollmentRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EnrollmentRecord;
impl XrpcResp for EnrollmentRecord {
const NSID: &'static str = "zone.stratos.actor.enrollment";
const ENCODING: &'static str = "application/json";
type Output<'de> = EnrollmentGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<EnrollmentGetRecordOutput<'_>> for Enrollment<'_> {
fn from(output: EnrollmentGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Enrollment<'_> {
const NSID: &'static str = "zone.stratos.actor.enrollment";
type Record = EnrollmentRecord;
}
impl Collection for EnrollmentRecord {
const NSID: &'static str = "zone.stratos.actor.enrollment";
type Record = EnrollmentRecord;
}
impl<'a> LexiconSchema for Enrollment<'a> {
fn nsid() -> &'static str {
"zone.stratos.actor.enrollment"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_zone_stratos_actor_enrollment()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.boundaries {
#[allow(unused_comparisons)]
if value.len() > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("boundaries"),
max: 50usize,
actual: value.len(),
});
}
}
Ok(())
}
}
pub mod enrollment_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 Service;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Service = Unset;
type CreatedAt = Unset;
}
pub struct SetService<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetService<S> {}
impl<S: State> State for SetService<S> {
type Service = Set<members::service>;
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 Service = S::Service;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct service(());
pub struct created_at(());
}
}
pub struct EnrollmentBuilder<'a, S: enrollment_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<Domain<'a>>>, Option<Datetime>, Option<UriValue<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Enrollment<'a> {
pub fn new() -> EnrollmentBuilder<'a, enrollment_state::Empty> {
EnrollmentBuilder::new()
}
}
impl<'a> EnrollmentBuilder<'a, enrollment_state::Empty> {
pub fn new() -> Self {
EnrollmentBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: enrollment_state::State> EnrollmentBuilder<'a, S> {
pub fn boundaries(mut self, value: impl Into<Option<Vec<Domain<'a>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_boundaries(mut self, value: Option<Vec<Domain<'a>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> EnrollmentBuilder<'a, S>
where
S: enrollment_state::State,
S::CreatedAt: enrollment_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> EnrollmentBuilder<'a, enrollment_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
EnrollmentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> EnrollmentBuilder<'a, S>
where
S: enrollment_state::State,
S::Service: enrollment_state::IsUnset,
{
pub fn service(
mut self,
value: impl Into<UriValue<'a>>,
) -> EnrollmentBuilder<'a, enrollment_state::SetService<S>> {
self._fields.2 = Option::Some(value.into());
EnrollmentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> EnrollmentBuilder<'a, S>
where
S: enrollment_state::State,
S::Service: enrollment_state::IsSet,
S::CreatedAt: enrollment_state::IsSet,
{
pub fn build(self) -> Enrollment<'a> {
Enrollment {
boundaries: self._fields.0,
created_at: self._fields.1.unwrap(),
service: self._fields.2.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>,
>,
) -> Enrollment<'a> {
Enrollment {
boundaries: self._fields.0,
created_at: self._fields.1.unwrap(),
service: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_zone_stratos_actor_enrollment() -> 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("zone.stratos.actor.enrollment"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A profile record indicating the user is enrolled in a Stratos service. Published to the user's PDS during OAuth enrollment for endpoint discovery by AppViews.",
),
),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("service"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("boundaries"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"List of boundaries the user has access to on this Stratos service.",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"zone.stratos.boundary.defs#Domain",
),
..Default::default()
}),
max_length: Some(50usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Timestamp when the enrollment was created.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("service"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The Stratos service endpoint URL where this user's private data is stored.",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}