#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime, UriValue};
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::{Serialize, Deserialize};
use crate::blue_rito::label::auto::like::settings;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "blue.rito.label.auto.like.settings",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Settings<S: BosStr = DefaultStr> {
pub apply: settings::PostRef<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub delete: Option<settings::PostRef<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 SettingsGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Settings<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct PostRef<S: BosStr = DefaultStr> {
pub cid: S,
pub uri: UriValue<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> Settings<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, SettingsRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[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<S: BosStr> = SettingsGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<SettingsGetRecordOutput<S>> for Settings<S> {
fn from(output: SettingsGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Settings<S> {
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<S: BosStr> LexiconSchema for Settings<S> {
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<S: BosStr> LexiconSchema for PostRef<S> {
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<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetApply<St> {}
impl<St: State> State for SetApply<St> {
type Apply = Set<members::apply>;
type CreatedAt = St::CreatedAt;
}
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 Apply = St::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<S: BosStr, St: settings_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<settings::PostRef<S>>,
Option<Datetime>,
Option<settings::PostRef<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Settings<S> {
pub fn new() -> SettingsBuilder<S, settings_state::Empty> {
SettingsBuilder::new()
}
}
impl<S: BosStr> SettingsBuilder<S, settings_state::Empty> {
pub fn new() -> Self {
SettingsBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SettingsBuilder<S, St>
where
St: settings_state::State,
St::Apply: settings_state::IsUnset,
{
pub fn apply(
mut self,
value: impl Into<settings::PostRef<S>>,
) -> SettingsBuilder<S, settings_state::SetApply<St>> {
self._fields.0 = Option::Some(value.into());
SettingsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SettingsBuilder<S, St>
where
St: settings_state::State,
St::CreatedAt: settings_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> SettingsBuilder<S, settings_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
SettingsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: settings_state::State> SettingsBuilder<S, St> {
pub fn delete(mut self, value: impl Into<Option<settings::PostRef<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_delete(mut self, value: Option<settings::PostRef<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> SettingsBuilder<S, St>
where
St: settings_state::State,
St::Apply: settings_state::IsSet,
St::CreatedAt: settings_state::IsSet,
{
pub fn build(self) -> Settings<S> {
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<SmolStr, Data<S>>) -> Settings<S> {
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 Uri;
type Cid;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Cid = Unset;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Uri = Set<members::uri>;
type Cid = St::Cid;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Uri = St::Uri;
type Cid = Set<members::cid>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct cid(());
}
}
pub struct PostRefBuilder<S: BosStr, St: post_ref_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<UriValue<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> PostRef<S> {
pub fn new() -> PostRefBuilder<S, post_ref_state::Empty> {
PostRefBuilder::new()
}
}
impl<S: BosStr> PostRefBuilder<S, post_ref_state::Empty> {
pub fn new() -> Self {
PostRefBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PostRefBuilder<S, St>
where
St: post_ref_state::State,
St::Cid: post_ref_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<S>,
) -> PostRefBuilder<S, post_ref_state::SetCid<St>> {
self._fields.0 = Option::Some(value.into());
PostRefBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PostRefBuilder<S, St>
where
St: post_ref_state::State,
St::Uri: post_ref_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<UriValue<S>>,
) -> PostRefBuilder<S, post_ref_state::SetUri<St>> {
self._fields.1 = Option::Some(value.into());
PostRefBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PostRefBuilder<S, St>
where
St: post_ref_state::State,
St::Uri: post_ref_state::IsSet,
St::Cid: post_ref_state::IsSet,
{
pub fn build(self) -> PostRef<S> {
PostRef {
cid: self._fields.0.unwrap(),
uri: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> PostRef<S> {
PostRef {
cid: self._fields.0.unwrap(),
uri: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}