#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, 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;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::ai_syui::at::link;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct LinkItem<S: BosStr = DefaultStr> {
pub service: LinkItemService<S>,
pub username: 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 LinkItemService<S: BosStr = DefaultStr> {
Github,
Youtube,
X,
Other(S),
}
impl<S: BosStr> LinkItemService<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Github => "github",
Self::Youtube => "youtube",
Self::X => "x",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"github" => Self::Github,
"youtube" => Self::Youtube,
"x" => Self::X,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for LinkItemService<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for LinkItemService<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for LinkItemService<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 LinkItemService<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 LinkItemService<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for LinkItemService<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = LinkItemService<S::Output>;
fn into_static(self) -> Self::Output {
match self {
LinkItemService::Github => LinkItemService::Github,
LinkItemService::Youtube => LinkItemService::Youtube,
LinkItemService::X => LinkItemService::X,
LinkItemService::Other(v) => LinkItemService::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "ai.syui.at.link",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Link<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub links: Vec<link::LinkItem<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
#[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")]
pub struct LinkGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Link<S>,
}
impl<S: BosStr> Link<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, LinkRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
impl<S: BosStr> LexiconSchema for LinkItem<S> {
fn nsid() -> &'static str {
"ai.syui.at.link"
}
fn def_name() -> &'static str {
"linkItem"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_at_link()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.username;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 300usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("username"),
max: 300usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct LinkRecord;
impl XrpcResp for LinkRecord {
const NSID: &'static str = "ai.syui.at.link";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = LinkGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<LinkGetRecordOutput<S>> for Link<S> {
fn from(output: LinkGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Link<S> {
const NSID: &'static str = "ai.syui.at.link";
type Record = LinkRecord;
}
impl Collection for LinkRecord {
const NSID: &'static str = "ai.syui.at.link";
type Record = LinkRecord;
}
impl<S: BosStr> LexiconSchema for Link<S> {
fn nsid() -> &'static str {
"ai.syui.at.link"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_at_link()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
fn lexicon_doc_ai_syui_at_link() -> 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("ai.syui.at.link"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("linkItem"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("service"),
SmolStr::new_static("username")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("service"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Service identifier."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("username"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Username or ID on the service."),
),
max_length: Some(300usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Record containing links to external service profiles.",
),
),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("links"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Client-declared timestamp when this record was created.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("links"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("Array of external service links."),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#linkItem"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Client-declared timestamp when this record was last updated.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod link_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 Links;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Links = Unset;
}
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 CreatedAt = Set<members::created_at>;
type Links = St::Links;
}
pub struct SetLinks<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLinks<St> {}
impl<St: State> State for SetLinks<St> {
type CreatedAt = St::CreatedAt;
type Links = Set<members::links>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct links(());
}
}
pub struct LinkBuilder<S: BosStr, St: link_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<Vec<link::LinkItem<S>>>, Option<Datetime>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Link<S> {
pub fn new() -> LinkBuilder<S, link_state::Empty> {
LinkBuilder::new()
}
}
impl<S: BosStr> LinkBuilder<S, link_state::Empty> {
pub fn new() -> Self {
LinkBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> LinkBuilder<S, St>
where
St: link_state::State,
St::CreatedAt: link_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> LinkBuilder<S, link_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
LinkBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> LinkBuilder<S, St>
where
St: link_state::State,
St::Links: link_state::IsUnset,
{
pub fn links(
mut self,
value: impl Into<Vec<link::LinkItem<S>>>,
) -> LinkBuilder<S, link_state::SetLinks<St>> {
self._fields.1 = Option::Some(value.into());
LinkBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: link_state::State> LinkBuilder<S, St> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> LinkBuilder<S, St>
where
St: link_state::State,
St::CreatedAt: link_state::IsSet,
St::Links: link_state::IsSet,
{
pub fn build(self) -> Link<S> {
Link {
created_at: self._fields.0.unwrap(),
links: self._fields.1.unwrap(),
updated_at: self._fields.2,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Link<S> {
Link {
created_at: self._fields.0.unwrap(),
links: self._fields.1.unwrap(),
updated_at: self._fields.2,
extra_data: Some(extra_data),
}
}
}