pub mod create_song;
pub mod get_song;
pub mod get_songs;
pub mod match_song;
#[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, Datetime, UriValue};
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;
use crate::app_rocksky::artist::ArtistMbid;
#[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 = "app.rocksky.song",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Song<S: BosStr = DefaultStr> {
pub album: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub album_art: Option<BlobRef<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub album_art_url: Option<UriValue<S>>,
pub album_artist: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub apple_music_link: Option<UriValue<S>>,
pub artist: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub artists: Option<Vec<ArtistMbid<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub composer: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub copyright_message: Option<S>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub disc_number: Option<i64>,
pub duration: i64,
#[serde(skip_serializing_if = "Option::is_none")]
pub genre: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub label: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub lyrics: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub mbid: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub release_date: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub spotify_link: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tidal_link: Option<UriValue<S>>,
pub title: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub track_number: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub wiki: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub year: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub youtube_link: Option<UriValue<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")]
pub struct SongGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Song<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct SongViewBasic<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub album: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub album_art: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub album_artist: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub album_uri: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub artist: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub artist_uri: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub disc_number: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub duration: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub play_count: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub sha256: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub track_number: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub unique_listeners: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub uri: Option<AtUri<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, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct SongViewDetailed<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub album: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub album_art: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub album_artist: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub album_uri: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub artist: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub artist_uri: Option<AtUri<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
pub disc_number: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub duration: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub play_count: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub sha256: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tags: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub track_number: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub unique_listeners: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub uri: Option<AtUri<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> Song<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, SongRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SongRecord;
impl XrpcResp for SongRecord {
const NSID: &'static str = "app.rocksky.song";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = SongGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<SongGetRecordOutput<S>> for Song<S> {
fn from(output: SongGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Song<S> {
const NSID: &'static str = "app.rocksky.song";
type Record = SongRecord;
}
impl Collection for SongRecord {
const NSID: &'static str = "app.rocksky.song";
type Record = SongRecord;
}
impl<S: BosStr> LexiconSchema for Song<S> {
fn nsid() -> &'static str {
"app.rocksky.song"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_song()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.album;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("album"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.album;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("album"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.album_art {
{
let size = value.blob().size;
if size > 2000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("album_art"),
max: 2000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.album_art {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/png", "image/jpeg"];
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("album_art"),
accepted: vec!["image/png".to_string(), "image/jpeg".to_string()],
actual: mime.to_string(),
});
}
}
}
{
let value = &self.album_artist;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("album_artist"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.album_artist;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("album_artist"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.artist;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("artist"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.artist;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("artist"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.composer {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("composer"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.copyright_message {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("copyright_message"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.disc_number {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("disc_number"),
min: 1i64,
actual: *value,
});
}
}
{
let value = &self.duration;
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("duration"),
min: 1i64,
actual: *value,
});
}
}
if let Some(ref value) = self.genre {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("genre"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.genre {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("genre"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.label {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 256usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("label"),
max: 256usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.lyrics {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("lyrics"),
max: 10000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 512usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 512usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("title"),
min: 1usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.track_number {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("track_number"),
min: 1i64,
actual: *value,
});
}
}
if let Some(ref value) = self.wiki {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 10000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("wiki"),
max: 10000usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for SongViewBasic<S> {
fn nsid() -> &'static str {
"app.rocksky.song.defs"
}
fn def_name() -> &'static str {
"songViewBasic"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_song_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.play_count {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("play_count"),
min: 0i64,
actual: *value,
});
}
}
if let Some(ref value) = self.unique_listeners {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("unique_listeners"),
min: 0i64,
actual: *value,
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for SongViewDetailed<S> {
fn nsid() -> &'static str {
"app.rocksky.song.defs"
}
fn def_name() -> &'static str {
"songViewDetailed"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_rocksky_song_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.play_count {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("play_count"),
min: 0i64,
actual: *value,
});
}
}
if let Some(ref value) = self.unique_listeners {
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("unique_listeners"),
min: 0i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod song_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 Duration;
type Title;
type Album;
type AlbumArtist;
type Artist;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Duration = Unset;
type Title = Unset;
type Album = Unset;
type AlbumArtist = Unset;
type Artist = Unset;
type CreatedAt = Unset;
}
pub struct SetDuration<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDuration<St> {}
impl<St: State> State for SetDuration<St> {
type Duration = Set<members::duration>;
type Title = St::Title;
type Album = St::Album;
type AlbumArtist = St::AlbumArtist;
type Artist = St::Artist;
type CreatedAt = St::CreatedAt;
}
pub struct SetTitle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetTitle<St> {}
impl<St: State> State for SetTitle<St> {
type Duration = St::Duration;
type Title = Set<members::title>;
type Album = St::Album;
type AlbumArtist = St::AlbumArtist;
type Artist = St::Artist;
type CreatedAt = St::CreatedAt;
}
pub struct SetAlbum<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAlbum<St> {}
impl<St: State> State for SetAlbum<St> {
type Duration = St::Duration;
type Title = St::Title;
type Album = Set<members::album>;
type AlbumArtist = St::AlbumArtist;
type Artist = St::Artist;
type CreatedAt = St::CreatedAt;
}
pub struct SetAlbumArtist<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAlbumArtist<St> {}
impl<St: State> State for SetAlbumArtist<St> {
type Duration = St::Duration;
type Title = St::Title;
type Album = St::Album;
type AlbumArtist = Set<members::album_artist>;
type Artist = St::Artist;
type CreatedAt = St::CreatedAt;
}
pub struct SetArtist<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetArtist<St> {}
impl<St: State> State for SetArtist<St> {
type Duration = St::Duration;
type Title = St::Title;
type Album = St::Album;
type AlbumArtist = St::AlbumArtist;
type Artist = Set<members::artist>;
type CreatedAt = St::CreatedAt;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type Duration = St::Duration;
type Title = St::Title;
type Album = St::Album;
type AlbumArtist = St::AlbumArtist;
type Artist = St::Artist;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct duration(());
pub struct title(());
pub struct album(());
pub struct album_artist(());
pub struct artist(());
pub struct created_at(());
}
}
pub struct SongBuilder<S: BosStr, St: song_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<BlobRef<S>>,
Option<UriValue<S>>,
Option<S>,
Option<UriValue<S>>,
Option<S>,
Option<Vec<ArtistMbid<S>>>,
Option<S>,
Option<S>,
Option<Datetime>,
Option<i64>,
Option<i64>,
Option<S>,
Option<S>,
Option<S>,
Option<S>,
Option<Datetime>,
Option<UriValue<S>>,
Option<Vec<S>>,
Option<UriValue<S>>,
Option<S>,
Option<i64>,
Option<S>,
Option<i64>,
Option<UriValue<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Song<S> {
pub fn new() -> SongBuilder<S, song_state::Empty> {
SongBuilder::new()
}
}
impl<S: BosStr> SongBuilder<S, song_state::Empty> {
pub fn new() -> Self {
SongBuilder {
_state: PhantomData,
_fields: (
None, None, None, None, None, None, None, None, None, None, None, None, None, None,
None, None, None, None, None, None, None, None, None, None, None,
),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::Album: song_state::IsUnset,
{
pub fn album(mut self, value: impl Into<S>) -> SongBuilder<S, song_state::SetAlbum<St>> {
self._fields.0 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn album_art(mut self, value: impl Into<Option<BlobRef<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_album_art(mut self, value: Option<BlobRef<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn album_art_url(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_album_art_url(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::AlbumArtist: song_state::IsUnset,
{
pub fn album_artist(
mut self,
value: impl Into<S>,
) -> SongBuilder<S, song_state::SetAlbumArtist<St>> {
self._fields.3 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn apple_music_link(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_apple_music_link(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::Artist: song_state::IsUnset,
{
pub fn artist(mut self, value: impl Into<S>) -> SongBuilder<S, song_state::SetArtist<St>> {
self._fields.5 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn artists(mut self, value: impl Into<Option<Vec<ArtistMbid<S>>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_artists(mut self, value: Option<Vec<ArtistMbid<S>>>) -> Self {
self._fields.6 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn composer(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_composer(mut self, value: Option<S>) -> Self {
self._fields.7 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn copyright_message(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_copyright_message(mut self, value: Option<S>) -> Self {
self._fields.8 = value;
self
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::CreatedAt: song_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> SongBuilder<S, song_state::SetCreatedAt<St>> {
self._fields.9 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn disc_number(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_disc_number(mut self, value: Option<i64>) -> Self {
self._fields.10 = value;
self
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::Duration: song_state::IsUnset,
{
pub fn duration(
mut self,
value: impl Into<i64>,
) -> SongBuilder<S, song_state::SetDuration<St>> {
self._fields.11 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn genre(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.12 = value.into();
self
}
pub fn maybe_genre(mut self, value: Option<S>) -> Self {
self._fields.12 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn label(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.13 = value.into();
self
}
pub fn maybe_label(mut self, value: Option<S>) -> Self {
self._fields.13 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn lyrics(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.14 = value.into();
self
}
pub fn maybe_lyrics(mut self, value: Option<S>) -> Self {
self._fields.14 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn mbid(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.15 = value.into();
self
}
pub fn maybe_mbid(mut self, value: Option<S>) -> Self {
self._fields.15 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn release_date(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.16 = value.into();
self
}
pub fn maybe_release_date(mut self, value: Option<Datetime>) -> Self {
self._fields.16 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn spotify_link(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.17 = value.into();
self
}
pub fn maybe_spotify_link(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.17 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn tags(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.18 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Vec<S>>) -> Self {
self._fields.18 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn tidal_link(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.19 = value.into();
self
}
pub fn maybe_tidal_link(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.19 = value;
self
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::Title: song_state::IsUnset,
{
pub fn title(mut self, value: impl Into<S>) -> SongBuilder<S, song_state::SetTitle<St>> {
self._fields.20 = Option::Some(value.into());
SongBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn track_number(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.21 = value.into();
self
}
pub fn maybe_track_number(mut self, value: Option<i64>) -> Self {
self._fields.21 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn wiki(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.22 = value.into();
self
}
pub fn maybe_wiki(mut self, value: Option<S>) -> Self {
self._fields.22 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn year(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.23 = value.into();
self
}
pub fn maybe_year(mut self, value: Option<i64>) -> Self {
self._fields.23 = value;
self
}
}
impl<S: BosStr, St: song_state::State> SongBuilder<S, St> {
pub fn youtube_link(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.24 = value.into();
self
}
pub fn maybe_youtube_link(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.24 = value;
self
}
}
impl<S: BosStr, St> SongBuilder<S, St>
where
St: song_state::State,
St::Duration: song_state::IsSet,
St::Title: song_state::IsSet,
St::Album: song_state::IsSet,
St::AlbumArtist: song_state::IsSet,
St::Artist: song_state::IsSet,
St::CreatedAt: song_state::IsSet,
{
pub fn build(self) -> Song<S> {
Song {
album: self._fields.0.unwrap(),
album_art: self._fields.1,
album_art_url: self._fields.2,
album_artist: self._fields.3.unwrap(),
apple_music_link: self._fields.4,
artist: self._fields.5.unwrap(),
artists: self._fields.6,
composer: self._fields.7,
copyright_message: self._fields.8,
created_at: self._fields.9.unwrap(),
disc_number: self._fields.10,
duration: self._fields.11.unwrap(),
genre: self._fields.12,
label: self._fields.13,
lyrics: self._fields.14,
mbid: self._fields.15,
release_date: self._fields.16,
spotify_link: self._fields.17,
tags: self._fields.18,
tidal_link: self._fields.19,
title: self._fields.20.unwrap(),
track_number: self._fields.21,
wiki: self._fields.22,
year: self._fields.23,
youtube_link: self._fields.24,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Song<S> {
Song {
album: self._fields.0.unwrap(),
album_art: self._fields.1,
album_art_url: self._fields.2,
album_artist: self._fields.3.unwrap(),
apple_music_link: self._fields.4,
artist: self._fields.5.unwrap(),
artists: self._fields.6,
composer: self._fields.7,
copyright_message: self._fields.8,
created_at: self._fields.9.unwrap(),
disc_number: self._fields.10,
duration: self._fields.11.unwrap(),
genre: self._fields.12,
label: self._fields.13,
lyrics: self._fields.14,
mbid: self._fields.15,
release_date: self._fields.16,
spotify_link: self._fields.17,
tags: self._fields.18,
tidal_link: self._fields.19,
title: self._fields.20.unwrap(),
track_number: self._fields.21,
wiki: self._fields.22,
year: self._fields.23,
youtube_link: self._fields.24,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_rocksky_song() -> 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("app.rocksky.song"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A declaration of a song.")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("title"),
SmolStr::new_static("artist"),
SmolStr::new_static("album"),
SmolStr::new_static("albumArtist"),
SmolStr::new_static("duration"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("album"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The album of the song.")),
min_length: Some(1usize),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumArt"),
LexObjectProperty::Blob(LexBlob {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumArtUrl"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URL of the album art of the song.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumArtist"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The album artist of the song.",
)),
min_length: Some(1usize),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("appleMusicLink"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The Apple Music link of the song.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("artist"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The artist of the song.",
)),
min_length: Some(1usize),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("artists"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static(
"The artists of the song with MusicBrainz IDs.",
)),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"app.rocksky.artist.defs#artistMbid",
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("composer"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The composer of the song.",
)),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("copyrightMessage"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The copyright message of the song.",
)),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The date when the song was created.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("discNumber"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("duration"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("genre"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The genre of the song.")),
min_length: Some(1usize),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("label"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The label of the song.")),
max_length: Some(256usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("lyrics"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The lyrics of the song.",
)),
max_length: Some(10000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("mbid"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The MusicBrainz ID of the song.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("releaseDate"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The release date of the song.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("spotifyLink"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The Spotify link of the song.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static("The tags of the song.")),
items: LexArrayItem::String(LexString {
min_length: Some(1usize),
max_length: Some(256usize),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tidalLink"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The Tidal link of the song.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The title of the song.")),
min_length: Some(1usize),
max_length: Some(512usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("trackNumber"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("wiki"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Informations about the song",
)),
max_length: Some(10000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("year"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("youtubeLink"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The YouTube link of the song.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
fn lexicon_doc_app_rocksky_song_defs() -> 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("app.rocksky.song.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("songViewBasic"),
LexUserType::Object(LexObject {
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("album"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The album of the song.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumArt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URL of the album art image.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumArtist"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The artist of the album the song belongs to.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumUri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URI of the album the song belongs to.",
)),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("artist"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The artist of the song.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("artistUri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URI of the artist of the song.",
)),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The timestamp when the song was created.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("discNumber"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("duration"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("id"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The unique identifier of the song.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("playCount"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("sha256"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The SHA256 hash of the song.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The title of the song.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("trackNumber"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uniqueListeners"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The URI of the song.")),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("songViewDetailed"),
LexUserType::Object(LexObject {
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("album"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The album of the song.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumArt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URL of the album art image.",
)),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumArtist"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The artist of the album the song belongs to.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("albumUri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URI of the album the song belongs to.",
)),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("artist"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The artist of the song.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("artistUri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The URI of the artist of the song.",
)),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The timestamp when the song was created.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("discNumber"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("duration"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("id"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The unique identifier of the song.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("playCount"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("sha256"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"The SHA256 hash of the song.",
)),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The title of the song.")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("trackNumber"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uniqueListeners"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("The URI of the song.")),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}