#[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, Nsid};
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 = "games.gamesgamesgamesgames.redirect",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Redirect<S: BosStr = DefaultStr> {
pub collection: Nsid<S>,
pub created_at: Datetime,
pub source_uri: AtUri<S>,
pub target_uri: AtUri<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")]
pub struct RedirectGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Redirect<S>,
}
impl<S: BosStr> Redirect<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, RedirectRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct RedirectRecord;
impl XrpcResp for RedirectRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.redirect";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = RedirectGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<RedirectGetRecordOutput<S>> for Redirect<S> {
fn from(output: RedirectGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Redirect<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.redirect";
type Record = RedirectRecord;
}
impl Collection for RedirectRecord {
const NSID: &'static str = "games.gamesgamesgamesgames.redirect";
type Record = RedirectRecord;
}
impl<S: BosStr> LexiconSchema for Redirect<S> {
fn nsid() -> &'static str {
"games.gamesgamesgamesgames.redirect"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_gamesgamesgamesgames_redirect()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod redirect_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 CreatedAt;
type Collection;
type TargetUri;
type SourceUri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Collection = Unset;
type TargetUri = Unset;
type SourceUri = Unset;
}
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 CreatedAt = Set<members::created_at>;
type Collection = St::Collection;
type TargetUri = St::TargetUri;
type SourceUri = St::SourceUri;
}
pub struct SetCollection<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCollection<St> {}
impl<St: State> State for SetCollection<St> {
type CreatedAt = St::CreatedAt;
type Collection = Set<members::collection>;
type TargetUri = St::TargetUri;
type SourceUri = St::SourceUri;
}
pub struct SetTargetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTargetUri<St> {}
impl<St: State> State for SetTargetUri<St> {
type CreatedAt = St::CreatedAt;
type Collection = St::Collection;
type TargetUri = Set<members::target_uri>;
type SourceUri = St::SourceUri;
}
pub struct SetSourceUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSourceUri<St> {}
impl<St: State> State for SetSourceUri<St> {
type CreatedAt = St::CreatedAt;
type Collection = St::Collection;
type TargetUri = St::TargetUri;
type SourceUri = Set<members::source_uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct collection(());
pub struct target_uri(());
pub struct source_uri(());
}
}
pub struct RedirectBuilder<S: BosStr, St: redirect_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Nsid<S>>,
Option<Datetime>,
Option<AtUri<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Redirect<S> {
pub fn new() -> RedirectBuilder<S, redirect_state::Empty> {
RedirectBuilder::new()
}
}
impl<S: BosStr> RedirectBuilder<S, redirect_state::Empty> {
pub fn new() -> Self {
RedirectBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RedirectBuilder<S, St>
where
St: redirect_state::State,
St::Collection: redirect_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<Nsid<S>>,
) -> RedirectBuilder<S, redirect_state::SetCollection<St>> {
self._fields.0 = Option::Some(value.into());
RedirectBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RedirectBuilder<S, St>
where
St: redirect_state::State,
St::CreatedAt: redirect_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> RedirectBuilder<S, redirect_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
RedirectBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RedirectBuilder<S, St>
where
St: redirect_state::State,
St::SourceUri: redirect_state::IsUnset,
{
pub fn source_uri(
mut self,
value: impl Into<AtUri<S>>,
) -> RedirectBuilder<S, redirect_state::SetSourceUri<St>> {
self._fields.2 = Option::Some(value.into());
RedirectBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RedirectBuilder<S, St>
where
St: redirect_state::State,
St::TargetUri: redirect_state::IsUnset,
{
pub fn target_uri(
mut self,
value: impl Into<AtUri<S>>,
) -> RedirectBuilder<S, redirect_state::SetTargetUri<St>> {
self._fields.3 = Option::Some(value.into());
RedirectBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RedirectBuilder<S, St>
where
St: redirect_state::State,
St::CreatedAt: redirect_state::IsSet,
St::Collection: redirect_state::IsSet,
St::TargetUri: redirect_state::IsSet,
St::SourceUri: redirect_state::IsSet,
{
pub fn build(self) -> Redirect<S> {
Redirect {
collection: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
source_uri: self._fields.2.unwrap(),
target_uri: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Redirect<S> {
Redirect {
collection: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
source_uri: self._fields.2.unwrap(),
target_uri: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_games_gamesgamesgamesgames_redirect() -> 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("games.gamesgamesgamesgames.redirect"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static(
"A redirect mapping a source AT URI to a target AT URI after migration.",
)),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("sourceUri"),
SmolStr::new_static("targetUri"),
SmolStr::new_static("collection"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("collection"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Nsid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("sourceUri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("targetUri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}