#[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::blob::BlobRef;
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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "blue.skytalk.talk.thread",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Thread<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub blobs: Option<Vec<BlobRef<S>>>,
pub channel_id: S,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub text: Option<S>,
pub title: 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 ThreadGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Thread<S>,
}
impl<S: BosStr> Thread<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ThreadRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ThreadRecord;
impl XrpcResp for ThreadRecord {
const NSID: &'static str = "blue.skytalk.talk.thread";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ThreadGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ThreadGetRecordOutput<S>> for Thread<S> {
fn from(output: ThreadGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Thread<S> {
const NSID: &'static str = "blue.skytalk.talk.thread";
type Record = ThreadRecord;
}
impl Collection for ThreadRecord {
const NSID: &'static str = "blue.skytalk.talk.thread";
type Record = ThreadRecord;
}
impl<S: BosStr> LexiconSchema for Thread<S> {
fn nsid() -> &'static str {
"blue.skytalk.talk.thread"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blue_skytalk_talk_thread()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.blobs {
#[allow(unused_comparisons)]
if value.len() > 1usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("blobs"),
max: 1usize,
actual: value.len(),
});
}
}
if let Some(ref value) = self.text {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 4000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("text"),
max: 4000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.text {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 40000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("text"),
max: 40000usize,
actual: count,
});
}
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 300usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 300usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 3000usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod thread_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 Title;
type ChannelId;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type ChannelId = Unset;
type CreatedAt = Unset;
}
pub struct SetTitle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTitle<St> {}
impl<St: State> State for SetTitle<St> {
type Title = Set<members::title>;
type ChannelId = St::ChannelId;
type CreatedAt = St::CreatedAt;
}
pub struct SetChannelId<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetChannelId<St> {}
impl<St: State> State for SetChannelId<St> {
type Title = St::Title;
type ChannelId = Set<members::channel_id>;
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 Title = St::Title;
type ChannelId = St::ChannelId;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct channel_id(());
pub struct created_at(());
}
}
pub struct ThreadBuilder<S: BosStr, St: thread_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<BlobRef<S>>>,
Option<S>,
Option<Datetime>,
Option<S>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Thread<S> {
pub fn new() -> ThreadBuilder<S, thread_state::Empty> {
ThreadBuilder::new()
}
}
impl<S: BosStr> ThreadBuilder<S, thread_state::Empty> {
pub fn new() -> Self {
ThreadBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: thread_state::State> ThreadBuilder<S, St> {
pub fn blobs(mut self, value: impl Into<Option<Vec<BlobRef<S>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_blobs(mut self, value: Option<Vec<BlobRef<S>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> ThreadBuilder<S, St>
where
St: thread_state::State,
St::ChannelId: thread_state::IsUnset,
{
pub fn channel_id(
mut self,
value: impl Into<S>,
) -> ThreadBuilder<S, thread_state::SetChannelId<St>> {
self._fields.1 = Option::Some(value.into());
ThreadBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ThreadBuilder<S, St>
where
St: thread_state::State,
St::CreatedAt: thread_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ThreadBuilder<S, thread_state::SetCreatedAt<St>> {
self._fields.2 = Option::Some(value.into());
ThreadBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: thread_state::State> ThreadBuilder<S, St> {
pub fn text(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_text(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> ThreadBuilder<S, St>
where
St: thread_state::State,
St::Title: thread_state::IsUnset,
{
pub fn title(mut self, value: impl Into<S>) -> ThreadBuilder<S, thread_state::SetTitle<St>> {
self._fields.4 = Option::Some(value.into());
ThreadBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ThreadBuilder<S, St>
where
St: thread_state::State,
St::Title: thread_state::IsSet,
St::ChannelId: thread_state::IsSet,
St::CreatedAt: thread_state::IsSet,
{
pub fn build(self) -> Thread<S> {
Thread {
blobs: self._fields.0,
channel_id: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
text: self._fields.3,
title: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Thread<S> {
Thread {
blobs: self._fields.0,
channel_id: self._fields.1.unwrap(),
created_at: self._fields.2.unwrap(),
text: self._fields.3,
title: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_blue_skytalk_talk_thread() -> 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("blue.skytalk.talk.thread"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A thread in a channel")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("channelId"),
SmolStr::new_static("title"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("blobs"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static(
"Optional attached media (image or audio)",
)),
items: LexArrayItem::Blob(LexBlob {
..Default::default()
}),
max_length: Some(1usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("channelId"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The channel this thread belongs to",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Timestamp of thread creation",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("text"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The text content of the thread",
)),
max_length: Some(4000usize),
max_graphemes: Some(40000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The title of the thread",
)),
max_length: Some(300usize),
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}