#[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};
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::fm_teal::alpha::feed::PlayView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "fm.teal.alpha.actor.status",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Status<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub expiry: Option<Datetime>,
pub item: PlayView<S>,
pub time: Datetime,
#[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 StatusGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Status<S>,
}
impl<S: BosStr> Status<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, StatusRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct StatusRecord;
impl XrpcResp for StatusRecord {
const NSID: &'static str = "fm.teal.alpha.actor.status";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = StatusGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<StatusGetRecordOutput<S>> for Status<S> {
fn from(output: StatusGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Status<S> {
const NSID: &'static str = "fm.teal.alpha.actor.status";
type Record = StatusRecord;
}
impl Collection for StatusRecord {
const NSID: &'static str = "fm.teal.alpha.actor.status";
type Record = StatusRecord;
}
impl<S: BosStr> LexiconSchema for Status<S> {
fn nsid() -> &'static str {
"fm.teal.alpha.actor.status"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_fm_teal_alpha_actor_status()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod status_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 Time;
type Item;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Time = Unset;
type Item = Unset;
}
pub struct SetTime<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTime<St> {}
impl<St: State> State for SetTime<St> {
type Time = Set<members::time>;
type Item = St::Item;
}
pub struct SetItem<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetItem<St> {}
impl<St: State> State for SetItem<St> {
type Time = St::Time;
type Item = Set<members::item>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct time(());
pub struct item(());
}
}
pub struct StatusBuilder<S: BosStr, St: status_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<PlayView<S>>, Option<Datetime>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Status<S> {
pub fn new() -> StatusBuilder<S, status_state::Empty> {
StatusBuilder::new()
}
}
impl<S: BosStr> StatusBuilder<S, status_state::Empty> {
pub fn new() -> Self {
StatusBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: status_state::State> StatusBuilder<S, St> {
pub fn expiry(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_expiry(mut self, value: Option<Datetime>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> StatusBuilder<S, St>
where
St: status_state::State,
St::Item: status_state::IsUnset,
{
pub fn item(
mut self,
value: impl Into<PlayView<S>>,
) -> StatusBuilder<S, status_state::SetItem<St>> {
self._fields.1 = Option::Some(value.into());
StatusBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StatusBuilder<S, St>
where
St: status_state::State,
St::Time: status_state::IsUnset,
{
pub fn time(
mut self,
value: impl Into<Datetime>,
) -> StatusBuilder<S, status_state::SetTime<St>> {
self._fields.2 = Option::Some(value.into());
StatusBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StatusBuilder<S, St>
where
St: status_state::State,
St::Time: status_state::IsSet,
St::Item: status_state::IsSet,
{
pub fn build(self) -> Status<S> {
Status {
expiry: self._fields.0,
item: self._fields.1.unwrap(),
time: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Status<S> {
Status {
expiry: self._fields.0,
item: self._fields.1.unwrap(),
time: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_fm_teal_alpha_actor_status() -> 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("fm.teal.alpha.actor.status"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"This lexicon is in a not officially released state. It is subject to change. | A declaration of the status of the actor. Only one can be shown at a time. If there are multiple, the latest record should be picked and earlier records should be deleted or tombstoned.",
),
),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("time"), SmolStr::new_static("item")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("expiry"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The unix timestamp of the expiry time of the item. If unavailable, default to 10 minutes past the start time.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("item"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"fm.teal.alpha.feed.defs#playView",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("time"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The unix timestamp of when the item was recorded",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}