#[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::string::{AtUri, Cid, Datetime};
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::app_bsky::richtext::facet::Facet;
use crate::network_slices::tools::Images;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Comment<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub attachments: Option<Images<'a>>,
#[serde(borrow)]
pub body: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub body_facets: Option<Vec<Facet<'a>>>,
#[serde(borrow)]
pub bug: AtUri<'a>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub parent: Option<AtUri<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CommentGetRecordOutput<'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: Comment<'a>,
}
impl<'a> Comment<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, CommentRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CommentRecord;
impl XrpcResp for CommentRecord {
const NSID: &'static str = "network.slices.tools.bug.comment";
const ENCODING: &'static str = "application/json";
type Output<'de> = CommentGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<CommentGetRecordOutput<'_>> for Comment<'_> {
fn from(output: CommentGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Comment<'_> {
const NSID: &'static str = "network.slices.tools.bug.comment";
type Record = CommentRecord;
}
impl Collection for CommentRecord {
const NSID: &'static str = "network.slices.tools.bug.comment";
type Record = CommentRecord;
}
impl<'a> LexiconSchema for Comment<'a> {
fn nsid() -> &'static str {
"network.slices.tools.bug.comment"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_network_slices_tools_bug_comment()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.body;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("body"),
max: 10000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.body;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("body"),
max: 3000usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod comment_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 CreatedAt;
type Body;
type Bug;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Body = Unset;
type Bug = Unset;
}
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 CreatedAt = Set<members::created_at>;
type Body = S::Body;
type Bug = S::Bug;
}
pub struct SetBody<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetBody<S> {}
impl<S: State> State for SetBody<S> {
type CreatedAt = S::CreatedAt;
type Body = Set<members::body>;
type Bug = S::Bug;
}
pub struct SetBug<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetBug<S> {}
impl<S: State> State for SetBug<S> {
type CreatedAt = S::CreatedAt;
type Body = S::Body;
type Bug = Set<members::bug>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct body(());
pub struct bug(());
}
}
pub struct CommentBuilder<'a, S: comment_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Images<'a>>,
Option<CowStr<'a>>,
Option<Vec<Facet<'a>>>,
Option<AtUri<'a>>,
Option<Datetime>,
Option<AtUri<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Comment<'a> {
pub fn new() -> CommentBuilder<'a, comment_state::Empty> {
CommentBuilder::new()
}
}
impl<'a> CommentBuilder<'a, comment_state::Empty> {
pub fn new() -> Self {
CommentBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: comment_state::State> CommentBuilder<'a, S> {
pub fn attachments(mut self, value: impl Into<Option<Images<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_attachments(mut self, value: Option<Images<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> CommentBuilder<'a, S>
where
S: comment_state::State,
S::Body: comment_state::IsUnset,
{
pub fn body(
mut self,
value: impl Into<CowStr<'a>>,
) -> CommentBuilder<'a, comment_state::SetBody<S>> {
self._fields.1 = Option::Some(value.into());
CommentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: comment_state::State> CommentBuilder<'a, S> {
pub fn body_facets(mut self, value: impl Into<Option<Vec<Facet<'a>>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_body_facets(mut self, value: Option<Vec<Facet<'a>>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> CommentBuilder<'a, S>
where
S: comment_state::State,
S::Bug: comment_state::IsUnset,
{
pub fn bug(
mut self,
value: impl Into<AtUri<'a>>,
) -> CommentBuilder<'a, comment_state::SetBug<S>> {
self._fields.3 = Option::Some(value.into());
CommentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CommentBuilder<'a, S>
where
S: comment_state::State,
S::CreatedAt: comment_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> CommentBuilder<'a, comment_state::SetCreatedAt<S>> {
self._fields.4 = Option::Some(value.into());
CommentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: comment_state::State> CommentBuilder<'a, S> {
pub fn parent(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_parent(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S> CommentBuilder<'a, S>
where
S: comment_state::State,
S::CreatedAt: comment_state::IsSet,
S::Body: comment_state::IsSet,
S::Bug: comment_state::IsSet,
{
pub fn build(self) -> Comment<'a> {
Comment {
attachments: self._fields.0,
body: self._fields.1.unwrap(),
body_facets: self._fields.2,
bug: self._fields.3.unwrap(),
created_at: self._fields.4.unwrap(),
parent: self._fields.5,
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>,
>,
) -> Comment<'a> {
Comment {
attachments: self._fields.0,
body: self._fields.1.unwrap(),
body_facets: self._fields.2,
bug: self._fields.3.unwrap(),
created_at: self._fields.4.unwrap(),
parent: self._fields.5,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_network_slices_tools_bug_comment() -> 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("network.slices.tools.bug.comment"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("bug"), SmolStr::new_static("body"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("attachments"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("network.slices.tools.defs#images")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("body"),
LexObjectProperty::String(LexString {
max_length: Some(10000usize),
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("bodyFacets"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Annotations of body text (mentions and links)",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("app.bsky.richtext.facet"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("bug"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Reference to the bug report"),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("parent"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional reference to parent comment for threading",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}