#[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::string::{Datetime, Language};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::app_bsky::embed::external::ExternalRecord;
use crate::app_bsky::embed::images::Images;
use crate::app_bsky::embed::record::Record;
use crate::app_bsky::embed::record_with_media::RecordWithMedia;
use crate::app_bsky::embed::video::Video;
use crate::app_bsky::feed::threadgate::FollowerRule;
use crate::app_bsky::feed::threadgate::FollowingRule;
use crate::app_bsky::feed::threadgate::ListRule;
use crate::app_bsky::feed::threadgate::MentionRule;
use crate::app_bsky::richtext::facet::Facet;
use crate::app_chronosky::schedule::list_posts::ScheduledPost;
use crate::app_chronosky::schedule::update_post;
use crate::com_atproto::label::SelfLabels;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ImageRef<S: BosStr = DefaultStr> {
pub alt: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub image: Option<BlobRef<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",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ImagesEmbed<S: BosStr = DefaultStr> {
pub images: Vec<update_post::ImageRef<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 UpdatePost<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub disable_quote_posts: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub embed: Option<UpdatePostEmbed<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub facets: Option<Vec<Facet<S>>>,
pub id: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub labels: Option<SelfLabels<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub langs: Option<Vec<Language>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub scheduled_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub text: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub threadgate_rules: Option<Vec<UpdatePostThreadgateRulesItem<S>>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum UpdatePostEmbed<S: BosStr = DefaultStr> {
#[serde(rename = "app.chronosky.schedule.updatePost#imagesEmbed")]
ImagesEmbed(Box<update_post::ImagesEmbed<S>>),
#[serde(rename = "app.bsky.embed.images")]
Images(Box<Images<S>>),
#[serde(rename = "app.bsky.embed.external")]
External(Box<ExternalRecord<S>>),
#[serde(rename = "app.bsky.embed.record")]
Record(Box<Record<S>>),
#[serde(rename = "app.bsky.embed.video")]
Video(Box<Video<S>>),
#[serde(rename = "app.bsky.embed.recordWithMedia")]
RecordWithMedia(Box<RecordWithMedia<S>>),
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum UpdatePostThreadgateRulesItem<S: BosStr = DefaultStr> {
#[serde(rename = "app.bsky.feed.threadgate#mentionRule")]
ThreadgateMentionRule(Box<MentionRule<S>>),
#[serde(rename = "app.bsky.feed.threadgate#followerRule")]
ThreadgateFollowerRule(Box<FollowerRule<S>>),
#[serde(rename = "app.bsky.feed.threadgate#followingRule")]
ThreadgateFollowingRule(Box<FollowingRule<S>>),
#[serde(rename = "app.bsky.feed.threadgate#listRule")]
ThreadgateListRule(Box<ListRule<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct UpdatePostOutput<S: BosStr = DefaultStr> {
pub post: ScheduledPost<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, thiserror::Error, miette::Diagnostic,
)]
#[serde(tag = "error", content = "message")]
pub enum UpdatePostError {
#[serde(rename = "PostNotFound")]
PostNotFound(Option<SmolStr>),
#[serde(rename = "PostNotPending")]
PostNotPending(Option<SmolStr>),
#[serde(rename = "NoFieldsProvided")]
NoFieldsProvided(Option<SmolStr>),
#[serde(untagged)]
Other {
error: SmolStr,
message: Option<SmolStr>,
},
}
impl core::fmt::Display for UpdatePostError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::PostNotFound(msg) => {
write!(f, "PostNotFound")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::PostNotPending(msg) => {
write!(f, "PostNotPending")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::NoFieldsProvided(msg) => {
write!(f, "NoFieldsProvided")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
impl<S: BosStr> LexiconSchema for ImageRef<S> {
fn nsid() -> &'static str {
"app.chronosky.schedule.updatePost"
}
fn def_name() -> &'static str {
"imageRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_chronosky_schedule_updatePost()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.alt;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("alt"),
max: 1000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.cid {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 200usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("cid"),
max: 200usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.image {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("image"),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.image {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/jpeg", "image/png", "image/webp", "image/gif"];
let matched = accepted.iter().any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix) && mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("image"),
accepted: vec![
"image/jpeg".to_string(),
"image/png".to_string(),
"image/webp".to_string(),
"image/gif".to_string(),
],
actual: mime.to_string(),
});
}
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for ImagesEmbed<S> {
fn nsid() -> &'static str {
"app.chronosky.schedule.updatePost"
}
fn def_name() -> &'static str {
"imagesEmbed"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_chronosky_schedule_updatePost()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.images;
#[allow(unused_comparisons)]
if value.len() > 4usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("images"),
max: 4usize,
actual: value.len(),
});
}
}
Ok(())
}
}
pub struct UpdatePostResponse;
impl jacquard_common::xrpc::XrpcResp for UpdatePostResponse {
const NSID: &'static str = "app.chronosky.schedule.updatePost";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = UpdatePostOutput<S>;
type Err = UpdatePostError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for UpdatePost<S> {
const NSID: &'static str = "app.chronosky.schedule.updatePost";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = UpdatePostResponse;
}
pub struct UpdatePostRequest;
impl jacquard_common::xrpc::XrpcEndpoint for UpdatePostRequest {
const PATH: &'static str = "/xrpc/app.chronosky.schedule.updatePost";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = UpdatePost<S>;
type Response = UpdatePostResponse;
}
fn lexicon_doc_app_chronosky_schedule_updatePost() -> 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("app.chronosky.schedule.updatePost"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("imageRef"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"Image reference that supports both new blob uploads and existing image CID references.",
),
),
required: Some(vec![SmolStr::new_static("alt")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("alt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Alt text for the image."),
),
max_length: Some(1000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"CID of an image blob. Can reference an existing image in the post or a newly uploaded image via media.uploadBlob.",
),
),
max_length: Some(200usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("image"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("imagesEmbed"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static(
"Images embed that supports CID references for existing images.",
)),
required: Some(vec![SmolStr::new_static("images")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("images"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#imageRef"),
..Default::default()
}),
max_length: Some(4usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcProcedure(LexXrpcProcedure {
input: Some(LexXrpcBody {
encoding: CowStr::new_static("application/json"),
schema: Some(
LexXrpcBodySchema::Object(LexObject {
required: Some(vec![SmolStr::new_static("id")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("disableQuotePosts"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("embed"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"Embedded content (images, external links, records). Use #imagesEmbed to reference existing images by CID.",
),
),
refs: vec![
CowStr::new_static("#imagesEmbed"),
CowStr::new_static("app.bsky.embed.images"),
CowStr::new_static("app.bsky.embed.external"),
CowStr::new_static("app.bsky.embed.record"),
CowStr::new_static("app.bsky.embed.video"),
CowStr::new_static("app.bsky.embed.recordWithMedia")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("facets"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Rich text facets (links, mentions, tags).",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("app.bsky.richtext.facet"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("id"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Post ID to update.")),
max_length: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("labels"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"com.atproto.label.defs#selfLabels",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("langs"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("Language codes (ISO 639-1)."),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::Language),
..Default::default()
}),
max_length: Some(3usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("scheduledAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"New scheduled publication datetime (ISO 8601).",
),
),
format: Some(LexStringFormat::Datetime),
max_length: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("text"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("New post text content."),
),
max_length: Some(3000usize),
max_graphemes: Some(300usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("threadgateRules"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Thread gate rules to control who can reply",
),
),
items: LexArrayItem::Union(LexRefUnion {
refs: vec![
CowStr::new_static("app.bsky.feed.threadgate#mentionRule"),
CowStr::new_static("app.bsky.feed.threadgate#followerRule"),
CowStr::new_static("app.bsky.feed.threadgate#followingRule"),
CowStr::new_static("app.bsky.feed.threadgate#listRule")
],
..Default::default()
}),
max_length: Some(5usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod images_embed_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 Images;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Images = Unset;
}
pub struct SetImages<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetImages<St> {}
impl<St: State> State for SetImages<St> {
type Images = Set<members::images>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct images(());
}
}
pub struct ImagesEmbedBuilder<S: BosStr, St: images_embed_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<update_post::ImageRef<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> ImagesEmbed<S> {
pub fn new() -> ImagesEmbedBuilder<S, images_embed_state::Empty> {
ImagesEmbedBuilder::new()
}
}
impl<S: BosStr> ImagesEmbedBuilder<S, images_embed_state::Empty> {
pub fn new() -> Self {
ImagesEmbedBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ImagesEmbedBuilder<S, St>
where
St: images_embed_state::State,
St::Images: images_embed_state::IsUnset,
{
pub fn images(
mut self,
value: impl Into<Vec<update_post::ImageRef<S>>>,
) -> ImagesEmbedBuilder<S, images_embed_state::SetImages<St>> {
self._fields.0 = Option::Some(value.into());
ImagesEmbedBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ImagesEmbedBuilder<S, St>
where
St: images_embed_state::State,
St::Images: images_embed_state::IsSet,
{
pub fn build(self) -> ImagesEmbed<S> {
ImagesEmbed {
images: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> ImagesEmbed<S> {
ImagesEmbed {
images: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}