#[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::blue_rito::label::auto::like::settings;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "blue.rito.label.auto.like.settings",
tag = "$type"
)]
pub struct Settings<'a> {
#[serde(borrow)]
pub apply: settings::PostRef<'a>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub delete: Option<settings::PostRef<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SettingsGetRecordOutput<'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: Settings<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PostRef<'a> {
#[serde(borrow)]
pub cid: CowStr<'a>,
#[serde(borrow)]
pub uri: UriValue<'a>,
}
impl<'a> Settings<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, SettingsRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SettingsRecord;
impl XrpcResp for SettingsRecord {
const NSID: &'static str = "blue.rito.label.auto.like.settings";
const ENCODING: &'static str = "application/json";
type Output<'de> = SettingsGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<SettingsGetRecordOutput<'_>> for Settings<'_> {
fn from(output: SettingsGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Settings<'_> {
const NSID: &'static str = "blue.rito.label.auto.like.settings";
type Record = SettingsRecord;
}
impl Collection for SettingsRecord {
const NSID: &'static str = "blue.rito.label.auto.like.settings";
type Record = SettingsRecord;
}
impl<'a> LexiconSchema for Settings<'a> {
fn nsid() -> &'static str {
"blue.rito.label.auto.like.settings"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blue_rito_label_auto_like_settings()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for PostRef<'a> {
fn nsid() -> &'static str {
"blue.rito.label.auto.like.settings"
}
fn def_name() -> &'static str {
"postRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blue_rito_label_auto_like_settings()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod settings_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 Apply;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Apply = Unset;
type CreatedAt = Unset;
}
pub struct SetApply<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetApply<S> {}
impl<S: State> State for SetApply<S> {
type Apply = Set<members::apply>;
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 Apply = S::Apply;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct apply(());
pub struct created_at(());
}
}
pub struct SettingsBuilder<'a, S: settings_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<settings::PostRef<'a>>,
Option<Datetime>,
Option<settings::PostRef<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Settings<'a> {
pub fn new() -> SettingsBuilder<'a, settings_state::Empty> {
SettingsBuilder::new()
}
}
impl<'a> SettingsBuilder<'a, settings_state::Empty> {
pub fn new() -> Self {
SettingsBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> SettingsBuilder<'a, S>
where
S: settings_state::State,
S::Apply: settings_state::IsUnset,
{
pub fn apply(
mut self,
value: impl Into<settings::PostRef<'a>>,
) -> SettingsBuilder<'a, settings_state::SetApply<S>> {
self._fields.0 = Option::Some(value.into());
SettingsBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> SettingsBuilder<'a, S>
where
S: settings_state::State,
S::CreatedAt: settings_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> SettingsBuilder<'a, settings_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
SettingsBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: settings_state::State> SettingsBuilder<'a, S> {
pub fn delete(mut self, value: impl Into<Option<settings::PostRef<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_delete(mut self, value: Option<settings::PostRef<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> SettingsBuilder<'a, S>
where
S: settings_state::State,
S::Apply: settings_state::IsSet,
S::CreatedAt: settings_state::IsSet,
{
pub fn build(self) -> Settings<'a> {
Settings {
apply: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
delete: self._fields.2,
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>,
>,
) -> Settings<'a> {
Settings {
apply: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
delete: self._fields.2,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_blue_rito_label_auto_like_settings() -> 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("blue.rito.label.auto.like.settings"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("Setting Like based auto labeling."),
),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("apply"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("apply"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static("The post to apply the label to"),
),
refs: vec![
CowStr::new_static("blue.rito.label.auto.like.settings#postRef")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("delete"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static("The post to remove the label from"),
),
refs: vec![
CowStr::new_static("blue.rito.label.auto.like.settings#postRef")
],
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("postRef"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("uri"), SmolStr::new_static("cid")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("CID of the post")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("URI of the post")),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod post_ref_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 Cid;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cid = Unset;
type Uri = Unset;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Cid = Set<members::cid>;
type Uri = S::Uri;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Cid = S::Cid;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cid(());
pub struct uri(());
}
}
pub struct PostRefBuilder<'a, S: post_ref_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<UriValue<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> PostRef<'a> {
pub fn new() -> PostRefBuilder<'a, post_ref_state::Empty> {
PostRefBuilder::new()
}
}
impl<'a> PostRefBuilder<'a, post_ref_state::Empty> {
pub fn new() -> Self {
PostRefBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PostRefBuilder<'a, S>
where
S: post_ref_state::State,
S::Cid: post_ref_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<CowStr<'a>>,
) -> PostRefBuilder<'a, post_ref_state::SetCid<S>> {
self._fields.0 = Option::Some(value.into());
PostRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PostRefBuilder<'a, S>
where
S: post_ref_state::State,
S::Uri: post_ref_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<UriValue<'a>>,
) -> PostRefBuilder<'a, post_ref_state::SetUri<S>> {
self._fields.1 = Option::Some(value.into());
PostRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PostRefBuilder<'a, S>
where
S: post_ref_state::State,
S::Cid: post_ref_state::IsSet,
S::Uri: post_ref_state::IsSet,
{
pub fn build(self) -> PostRef<'a> {
PostRef {
cid: self._fields.0.unwrap(),
uri: self._fields.1.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>,
>,
) -> PostRef<'a> {
PostRef {
cid: self._fields.0.unwrap(),
uri: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}