pub mod def;
pub mod get_issued_badges;
pub mod get_valid_badges;
pub mod issuance;
#[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::string::{Did, AtUri, UriValue};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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::place_stream::badge;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct BadgeIssuanceView<S: BosStr = DefaultStr> {
pub badge_type: BadgeIssuanceViewBadgeType<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub image_url: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub issuance_cid: Option<S>,
pub issuance_uri: AtUri<S>,
pub issuer: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub selected: Option<bool>,
#[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 BadgeIssuanceViewBadgeType<S: BosStr = DefaultStr> {
Vip,
Event,
Other(S),
}
impl<S: BosStr> BadgeIssuanceViewBadgeType<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Vip => "place.stream.badge.defs#vip",
Self::Event => "place.stream.badge.defs#event",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"place.stream.badge.defs#vip" => Self::Vip,
"place.stream.badge.defs#event" => Self::Event,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for BadgeIssuanceViewBadgeType<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for BadgeIssuanceViewBadgeType<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for BadgeIssuanceViewBadgeType<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 BadgeIssuanceViewBadgeType<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 BadgeIssuanceViewBadgeType<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for BadgeIssuanceViewBadgeType<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = BadgeIssuanceViewBadgeType<S::Output>;
fn into_static(self) -> Self::Output {
match self {
BadgeIssuanceViewBadgeType::Vip => BadgeIssuanceViewBadgeType::Vip,
BadgeIssuanceViewBadgeType::Event => BadgeIssuanceViewBadgeType::Event,
BadgeIssuanceViewBadgeType::Other(v) => {
BadgeIssuanceViewBadgeType::Other(v.into_static())
}
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct BadgeSlot<S: BosStr = DefaultStr> {
pub available: Vec<badge::BadgeIssuanceView<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub selected: Option<badge::BadgeIssuanceView<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 BadgeView<S: BosStr = DefaultStr> {
pub badge_type: BadgeViewBadgeType<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub image_url: Option<UriValue<S>>,
pub issuer: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<S>,
pub recipient: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub signature: Option<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 BadgeViewBadgeType<S: BosStr = DefaultStr> {
Mod,
Streamer,
Vip,
Event,
Bot,
Other(S),
}
impl<S: BosStr> BadgeViewBadgeType<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Mod => "place.stream.badge.defs#mod",
Self::Streamer => "place.stream.badge.defs#streamer",
Self::Vip => "place.stream.badge.defs#vip",
Self::Event => "place.stream.badge.defs#event",
Self::Bot => "place.stream.badge.defs#bot",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"place.stream.badge.defs#mod" => Self::Mod,
"place.stream.badge.defs#streamer" => Self::Streamer,
"place.stream.badge.defs#vip" => Self::Vip,
"place.stream.badge.defs#event" => Self::Event,
"place.stream.badge.defs#bot" => Self::Bot,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for BadgeViewBadgeType<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for BadgeViewBadgeType<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for BadgeViewBadgeType<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 BadgeViewBadgeType<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 BadgeViewBadgeType<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for BadgeViewBadgeType<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = BadgeViewBadgeType<S::Output>;
fn into_static(self) -> Self::Output {
match self {
BadgeViewBadgeType::Mod => BadgeViewBadgeType::Mod,
BadgeViewBadgeType::Streamer => BadgeViewBadgeType::Streamer,
BadgeViewBadgeType::Vip => BadgeViewBadgeType::Vip,
BadgeViewBadgeType::Event => BadgeViewBadgeType::Event,
BadgeViewBadgeType::Bot => BadgeViewBadgeType::Bot,
BadgeViewBadgeType::Other(v) => BadgeViewBadgeType::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Hash)]
pub struct Bot;
impl core::fmt::Display for Bot {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "bot")
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Hash)]
pub struct Event;
impl core::fmt::Display for Event {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "event")
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Hash)]
pub struct Mod;
impl core::fmt::Display for Mod {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "mod")
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Hash)]
pub struct Streamer;
impl core::fmt::Display for Streamer {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "streamer")
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Hash)]
pub struct Vip;
impl core::fmt::Display for Vip {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "vip")
}
}
impl<S: BosStr> LexiconSchema for BadgeIssuanceView<S> {
fn nsid() -> &'static str {
"place.stream.badge.defs"
}
fn def_name() -> &'static str {
"badgeIssuanceView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_badge_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for BadgeSlot<S> {
fn nsid() -> &'static str {
"place.stream.badge.defs"
}
fn def_name() -> &'static str {
"badgeSlot"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_badge_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for BadgeView<S> {
fn nsid() -> &'static str {
"place.stream.badge.defs"
}
fn def_name() -> &'static str {
"badgeView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_badge_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod badge_issuance_view_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 BadgeType;
type IssuanceUri;
type Issuer;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type BadgeType = Unset;
type IssuanceUri = Unset;
type Issuer = Unset;
}
pub struct SetBadgeType<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetBadgeType<St> {}
impl<St: State> State for SetBadgeType<St> {
type BadgeType = Set<members::badge_type>;
type IssuanceUri = St::IssuanceUri;
type Issuer = St::Issuer;
}
pub struct SetIssuanceUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIssuanceUri<St> {}
impl<St: State> State for SetIssuanceUri<St> {
type BadgeType = St::BadgeType;
type IssuanceUri = Set<members::issuance_uri>;
type Issuer = St::Issuer;
}
pub struct SetIssuer<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIssuer<St> {}
impl<St: State> State for SetIssuer<St> {
type BadgeType = St::BadgeType;
type IssuanceUri = St::IssuanceUri;
type Issuer = Set<members::issuer>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct badge_type(());
pub struct issuance_uri(());
pub struct issuer(());
}
}
pub struct BadgeIssuanceViewBuilder<
St: badge_issuance_view_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<BadgeIssuanceViewBadgeType<S>>,
Option<S>,
Option<UriValue<S>>,
Option<S>,
Option<AtUri<S>>,
Option<Did<S>>,
Option<S>,
Option<bool>,
),
_type: PhantomData<fn() -> S>,
}
impl BadgeIssuanceView<DefaultStr> {
pub fn new() -> BadgeIssuanceViewBuilder<
badge_issuance_view_state::Empty,
DefaultStr,
> {
BadgeIssuanceViewBuilder::new()
}
}
impl<S: BosStr> BadgeIssuanceView<S> {
pub fn builder() -> BadgeIssuanceViewBuilder<badge_issuance_view_state::Empty, S> {
BadgeIssuanceViewBuilder::builder()
}
}
impl BadgeIssuanceViewBuilder<badge_issuance_view_state::Empty, DefaultStr> {
pub fn new() -> Self {
BadgeIssuanceViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> BadgeIssuanceViewBuilder<badge_issuance_view_state::Empty, S> {
pub fn builder() -> Self {
BadgeIssuanceViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BadgeIssuanceViewBuilder<St, S>
where
St: badge_issuance_view_state::State,
St::BadgeType: badge_issuance_view_state::IsUnset,
{
pub fn badge_type(
mut self,
value: impl Into<BadgeIssuanceViewBadgeType<S>>,
) -> BadgeIssuanceViewBuilder<badge_issuance_view_state::SetBadgeType<St>, S> {
self._fields.0 = Option::Some(value.into());
BadgeIssuanceViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: badge_issuance_view_state::State, S: BosStr> BadgeIssuanceViewBuilder<St, S> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: badge_issuance_view_state::State, S: BosStr> BadgeIssuanceViewBuilder<St, S> {
pub fn image_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_image_url(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<St: badge_issuance_view_state::State, S: BosStr> BadgeIssuanceViewBuilder<St, S> {
pub fn issuance_cid(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_issuance_cid(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<St, S: BosStr> BadgeIssuanceViewBuilder<St, S>
where
St: badge_issuance_view_state::State,
St::IssuanceUri: badge_issuance_view_state::IsUnset,
{
pub fn issuance_uri(
mut self,
value: impl Into<AtUri<S>>,
) -> BadgeIssuanceViewBuilder<badge_issuance_view_state::SetIssuanceUri<St>, S> {
self._fields.4 = Option::Some(value.into());
BadgeIssuanceViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BadgeIssuanceViewBuilder<St, S>
where
St: badge_issuance_view_state::State,
St::Issuer: badge_issuance_view_state::IsUnset,
{
pub fn issuer(
mut self,
value: impl Into<Did<S>>,
) -> BadgeIssuanceViewBuilder<badge_issuance_view_state::SetIssuer<St>, S> {
self._fields.5 = Option::Some(value.into());
BadgeIssuanceViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: badge_issuance_view_state::State, S: BosStr> BadgeIssuanceViewBuilder<St, S> {
pub fn name(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_name(mut self, value: Option<S>) -> Self {
self._fields.6 = value;
self
}
}
impl<St: badge_issuance_view_state::State, S: BosStr> BadgeIssuanceViewBuilder<St, S> {
pub fn selected(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_selected(mut self, value: Option<bool>) -> Self {
self._fields.7 = value;
self
}
}
impl<St, S: BosStr> BadgeIssuanceViewBuilder<St, S>
where
St: badge_issuance_view_state::State,
St::BadgeType: badge_issuance_view_state::IsSet,
St::IssuanceUri: badge_issuance_view_state::IsSet,
St::Issuer: badge_issuance_view_state::IsSet,
{
pub fn build(self) -> BadgeIssuanceView<S> {
BadgeIssuanceView {
badge_type: self._fields.0.unwrap(),
description: self._fields.1,
image_url: self._fields.2,
issuance_cid: self._fields.3,
issuance_uri: self._fields.4.unwrap(),
issuer: self._fields.5.unwrap(),
name: self._fields.6,
selected: self._fields.7,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> BadgeIssuanceView<S> {
BadgeIssuanceView {
badge_type: self._fields.0.unwrap(),
description: self._fields.1,
image_url: self._fields.2,
issuance_cid: self._fields.3,
issuance_uri: self._fields.4.unwrap(),
issuer: self._fields.5.unwrap(),
name: self._fields.6,
selected: self._fields.7,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_badge_defs() -> 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("place.stream.badge.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("badgeIssuanceView"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"A resolved view of a badge issuance, including def fields for display.",
),
),
required: Some(
vec![
SmolStr::new_static("issuanceUri"),
SmolStr::new_static("badgeType"),
SmolStr::new_static("issuer")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("badgeType"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Description from the badge definition."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("imageUrl"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Resolved image URL for the badge icon."),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("issuanceCid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"CID of the place.stream.badge.issuance record.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("issuanceUri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT URI of the place.stream.badge.issuance record.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("issuer"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("DID of the badge issuer."),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Display name from the badge definition.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("selected"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("badgeSlot"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"A display slot containing available issuance-based badges and which one (if any) is currently selected.",
),
),
required: Some(vec![SmolStr::new_static("available")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("available"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("All badges available for this slot."),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#badgeIssuanceView"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("selected"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#badgeIssuanceView"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("badgeView"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"View of a badge record, with fields resolved for display. If the DID in issuer is not the current streamplace node, the signature field shall be required.",
),
),
required: Some(
vec![
SmolStr::new_static("badgeType"),
SmolStr::new_static("issuer"),
SmolStr::new_static("recipient")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("badgeType"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Description from the badge definition."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("imageUrl"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Resolved image URL for the badge icon."),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("issuer"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("DID of the badge issuer."),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Display name from the badge definition.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("recipient"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("DID of the badge recipient."),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("signature"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"TODO: Cryptographic signature of the badge (of a place.stream.key).",
),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("bot"),
LexUserType::Token(LexToken { ..Default::default() }),
);
map.insert(
SmolStr::new_static("event"),
LexUserType::Token(LexToken { ..Default::default() }),
);
map.insert(
SmolStr::new_static("mod"),
LexUserType::Token(LexToken { ..Default::default() }),
);
map.insert(
SmolStr::new_static("streamer"),
LexUserType::Token(LexToken { ..Default::default() }),
);
map.insert(
SmolStr::new_static("vip"),
LexUserType::Token(LexToken { ..Default::default() }),
);
map
},
..Default::default()
}
}
pub mod badge_slot_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 Available;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Available = Unset;
}
pub struct SetAvailable<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAvailable<St> {}
impl<St: State> State for SetAvailable<St> {
type Available = Set<members::available>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct available(());
}
}
pub struct BadgeSlotBuilder<St: badge_slot_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<badge::BadgeIssuanceView<S>>>,
Option<badge::BadgeIssuanceView<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl BadgeSlot<DefaultStr> {
pub fn new() -> BadgeSlotBuilder<badge_slot_state::Empty, DefaultStr> {
BadgeSlotBuilder::new()
}
}
impl<S: BosStr> BadgeSlot<S> {
pub fn builder() -> BadgeSlotBuilder<badge_slot_state::Empty, S> {
BadgeSlotBuilder::builder()
}
}
impl BadgeSlotBuilder<badge_slot_state::Empty, DefaultStr> {
pub fn new() -> Self {
BadgeSlotBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> BadgeSlotBuilder<badge_slot_state::Empty, S> {
pub fn builder() -> Self {
BadgeSlotBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BadgeSlotBuilder<St, S>
where
St: badge_slot_state::State,
St::Available: badge_slot_state::IsUnset,
{
pub fn available(
mut self,
value: impl Into<Vec<badge::BadgeIssuanceView<S>>>,
) -> BadgeSlotBuilder<badge_slot_state::SetAvailable<St>, S> {
self._fields.0 = Option::Some(value.into());
BadgeSlotBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: badge_slot_state::State, S: BosStr> BadgeSlotBuilder<St, S> {
pub fn selected(
mut self,
value: impl Into<Option<badge::BadgeIssuanceView<S>>>,
) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_selected(mut self, value: Option<badge::BadgeIssuanceView<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<St, S: BosStr> BadgeSlotBuilder<St, S>
where
St: badge_slot_state::State,
St::Available: badge_slot_state::IsSet,
{
pub fn build(self) -> BadgeSlot<S> {
BadgeSlot {
available: self._fields.0.unwrap(),
selected: self._fields.1,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> BadgeSlot<S> {
BadgeSlot {
available: self._fields.0.unwrap(),
selected: self._fields.1,
extra_data: Some(extra_data),
}
}
}
pub mod badge_view_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 BadgeType;
type Issuer;
type Recipient;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type BadgeType = Unset;
type Issuer = Unset;
type Recipient = Unset;
}
pub struct SetBadgeType<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetBadgeType<St> {}
impl<St: State> State for SetBadgeType<St> {
type BadgeType = Set<members::badge_type>;
type Issuer = St::Issuer;
type Recipient = St::Recipient;
}
pub struct SetIssuer<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIssuer<St> {}
impl<St: State> State for SetIssuer<St> {
type BadgeType = St::BadgeType;
type Issuer = Set<members::issuer>;
type Recipient = St::Recipient;
}
pub struct SetRecipient<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecipient<St> {}
impl<St: State> State for SetRecipient<St> {
type BadgeType = St::BadgeType;
type Issuer = St::Issuer;
type Recipient = Set<members::recipient>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct badge_type(());
pub struct issuer(());
pub struct recipient(());
}
}
pub struct BadgeViewBuilder<St: badge_view_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<BadgeViewBadgeType<S>>,
Option<S>,
Option<UriValue<S>>,
Option<Did<S>>,
Option<S>,
Option<Did<S>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl BadgeView<DefaultStr> {
pub fn new() -> BadgeViewBuilder<badge_view_state::Empty, DefaultStr> {
BadgeViewBuilder::new()
}
}
impl<S: BosStr> BadgeView<S> {
pub fn builder() -> BadgeViewBuilder<badge_view_state::Empty, S> {
BadgeViewBuilder::builder()
}
}
impl BadgeViewBuilder<badge_view_state::Empty, DefaultStr> {
pub fn new() -> Self {
BadgeViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> BadgeViewBuilder<badge_view_state::Empty, S> {
pub fn builder() -> Self {
BadgeViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BadgeViewBuilder<St, S>
where
St: badge_view_state::State,
St::BadgeType: badge_view_state::IsUnset,
{
pub fn badge_type(
mut self,
value: impl Into<BadgeViewBadgeType<S>>,
) -> BadgeViewBuilder<badge_view_state::SetBadgeType<St>, S> {
self._fields.0 = Option::Some(value.into());
BadgeViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: badge_view_state::State, S: BosStr> BadgeViewBuilder<St, S> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: badge_view_state::State, S: BosStr> BadgeViewBuilder<St, S> {
pub fn image_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_image_url(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> BadgeViewBuilder<St, S>
where
St: badge_view_state::State,
St::Issuer: badge_view_state::IsUnset,
{
pub fn issuer(
mut self,
value: impl Into<Did<S>>,
) -> BadgeViewBuilder<badge_view_state::SetIssuer<St>, S> {
self._fields.3 = Option::Some(value.into());
BadgeViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: badge_view_state::State, S: BosStr> BadgeViewBuilder<St, S> {
pub fn name(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_name(mut self, value: Option<S>) -> Self {
self._fields.4 = value;
self
}
}
impl<St, S: BosStr> BadgeViewBuilder<St, S>
where
St: badge_view_state::State,
St::Recipient: badge_view_state::IsUnset,
{
pub fn recipient(
mut self,
value: impl Into<Did<S>>,
) -> BadgeViewBuilder<badge_view_state::SetRecipient<St>, S> {
self._fields.5 = Option::Some(value.into());
BadgeViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: badge_view_state::State, S: BosStr> BadgeViewBuilder<St, S> {
pub fn signature(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_signature(mut self, value: Option<S>) -> Self {
self._fields.6 = value;
self
}
}
impl<St, S: BosStr> BadgeViewBuilder<St, S>
where
St: badge_view_state::State,
St::BadgeType: badge_view_state::IsSet,
St::Issuer: badge_view_state::IsSet,
St::Recipient: badge_view_state::IsSet,
{
pub fn build(self) -> BadgeView<S> {
BadgeView {
badge_type: self._fields.0.unwrap(),
description: self._fields.1,
image_url: self._fields.2,
issuer: self._fields.3.unwrap(),
name: self._fields.4,
recipient: self._fields.5.unwrap(),
signature: self._fields.6,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> BadgeView<S> {
BadgeView {
badge_type: self._fields.0.unwrap(),
description: self._fields.1,
image_url: self._fields.2,
issuer: self._fields.3.unwrap(),
name: self._fields.4,
recipient: self._fields.5.unwrap(),
signature: self._fields.6,
extra_data: Some(extra_data),
}
}
}