#[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::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::tech_manos::twmirror::post;
pub type TwitterId<'a> = CowStr<'a>;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Post<'a> {
#[serde(borrow)]
pub bsky_post: Data<'a>,
pub created_at: Datetime,
#[serde(borrow)]
pub tw_user_id: post::TwitterId<'a>,
#[serde(borrow)]
pub tweet_id: post::TwitterId<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PostGetRecordOutput<'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: Post<'a>,
}
impl<'a> Post<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, PostRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct PostRecord;
impl XrpcResp for PostRecord {
const NSID: &'static str = "tech.manos.twmirror.post";
const ENCODING: &'static str = "application/json";
type Output<'de> = PostGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<PostGetRecordOutput<'_>> for Post<'_> {
fn from(output: PostGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Post<'_> {
const NSID: &'static str = "tech.manos.twmirror.post";
type Record = PostRecord;
}
impl Collection for PostRecord {
const NSID: &'static str = "tech.manos.twmirror.post";
type Record = PostRecord;
}
impl<'a> LexiconSchema for Post<'a> {
fn nsid() -> &'static str {
"tech.manos.twmirror.post"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_tech_manos_twmirror_post()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod post_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 TweetId;
type BskyPost;
type CreatedAt;
type TwUserId;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type TweetId = Unset;
type BskyPost = Unset;
type CreatedAt = Unset;
type TwUserId = Unset;
}
pub struct SetTweetId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTweetId<S> {}
impl<S: State> State for SetTweetId<S> {
type TweetId = Set<members::tweet_id>;
type BskyPost = S::BskyPost;
type CreatedAt = S::CreatedAt;
type TwUserId = S::TwUserId;
}
pub struct SetBskyPost<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetBskyPost<S> {}
impl<S: State> State for SetBskyPost<S> {
type TweetId = S::TweetId;
type BskyPost = Set<members::bsky_post>;
type CreatedAt = S::CreatedAt;
type TwUserId = S::TwUserId;
}
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 TweetId = S::TweetId;
type BskyPost = S::BskyPost;
type CreatedAt = Set<members::created_at>;
type TwUserId = S::TwUserId;
}
pub struct SetTwUserId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTwUserId<S> {}
impl<S: State> State for SetTwUserId<S> {
type TweetId = S::TweetId;
type BskyPost = S::BskyPost;
type CreatedAt = S::CreatedAt;
type TwUserId = Set<members::tw_user_id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct tweet_id(());
pub struct bsky_post(());
pub struct created_at(());
pub struct tw_user_id(());
}
}
pub struct PostBuilder<'a, S: post_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Data<'a>>,
Option<Datetime>,
Option<post::TwitterId<'a>>,
Option<post::TwitterId<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Post<'a> {
pub fn new() -> PostBuilder<'a, post_state::Empty> {
PostBuilder::new()
}
}
impl<'a> PostBuilder<'a, post_state::Empty> {
pub fn new() -> Self {
PostBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PostBuilder<'a, S>
where
S: post_state::State,
S::BskyPost: post_state::IsUnset,
{
pub fn bsky_post(
mut self,
value: impl Into<Data<'a>>,
) -> PostBuilder<'a, post_state::SetBskyPost<S>> {
self._fields.0 = Option::Some(value.into());
PostBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PostBuilder<'a, S>
where
S: post_state::State,
S::CreatedAt: post_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> PostBuilder<'a, post_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
PostBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PostBuilder<'a, S>
where
S: post_state::State,
S::TwUserId: post_state::IsUnset,
{
pub fn tw_user_id(
mut self,
value: impl Into<post::TwitterId<'a>>,
) -> PostBuilder<'a, post_state::SetTwUserId<S>> {
self._fields.2 = Option::Some(value.into());
PostBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PostBuilder<'a, S>
where
S: post_state::State,
S::TweetId: post_state::IsUnset,
{
pub fn tweet_id(
mut self,
value: impl Into<post::TwitterId<'a>>,
) -> PostBuilder<'a, post_state::SetTweetId<S>> {
self._fields.3 = Option::Some(value.into());
PostBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PostBuilder<'a, S>
where
S: post_state::State,
S::TweetId: post_state::IsSet,
S::BskyPost: post_state::IsSet,
S::CreatedAt: post_state::IsSet,
S::TwUserId: post_state::IsSet,
{
pub fn build(self) -> Post<'a> {
Post {
bsky_post: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
tw_user_id: self._fields.2.unwrap(),
tweet_id: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> Post<'a> {
Post {
bsky_post: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
tw_user_id: self._fields.2.unwrap(),
tweet_id: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_tech_manos_twmirror_post() -> 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("tech.manos.twmirror.post"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("TwitterId"),
LexUserType::String(LexString {
min_length: Some(1usize),
max_length: Some(20usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Sidecar record for mirrored Twitter posts. The rkey should match the bskyPost ref.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("tweetId"),
SmolStr::new_static("twUserId"),
SmolStr::new_static("bskyPost"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("bskyPost"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"com.atproto.repo.strongRef#strongRef",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Tweet timestamp (regardless of backdating setting).",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("twUserId"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#TwitterId"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tweetId"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#TwitterId"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}