#[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::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::app_bsky::richtext::facet::Facet;
use crate::app_bsky::graph::starterpack;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct FeedItem<'a> {
#[serde(borrow)]
pub uri: AtUri<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "app.bsky.graph.starterpack", tag = "$type")]
pub struct Starterpack<'a> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description_facets: Option<Vec<Facet<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub feeds: Option<Vec<starterpack::FeedItem<'a>>>,
#[serde(borrow)]
pub list: AtUri<'a>,
#[serde(borrow)]
pub name: CowStr<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StarterpackGetRecordOutput<'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: Starterpack<'a>,
}
impl<'a> Starterpack<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, StarterpackRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
impl<'a> LexiconSchema for FeedItem<'a> {
fn nsid() -> &'static str {
"app.bsky.graph.starterpack"
}
fn def_name() -> &'static str {
"feedItem"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_bsky_graph_starterpack()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct StarterpackRecord;
impl XrpcResp for StarterpackRecord {
const NSID: &'static str = "app.bsky.graph.starterpack";
const ENCODING: &'static str = "application/json";
type Output<'de> = StarterpackGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<StarterpackGetRecordOutput<'_>> for Starterpack<'_> {
fn from(output: StarterpackGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Starterpack<'_> {
const NSID: &'static str = "app.bsky.graph.starterpack";
type Record = StarterpackRecord;
}
impl Collection for StarterpackRecord {
const NSID: &'static str = "app.bsky.graph.starterpack";
type Record = StarterpackRecord;
}
impl<'a> LexiconSchema for Starterpack<'a> {
fn nsid() -> &'static str {
"app.bsky.graph.starterpack"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_bsky_graph_starterpack()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 3000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 3000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 300usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("description"),
max: 300usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.feeds {
#[allow(unused_comparisons)]
if value.len() > 3usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("feeds"),
max: 3usize,
actual: value.len(),
});
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 500usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("name"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 50usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 50usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod feed_item_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 Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
}
}
pub struct FeedItemBuilder<'a, S: feed_item_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtUri<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> FeedItem<'a> {
pub fn new() -> FeedItemBuilder<'a, feed_item_state::Empty> {
FeedItemBuilder::new()
}
}
impl<'a> FeedItemBuilder<'a, feed_item_state::Empty> {
pub fn new() -> Self {
FeedItemBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> FeedItemBuilder<'a, S>
where
S: feed_item_state::State,
S::Uri: feed_item_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> FeedItemBuilder<'a, feed_item_state::SetUri<S>> {
self._fields.0 = Option::Some(value.into());
FeedItemBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> FeedItemBuilder<'a, S>
where
S: feed_item_state::State,
S::Uri: feed_item_state::IsSet,
{
pub fn build(self) -> FeedItem<'a> {
FeedItem {
uri: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> FeedItem<'a> {
FeedItem {
uri: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_bsky_graph_starterpack() -> 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("app.bsky.graph.starterpack"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("feedItem"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("uri")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Record defining a starter pack of actors and feeds for new users.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("name"), SmolStr::new_static("list"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
max_length: Some(3000usize),
max_graphemes: Some(300usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("descriptionFacets"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("app.bsky.richtext.facet"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("feeds"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#feedItem"),
..Default::default()
}),
max_length: Some(3usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("list"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Reference (AT-URI) to the list record."),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Display name for starter pack; can not be empty.",
),
),
min_length: Some(1usize),
max_length: Some(500usize),
max_graphemes: Some(50usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod starterpack_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 Name;
type List;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type List = Unset;
type CreatedAt = Unset;
}
pub struct SetName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetName<S> {}
impl<S: State> State for SetName<S> {
type Name = Set<members::name>;
type List = S::List;
type CreatedAt = S::CreatedAt;
}
pub struct SetList<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetList<S> {}
impl<S: State> State for SetList<S> {
type Name = S::Name;
type List = Set<members::list>;
type CreatedAt = S::CreatedAt;
}
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 Name = S::Name;
type List = S::List;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct list(());
pub struct created_at(());
}
}
pub struct StarterpackBuilder<'a, S: starterpack_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<CowStr<'a>>,
Option<Vec<Facet<'a>>>,
Option<Vec<starterpack::FeedItem<'a>>>,
Option<AtUri<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Starterpack<'a> {
pub fn new() -> StarterpackBuilder<'a, starterpack_state::Empty> {
StarterpackBuilder::new()
}
}
impl<'a> StarterpackBuilder<'a, starterpack_state::Empty> {
pub fn new() -> Self {
StarterpackBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> StarterpackBuilder<'a, S>
where
S: starterpack_state::State,
S::CreatedAt: starterpack_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> StarterpackBuilder<'a, starterpack_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
StarterpackBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: starterpack_state::State> StarterpackBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: starterpack_state::State> StarterpackBuilder<'a, S> {
pub fn description_facets(
mut self,
value: impl Into<Option<Vec<Facet<'a>>>>,
) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description_facets(mut self, value: Option<Vec<Facet<'a>>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: starterpack_state::State> StarterpackBuilder<'a, S> {
pub fn feeds(
mut self,
value: impl Into<Option<Vec<starterpack::FeedItem<'a>>>>,
) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_feeds(mut self, value: Option<Vec<starterpack::FeedItem<'a>>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> StarterpackBuilder<'a, S>
where
S: starterpack_state::State,
S::List: starterpack_state::IsUnset,
{
pub fn list(
mut self,
value: impl Into<AtUri<'a>>,
) -> StarterpackBuilder<'a, starterpack_state::SetList<S>> {
self._fields.4 = Option::Some(value.into());
StarterpackBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> StarterpackBuilder<'a, S>
where
S: starterpack_state::State,
S::Name: starterpack_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> StarterpackBuilder<'a, starterpack_state::SetName<S>> {
self._fields.5 = Option::Some(value.into());
StarterpackBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> StarterpackBuilder<'a, S>
where
S: starterpack_state::State,
S::Name: starterpack_state::IsSet,
S::List: starterpack_state::IsSet,
S::CreatedAt: starterpack_state::IsSet,
{
pub fn build(self) -> Starterpack<'a> {
Starterpack {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
description_facets: self._fields.2,
feeds: self._fields.3,
list: self._fields.4.unwrap(),
name: self._fields.5.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Starterpack<'a> {
Starterpack {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
description_facets: self._fields.2,
feeds: self._fields.3,
list: self._fields.4.unwrap(),
name: self._fields.5.unwrap(),
extra_data: Some(extra_data),
}
}
}