pub mod get_actor_feed;
pub mod get_play;
pub mod play;
#[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::Datetime;
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::fm_teal::alpha::feed;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Artist<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub artist_mb_id: Option<S>,
pub artist_name: 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 PlayView<S: BosStr = DefaultStr> {
pub artists: Vec<feed::Artist<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub duration: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub isrc: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub music_service_base_domain: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub origin_url: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub played_time: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub recording_mb_id: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub release_mb_id: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub release_name: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub submission_client_agent: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub track_mb_id: Option<S>,
pub track_name: S,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for Artist<S> {
fn nsid() -> &'static str {
"fm.teal.alpha.feed.defs"
}
fn def_name() -> &'static str {
"artist"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_fm_teal_alpha_feed_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.artist_name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("artist_name"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.artist_name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("artist_name"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.artist_name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 2560usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("artist_name"),
max: 2560usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for PlayView<S> {
fn nsid() -> &'static str {
"fm.teal.alpha.feed.defs"
}
fn def_name() -> &'static str {
"playView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_fm_teal_alpha_feed_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.release_name {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("release_name"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.release_name {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 2560usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("release_name"),
max: 2560usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.submission_client_agent {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("submission_client_agent"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.submission_client_agent {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 2560usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("submission_client_agent"),
max: 2560usize,
actual: count,
});
}
}
}
{
let value = &self.track_name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("track_name"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.track_name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("track_name"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.track_name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 2560usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("track_name"),
max: 2560usize,
actual: count,
});
}
}
}
Ok(())
}
}
fn lexicon_doc_fm_teal_alpha_feed_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("fm.teal.alpha.feed.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("artist"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("artistName")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("artistMbId"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The Musicbrainz ID of the artist"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("artistName"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The name of the artist"),
),
min_length: Some(1usize),
max_length: Some(256usize),
max_graphemes: Some(2560usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("playView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("trackName"),
SmolStr::new_static("artists")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("artists"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Array of artists in order of original appearance.",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#artist"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("duration"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("isrc"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The ISRC code associated with the recording",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("musicServiceBaseDomain"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The base domain of the music service. e.g. music.apple.com, tidal.com, spotify.com. Defaults to 'local' if not provided.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("originUrl"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The URL associated with this track"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("playedTime"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The unix timestamp of when the track was played",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("recordingMbId"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The Musicbrainz recording ID of the track",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("releaseMbId"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The Musicbrainz release ID"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("releaseName"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The name of the release/album"),
),
max_length: Some(256usize),
max_graphemes: Some(2560usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("submissionClientAgent"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"A user-agent style string specifying the user agent. e.g. tealtracker/0.0.1b (Linux; Android 13; SM-A715F). Defaults to 'manual/unknown' if not provided.",
),
),
max_length: Some(256usize),
max_graphemes: Some(2560usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("trackMbId"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The Musicbrainz ID of the track"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("trackName"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The name of the track"),
),
min_length: Some(1usize),
max_length: Some(256usize),
max_graphemes: Some(2560usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod play_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 TrackName;
type Artists;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type TrackName = Unset;
type Artists = Unset;
}
pub struct SetTrackName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTrackName<St> {}
impl<St: State> State for SetTrackName<St> {
type TrackName = Set<members::track_name>;
type Artists = St::Artists;
}
pub struct SetArtists<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetArtists<St> {}
impl<St: State> State for SetArtists<St> {
type TrackName = St::TrackName;
type Artists = Set<members::artists>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct track_name(());
pub struct artists(());
}
}
pub struct PlayViewBuilder<S: BosStr, St: play_view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<feed::Artist<S>>>,
Option<i64>,
Option<S>,
Option<S>,
Option<S>,
Option<Datetime>,
Option<S>,
Option<S>,
Option<S>,
Option<S>,
Option<S>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> PlayView<S> {
pub fn new() -> PlayViewBuilder<S, play_view_state::Empty> {
PlayViewBuilder::new()
}
}
impl<S: BosStr> PlayViewBuilder<S, play_view_state::Empty> {
pub fn new() -> Self {
PlayViewBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PlayViewBuilder<S, St>
where
St: play_view_state::State,
St::Artists: play_view_state::IsUnset,
{
pub fn artists(
mut self,
value: impl Into<Vec<feed::Artist<S>>>,
) -> PlayViewBuilder<S, play_view_state::SetArtists<St>> {
self._fields.0 = Option::Some(value.into());
PlayViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn duration(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_duration(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn isrc(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_isrc(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn music_service_base_domain(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_music_service_base_domain(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn origin_url(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_origin_url(mut self, value: Option<S>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn played_time(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_played_time(mut self, value: Option<Datetime>) -> Self {
self._fields.5 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn recording_mb_id(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_recording_mb_id(mut self, value: Option<S>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn release_mb_id(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_release_mb_id(mut self, value: Option<S>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn release_name(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_release_name(mut self, value: Option<S>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn submission_client_agent(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_submission_client_agent(mut self, value: Option<S>) -> Self {
self._fields.9 = value;
self
}
}
impl<S: BosStr, St: play_view_state::State> PlayViewBuilder<S, St> {
pub fn track_mb_id(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_track_mb_id(mut self, value: Option<S>) -> Self {
self._fields.10 = value;
self
}
}
impl<S: BosStr, St> PlayViewBuilder<S, St>
where
St: play_view_state::State,
St::TrackName: play_view_state::IsUnset,
{
pub fn track_name(
mut self,
value: impl Into<S>,
) -> PlayViewBuilder<S, play_view_state::SetTrackName<St>> {
self._fields.11 = Option::Some(value.into());
PlayViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> PlayViewBuilder<S, St>
where
St: play_view_state::State,
St::TrackName: play_view_state::IsSet,
St::Artists: play_view_state::IsSet,
{
pub fn build(self) -> PlayView<S> {
PlayView {
artists: self._fields.0.unwrap(),
duration: self._fields.1,
isrc: self._fields.2,
music_service_base_domain: self._fields.3,
origin_url: self._fields.4,
played_time: self._fields.5,
recording_mb_id: self._fields.6,
release_mb_id: self._fields.7,
release_name: self._fields.8,
submission_client_agent: self._fields.9,
track_mb_id: self._fields.10,
track_name: self._fields.11.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> PlayView<S> {
PlayView {
artists: self._fields.0.unwrap(),
duration: self._fields.1,
isrc: self._fields.2,
music_service_base_domain: self._fields.3,
origin_url: self._fields.4,
played_time: self._fields.5,
recording_mb_id: self._fields.6,
release_mb_id: self._fields.7,
release_name: self._fields.8,
submission_client_agent: self._fields.9,
track_mb_id: self._fields.10,
track_name: self._fields.11.unwrap(),
extra_data: Some(extra_data),
}
}
}