#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
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::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "tech.lenooby09.didgit.object",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Object<S: BosStr = DefaultStr> {
pub content: BlobRef<S>,
pub object_type: ObjectObjectType<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 ObjectObjectType<S: BosStr = DefaultStr> {
Blob,
Tree,
Commit,
Tag,
Other(S),
}
impl<S: BosStr> ObjectObjectType<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Blob => "blob",
Self::Tree => "tree",
Self::Commit => "commit",
Self::Tag => "tag",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"blob" => Self::Blob,
"tree" => Self::Tree,
"commit" => Self::Commit,
"tag" => Self::Tag,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ObjectObjectType<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ObjectObjectType<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ObjectObjectType<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 ObjectObjectType<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 ObjectObjectType<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ObjectObjectType<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ObjectObjectType<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ObjectObjectType::Blob => ObjectObjectType::Blob,
ObjectObjectType::Tree => ObjectObjectType::Tree,
ObjectObjectType::Commit => ObjectObjectType::Commit,
ObjectObjectType::Tag => ObjectObjectType::Tag,
ObjectObjectType::Other(v) => ObjectObjectType::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ObjectGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Object<S>,
}
impl<S: BosStr> Object<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ObjectRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ObjectRecord;
impl XrpcResp for ObjectRecord {
const NSID: &'static str = "tech.lenooby09.didgit.object";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ObjectGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ObjectGetRecordOutput<S>> for Object<S> {
fn from(output: ObjectGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Object<S> {
const NSID: &'static str = "tech.lenooby09.didgit.object";
type Record = ObjectRecord;
}
impl Collection for ObjectRecord {
const NSID: &'static str = "tech.lenooby09.didgit.object";
type Record = ObjectRecord;
}
impl<S: BosStr> LexiconSchema for Object<S> {
fn nsid() -> &'static str {
"tech.lenooby09.didgit.object"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_tech_lenooby09_didgit_object()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.content;
{
let size = value.blob().size;
if size > 52428800usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("content"),
max: 52428800usize,
actual: size,
});
}
}
}
{
let value = &self.content;
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["application/octet-stream"];
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("content"),
accepted: vec!["application/octet-stream".to_string()],
actual: mime.to_string(),
});
}
}
}
{
let value = &self.object_type;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 16usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("object_type"),
max: 16usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod object_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 Content;
type ObjectType;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Content = Unset;
type ObjectType = Unset;
}
pub struct SetContent<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetContent<St> {}
impl<St: State> State for SetContent<St> {
type Content = Set<members::content>;
type ObjectType = St::ObjectType;
}
pub struct SetObjectType<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetObjectType<St> {}
impl<St: State> State for SetObjectType<St> {
type Content = St::Content;
type ObjectType = Set<members::object_type>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct content(());
pub struct object_type(());
}
}
pub struct ObjectBuilder<S: BosStr, St: object_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<BlobRef<S>>, Option<ObjectObjectType<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Object<S> {
pub fn new() -> ObjectBuilder<S, object_state::Empty> {
ObjectBuilder::new()
}
}
impl<S: BosStr> ObjectBuilder<S, object_state::Empty> {
pub fn new() -> Self {
ObjectBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ObjectBuilder<S, St>
where
St: object_state::State,
St::Content: object_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<BlobRef<S>>,
) -> ObjectBuilder<S, object_state::SetContent<St>> {
self._fields.0 = Option::Some(value.into());
ObjectBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ObjectBuilder<S, St>
where
St: object_state::State,
St::ObjectType: object_state::IsUnset,
{
pub fn object_type(
mut self,
value: impl Into<ObjectObjectType<S>>,
) -> ObjectBuilder<S, object_state::SetObjectType<St>> {
self._fields.1 = Option::Some(value.into());
ObjectBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ObjectBuilder<S, St>
where
St: object_state::State,
St::Content: object_state::IsSet,
St::ObjectType: object_state::IsSet,
{
pub fn build(self) -> Object<S> {
Object {
content: self._fields.0.unwrap(),
object_type: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Object<S> {
Object {
content: self._fields.0.unwrap(),
object_type: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_tech_lenooby09_didgit_object() -> 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("tech.lenooby09.didgit.object"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A did-git object stored in an AT Protocol repository. Each record represents a single content-addressable object (blob, tree, commit, or tag), keyed by its hex SHA-256 object ID.",
),
),
key: Some(CowStr::new_static("any")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("objectType"),
SmolStr::new_static("content")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("objectType"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The type of the git object."),
),
max_length: Some(16usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}