#[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::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;
use crate::app_bsky::richtext::facet::Facet;
#[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 = "network.slices.tools.bug.response",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Response<S: BosStr = DefaultStr> {
pub bug: AtUri<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub message_facets: Option<Vec<Facet<S>>>,
pub status: ResponseStatus<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ResponseStatus<S: BosStr = DefaultStr> {
Acknowledged,
Fixed,
Wontfix,
Duplicate,
Invalid,
Other(S),
}
impl<S: BosStr> ResponseStatus<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Acknowledged => "acknowledged",
Self::Fixed => "fixed",
Self::Wontfix => "wontfix",
Self::Duplicate => "duplicate",
Self::Invalid => "invalid",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"acknowledged" => Self::Acknowledged,
"fixed" => Self::Fixed,
"wontfix" => Self::Wontfix,
"duplicate" => Self::Duplicate,
"invalid" => Self::Invalid,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ResponseStatus<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ResponseStatus<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ResponseStatus<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for ResponseStatus<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for ResponseStatus<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ResponseStatus<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ResponseStatus<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ResponseStatus::Acknowledged => ResponseStatus::Acknowledged,
ResponseStatus::Fixed => ResponseStatus::Fixed,
ResponseStatus::Wontfix => ResponseStatus::Wontfix,
ResponseStatus::Duplicate => ResponseStatus::Duplicate,
ResponseStatus::Invalid => ResponseStatus::Invalid,
ResponseStatus::Other(v) => ResponseStatus::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ResponseGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Response<S>,
}
impl<S: BosStr> Response<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ResponseRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ResponseRecord;
impl XrpcResp for ResponseRecord {
const NSID: &'static str = "network.slices.tools.bug.response";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ResponseGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ResponseGetRecordOutput<S>> for Response<S> {
fn from(output: ResponseGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Response<S> {
const NSID: &'static str = "network.slices.tools.bug.response";
type Record = ResponseRecord;
}
impl Collection for ResponseRecord {
const NSID: &'static str = "network.slices.tools.bug.response";
type Record = ResponseRecord;
}
impl<S: BosStr> LexiconSchema for Response<S> {
fn nsid() -> &'static str {
"network.slices.tools.bug.response"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_network_slices_tools_bug_response()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.message {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 3000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("message"),
max: 3000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.message {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 1000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("message"),
max: 1000usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod response_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 Status;
type Bug;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Status = Unset;
type Bug = Unset;
type CreatedAt = Unset;
}
pub struct SetStatus<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStatus<St> {}
impl<St: State> State for SetStatus<St> {
type Status = Set<members::status>;
type Bug = St::Bug;
type CreatedAt = St::CreatedAt;
}
pub struct SetBug<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetBug<St> {}
impl<St: State> State for SetBug<St> {
type Status = St::Status;
type Bug = Set<members::bug>;
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 Status = St::Status;
type Bug = St::Bug;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct status(());
pub struct bug(());
pub struct created_at(());
}
}
pub struct ResponseBuilder<S: BosStr, St: response_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<AtUri<S>>,
Option<Datetime>,
Option<S>,
Option<Vec<Facet<S>>>,
Option<ResponseStatus<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Response<S> {
pub fn new() -> ResponseBuilder<S, response_state::Empty> {
ResponseBuilder::new()
}
}
impl<S: BosStr> ResponseBuilder<S, response_state::Empty> {
pub fn new() -> Self {
ResponseBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ResponseBuilder<S, St>
where
St: response_state::State,
St::Bug: response_state::IsUnset,
{
pub fn bug(
mut self,
value: impl Into<AtUri<S>>,
) -> ResponseBuilder<S, response_state::SetBug<St>> {
self._fields.0 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ResponseBuilder<S, St>
where
St: response_state::State,
St::CreatedAt: response_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ResponseBuilder<S, response_state::SetCreatedAt<St>> {
self._fields.1 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: response_state::State> ResponseBuilder<S, St> {
pub fn message(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_message(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: response_state::State> ResponseBuilder<S, St> {
pub fn message_facets(mut self, value: impl Into<Option<Vec<Facet<S>>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_message_facets(mut self, value: Option<Vec<Facet<S>>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> ResponseBuilder<S, St>
where
St: response_state::State,
St::Status: response_state::IsUnset,
{
pub fn status(
mut self,
value: impl Into<ResponseStatus<S>>,
) -> ResponseBuilder<S, response_state::SetStatus<St>> {
self._fields.4 = Option::Some(value.into());
ResponseBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ResponseBuilder<S, St>
where
St: response_state::State,
St::Status: response_state::IsSet,
St::Bug: response_state::IsSet,
St::CreatedAt: response_state::IsSet,
{
pub fn build(self) -> Response<S> {
Response {
bug: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
message: self._fields.2,
message_facets: self._fields.3,
status: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Response<S> {
Response {
bug: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
message: self._fields.2,
message_facets: self._fields.3,
status: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_network_slices_tools_bug_response() -> 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("network.slices.tools.bug.response"),
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("status"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
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("message"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Optional explanation or link to fix",
)),
max_length: Some(3000usize),
max_graphemes: Some(1000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("messageFacets"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static(
"Annotations of message (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("status"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}