mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
* Call Last.FM's getInfo again without mbid when artist is not found * Call Last.FM's getSimilar again without mbid when artist is not found * Call Last.FM's getTopTracks again without mbid when artist is not found
61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
package lastfm
|
|
|
|
type Response struct {
|
|
Artist Artist `json:"artist"`
|
|
SimilarArtists SimilarArtists `json:"similarartists"`
|
|
TopTracks TopTracks `json:"toptracks"`
|
|
Error int `json:"error"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type Artist struct {
|
|
Name string `json:"name"`
|
|
MBID string `json:"mbid"`
|
|
URL string `json:"url"`
|
|
Image []ArtistImage `json:"image"`
|
|
Streamable string `json:"streamable"`
|
|
Stats struct {
|
|
Listeners string `json:"listeners"`
|
|
Plays string `json:"plays"`
|
|
} `json:"stats"`
|
|
Similar SimilarArtists `json:"similar"`
|
|
Tags struct {
|
|
Tag []ArtistTag `json:"tag"`
|
|
} `json:"tags"`
|
|
Bio ArtistBio `json:"bio"`
|
|
}
|
|
|
|
type SimilarArtists struct {
|
|
Artists []Artist `json:"artist"`
|
|
Attr Attr `json:"@attr"`
|
|
}
|
|
|
|
type Attr struct {
|
|
Artist string `json:"artist"`
|
|
}
|
|
|
|
type ArtistImage struct {
|
|
URL string `json:"#text"`
|
|
Size string `json:"size"`
|
|
}
|
|
|
|
type ArtistTag struct {
|
|
Name string `json:"name"`
|
|
URL string `json:"url"`
|
|
}
|
|
|
|
type ArtistBio struct {
|
|
Published string `json:"published"`
|
|
Summary string `json:"summary"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type Track struct {
|
|
Name string `json:"name"`
|
|
MBID string `json:"mbid"`
|
|
}
|
|
|
|
type TopTracks struct {
|
|
Track []Track `json:"track"`
|
|
Attr Attr `json:"@attr"`
|
|
}
|