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;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
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::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;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Shout<'a> {
pub created_at: Datetime,
#[serde(borrow)]
pub message: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub parent: Option<StrongRef<'a>>,
#[serde(borrow)]
pub subject: StrongRef<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ShoutGetRecordOutput<'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: Shout<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct Author<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub avatar: Option<UriValue<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub did: Option<AtIdentifier<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub display_name: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub handle: Option<AtIdentifier<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub id: Option<CowStr<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct ShoutView<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub author: Option<shout::Author<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub id: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub message: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub parent: Option<CowStr<'a>>,
}
impl<'a> Shout<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ShoutRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[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<'de> = ShoutGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ShoutGetRecordOutput<'_>> for Shout<'_> {
fn from(output: ShoutGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Shout<'_> {
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<'a> LexiconSchema for Shout<'a> {
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<'a> LexiconSchema for Author<'a> {
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<'a> LexiconSchema for ShoutView<'a> {
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 Subject;
type Message;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Subject = Unset;
type Message = Unset;
type CreatedAt = Unset;
}
pub struct SetSubject<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSubject<S> {}
impl<S: State> State for SetSubject<S> {
type Subject = Set<members::subject>;
type Message = S::Message;
type CreatedAt = S::CreatedAt;
}
pub struct SetMessage<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetMessage<S> {}
impl<S: State> State for SetMessage<S> {
type Subject = S::Subject;
type Message = Set<members::message>;
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 Subject = S::Subject;
type Message = S::Message;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct subject(());
pub struct message(());
pub struct created_at(());
}
}
pub struct ShoutBuilder<'a, S: shout_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<CowStr<'a>>,
Option<StrongRef<'a>>,
Option<StrongRef<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Shout<'a> {
pub fn new() -> ShoutBuilder<'a, shout_state::Empty> {
ShoutBuilder::new()
}
}
impl<'a> ShoutBuilder<'a, shout_state::Empty> {
pub fn new() -> Self {
ShoutBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ShoutBuilder<'a, S>
where
S: shout_state::State,
S::CreatedAt: shout_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ShoutBuilder<'a, shout_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
ShoutBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ShoutBuilder<'a, S>
where
S: shout_state::State,
S::Message: shout_state::IsUnset,
{
pub fn message(
mut self,
value: impl Into<CowStr<'a>>,
) -> ShoutBuilder<'a, shout_state::SetMessage<S>> {
self._fields.1 = Option::Some(value.into());
ShoutBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: shout_state::State> ShoutBuilder<'a, S> {
pub fn parent(mut self, value: impl Into<Option<StrongRef<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_parent(mut self, value: Option<StrongRef<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> ShoutBuilder<'a, S>
where
S: shout_state::State,
S::Subject: shout_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<StrongRef<'a>>,
) -> ShoutBuilder<'a, shout_state::SetSubject<S>> {
self._fields.3 = Option::Some(value.into());
ShoutBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ShoutBuilder<'a, S>
where
S: shout_state::State,
S::Subject: shout_state::IsSet,
S::Message: shout_state::IsSet,
S::CreatedAt: shout_state::IsSet,
{
pub fn build(self) -> Shout<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Shout<'a> {
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()
}
}