pub mod create_shout;
pub mod get_album_shouts;
pub mod get_artist_shouts;
pub mod get_profile_shouts;
pub mod get_shout_replies;
pub mod get_track_shouts;
pub mod remove_shout;
pub mod reply_shout;
pub mod report_shout;
#[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::ident::AtIdentifier;
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::com_atproto::repo::strong_ref::StrongRef;
use crate::app_rocksky::shout;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "app.rocksky.shout",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Shout<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub message: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub parent: Option<StrongRef<S>>,
pub subject: StrongRef<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 ShoutGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Shout<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Author<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub avatar: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub did: Option<AtIdentifier<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub display_name: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub handle: Option<AtIdentifier<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<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, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ShoutView<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub author: Option<shout::Author<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub parent: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> Shout<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ShoutRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ShoutRecord;
impl XrpcResp for ShoutRecord {
const NSID: &'static str = "app.rocksky.shout";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ShoutGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ShoutGetRecordOutput<S>> for Shout<S> {
fn from(output: ShoutGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Shout<S> {
const NSID: &'static str = "app.rocksky.shout";
type Record = ShoutRecord;
}
impl Collection for ShoutRecord {
const NSID: &'static str = "app.rocksky.shout";
type Record = ShoutRecord;
}
impl<S: BosStr> LexiconSchema for Shout<S> {
fn nsid() -> &'static str {
"app.rocksky.shout"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_shout()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.message;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("message"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.message;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("message"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for Author<S> {
fn nsid() -> &'static str {
"app.rocksky.shout.defs"
}
fn def_name() -> &'static str {
"author"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_shout_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for ShoutView<S> {
fn nsid() -> &'static str {
"app.rocksky.shout.defs"
}
fn def_name() -> &'static str {
"shoutView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_shout_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod shout_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 Message;
type Subject;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Message = Unset;
type Subject = Unset;
type CreatedAt = Unset;
}
pub struct SetMessage<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetMessage<St> {}
impl<St: State> State for SetMessage<St> {
type Message = Set<members::message>;
type Subject = St::Subject;
type CreatedAt = St::CreatedAt;
}
pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSubject<St> {}
impl<St: State> State for SetSubject<St> {
type Message = St::Message;
type Subject = Set<members::subject>;
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 Message = St::Message;
type Subject = St::Subject;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct message(());
pub struct subject(());
pub struct created_at(());
}
}
pub struct ShoutBuilder<S: BosStr, St: shout_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<S>, Option<StrongRef<S>>, Option<StrongRef<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Shout<S> {
pub fn new() -> ShoutBuilder<S, shout_state::Empty> {
ShoutBuilder::new()
}
}
impl<S: BosStr> ShoutBuilder<S, shout_state::Empty> {
pub fn new() -> Self {
ShoutBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ShoutBuilder<S, St>
where
St: shout_state::State,
St::CreatedAt: shout_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ShoutBuilder<S, shout_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
ShoutBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ShoutBuilder<S, St>
where
St: shout_state::State,
St::Message: shout_state::IsUnset,
{
pub fn message(
mut self,
value: impl Into<S>,
) -> ShoutBuilder<S, shout_state::SetMessage<St>> {
self._fields.1 = Option::Some(value.into());
ShoutBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: shout_state::State> ShoutBuilder<S, St> {
pub fn parent(mut self, value: impl Into<Option<StrongRef<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_parent(mut self, value: Option<StrongRef<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> ShoutBuilder<S, St>
where
St: shout_state::State,
St::Subject: shout_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<StrongRef<S>>,
) -> ShoutBuilder<S, shout_state::SetSubject<St>> {
self._fields.3 = Option::Some(value.into());
ShoutBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ShoutBuilder<S, St>
where
St: shout_state::State,
St::Message: shout_state::IsSet,
St::Subject: shout_state::IsSet,
St::CreatedAt: shout_state::IsSet,
{
pub fn build(self) -> Shout<S> {
Shout {
created_at: self._fields.0.unwrap(),
message: self._fields.1.unwrap(),
parent: self._fields.2,
subject: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Shout<S> {
Shout {
created_at: self._fields.0.unwrap(),
message: self._fields.1.unwrap(),
parent: self._fields.2,
subject: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_rocksky_shout() -> 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("app.rocksky.shout"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A declaration of a shout.")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("message"),
SmolStr::new_static("createdAt"),
SmolStr::new_static("subject")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The date when the shout was created."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("message"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The message of the shout."),
),
min_length: Some(1usize),
max_length: Some(1000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("parent"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
fn lexicon_doc_app_rocksky_shout_defs() -> 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("app.rocksky.shout.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
LexUserType::Object(LexObject {
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("avatar"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The URL of the author's avatar image."),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The decentralized identifier (DID) of the author.",
),
),
format: Some(LexStringFormat::AtIdentifier),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("displayName"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The display name of the author."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("handle"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The handle of the author."),
),
format: Some(LexStringFormat::AtIdentifier),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("id"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The unique identifier of the author."),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("shoutView"),
LexUserType::Object(LexObject {
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.rocksky.shout.defs#author"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The date and time when the shout was created.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("id"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The unique identifier of the shout."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("message"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The content of the shout."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("parent"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The ID of the parent shout if this is a reply, otherwise null.",
),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}