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;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::string::Datetime;
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::fm_teal::alpha::feed;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct Artist<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub artist_mb_id: Option<CowStr<'a>>,
#[serde(borrow)]
pub artist_name: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct PlayView<'a> {
#[serde(borrow)]
pub artists: Vec<feed::Artist<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub duration: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub isrc: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub music_service_base_domain: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub origin_url: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub played_time: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub recording_mb_id: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub release_mb_id: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub release_name: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub submission_client_agent: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub track_mb_id: Option<CowStr<'a>>,
#[serde(borrow)]
pub track_name: CowStr<'a>,
}
impl<'a> LexiconSchema for Artist<'a> {
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<'a> LexiconSchema for PlayView<'a> {
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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTrackName<S> {}
impl<S: State> State for SetTrackName<S> {
type TrackName = Set<members::track_name>;
type Artists = S::Artists;
}
pub struct SetArtists<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetArtists<S> {}
impl<S: State> State for SetArtists<S> {
type TrackName = S::TrackName;
type Artists = Set<members::artists>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct track_name(());
pub struct artists(());
}
}
pub struct PlayViewBuilder<'a, S: play_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Vec<feed::Artist<'a>>>,
Option<i64>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> PlayView<'a> {
pub fn new() -> PlayViewBuilder<'a, play_view_state::Empty> {
PlayViewBuilder::new()
}
}
impl<'a> PlayViewBuilder<'a, play_view_state::Empty> {
pub fn new() -> Self {
PlayViewBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_lifetime: PhantomData,
}
}
}
impl<'a, S> PlayViewBuilder<'a, S>
where
S: play_view_state::State,
S::Artists: play_view_state::IsUnset,
{
pub fn artists(
mut self,
value: impl Into<Vec<feed::Artist<'a>>>,
) -> PlayViewBuilder<'a, play_view_state::SetArtists<S>> {
self._fields.0 = Option::Some(value.into());
PlayViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
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<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
pub fn isrc(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_isrc(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
pub fn music_service_base_domain(
mut self,
value: impl Into<Option<CowStr<'a>>>,
) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_music_service_base_domain(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
pub fn origin_url(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_origin_url(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
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<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
pub fn recording_mb_id(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_recording_mb_id(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
pub fn release_mb_id(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_release_mb_id(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
pub fn release_name(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_release_name(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
pub fn submission_client_agent(
mut self,
value: impl Into<Option<CowStr<'a>>>,
) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_submission_client_agent(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S: play_view_state::State> PlayViewBuilder<'a, S> {
pub fn track_mb_id(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_track_mb_id(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.10 = value;
self
}
}
impl<'a, S> PlayViewBuilder<'a, S>
where
S: play_view_state::State,
S::TrackName: play_view_state::IsUnset,
{
pub fn track_name(
mut self,
value: impl Into<CowStr<'a>>,
) -> PlayViewBuilder<'a, play_view_state::SetTrackName<S>> {
self._fields.11 = Option::Some(value.into());
PlayViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> PlayViewBuilder<'a, S>
where
S: play_view_state::State,
S::TrackName: play_view_state::IsSet,
S::Artists: play_view_state::IsSet,
{
pub fn build(self) -> PlayView<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> PlayView<'a> {
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),
}
}
}