feat(subsonic): expose all of album "name"/"title"/"album" for browse by tag and browse by folder
related #404
This commit is contained in:
@@ -12,6 +12,8 @@ func NewAlbumByFolder(f *db.Album) *Album {
|
|||||||
ID: f.SID(),
|
ID: f.SID(),
|
||||||
IsDir: true,
|
IsDir: true,
|
||||||
ParentID: f.ParentSID(),
|
ParentID: f.ParentSID(),
|
||||||
|
Album: f.RightPath,
|
||||||
|
Name: f.RightPath,
|
||||||
Title: f.RightPath,
|
Title: f.RightPath,
|
||||||
TrackCount: f.ChildCount,
|
TrackCount: f.ChildCount,
|
||||||
Duration: f.Duration,
|
Duration: f.Duration,
|
||||||
|
|||||||
@@ -11,7 +11,9 @@ func NewAlbumByTags(a *db.Album, artists []*db.Artist) *Album {
|
|||||||
ret := &Album{
|
ret := &Album{
|
||||||
Created: a.CreatedAt,
|
Created: a.CreatedAt,
|
||||||
ID: a.SID(),
|
ID: a.SID(),
|
||||||
|
Album: a.TagTitle,
|
||||||
Name: a.TagTitle,
|
Name: a.TagTitle,
|
||||||
|
Title: a.TagTitle,
|
||||||
Year: a.TagYear,
|
Year: a.TagYear,
|
||||||
TrackCount: a.ChildCount,
|
TrackCount: a.ChildCount,
|
||||||
Duration: a.Duration,
|
Duration: a.Duration,
|
||||||
|
|||||||
@@ -13,10 +13,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -26,10 +26,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -39,10 +39,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -52,10 +52,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -65,10 +65,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -78,10 +78,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -91,10 +91,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -104,10 +104,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -117,10 +117,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,10 +13,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -26,10 +26,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -39,10 +39,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -52,10 +52,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -65,10 +65,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -78,10 +78,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -91,10 +91,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -104,10 +104,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -117,10 +117,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,10 +13,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -26,10 +26,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -39,10 +39,10 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-2",
|
"parent": "al-2",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -52,10 +52,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -65,10 +65,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -78,10 +78,10 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -91,10 +91,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -104,10 +104,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -117,10 +117,10 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,55 +7,16 @@
|
|||||||
"openSubsonic": true,
|
"openSubsonic": true,
|
||||||
"albumList": {
|
"albumList": {
|
||||||
"album": [
|
"album": [
|
||||||
{
|
|
||||||
"id": "al-12",
|
|
||||||
"coverArt": "al-12",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-1",
|
|
||||||
"album": "",
|
|
||||||
"parent": "al-10",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-9",
|
|
||||||
"coverArt": "al-9",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-2",
|
|
||||||
"album": "",
|
|
||||||
"parent": "al-6",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "al-13",
|
"id": "al-13",
|
||||||
"coverArt": "al-13",
|
"coverArt": "al-13",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-2",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-3",
|
|
||||||
"coverArt": "al-3",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-0",
|
|
||||||
"album": "",
|
|
||||||
"parent": "al-2",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "",
|
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -65,49 +26,49 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-1",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-5",
|
"id": "al-9",
|
||||||
"coverArt": "al-5",
|
"coverArt": "al-9",
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-2",
|
|
||||||
"album": "",
|
|
||||||
"parent": "al-2",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-4",
|
|
||||||
"coverArt": "al-4",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "album-1",
|
|
||||||
"album": "",
|
|
||||||
"parent": "al-2",
|
|
||||||
"isDir": true,
|
|
||||||
"name": "",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-7",
|
|
||||||
"coverArt": "al-7",
|
|
||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"parent": "al-6",
|
"parent": "al-6",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-2",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-3",
|
||||||
|
"coverArt": "al-3",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"title": "album-0",
|
||||||
|
"album": "album-0",
|
||||||
|
"parent": "al-2",
|
||||||
|
"isDir": true,
|
||||||
|
"name": "album-0",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-12",
|
||||||
|
"coverArt": "al-12",
|
||||||
|
"artist": "artist-2",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"title": "album-1",
|
||||||
|
"album": "album-1",
|
||||||
|
"parent": "al-10",
|
||||||
|
"isDir": true,
|
||||||
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
},
|
},
|
||||||
@@ -117,10 +78,49 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "album-0",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"parent": "al-10",
|
"parent": "al-10",
|
||||||
"isDir": true,
|
"isDir": true,
|
||||||
"name": "",
|
"name": "album-0",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-4",
|
||||||
|
"coverArt": "al-4",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"title": "album-1",
|
||||||
|
"album": "album-1",
|
||||||
|
"parent": "al-2",
|
||||||
|
"isDir": true,
|
||||||
|
"name": "album-1",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-5",
|
||||||
|
"coverArt": "al-5",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"title": "album-2",
|
||||||
|
"album": "album-2",
|
||||||
|
"parent": "al-2",
|
||||||
|
"isDir": true,
|
||||||
|
"name": "album-2",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-7",
|
||||||
|
"coverArt": "al-7",
|
||||||
|
"artist": "artist-1",
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"title": "album-0",
|
||||||
|
"album": "album-0",
|
||||||
|
"parent": "al-6",
|
||||||
|
"isDir": true,
|
||||||
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300
|
"duration": 300
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,8 +14,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -28,8 +28,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -42,8 +42,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -56,8 +56,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -70,8 +70,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -84,8 +84,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -98,8 +98,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -112,8 +112,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -126,8 +126,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -14,8 +14,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -28,8 +28,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -42,8 +42,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -56,8 +56,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -70,8 +70,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -84,8 +84,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -98,8 +98,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -112,8 +112,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -126,8 +126,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -14,8 +14,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -28,8 +28,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -42,8 +42,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -56,8 +56,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -70,8 +70,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -84,8 +84,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -98,8 +98,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -112,8 +112,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -126,8 +126,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -8,57 +8,15 @@
|
|||||||
"albumList2": {
|
"albumList2": {
|
||||||
"album": [
|
"album": [
|
||||||
{
|
{
|
||||||
"id": "al-3",
|
"id": "al-11",
|
||||||
"coverArt": "al-3",
|
"coverArt": "al-11",
|
||||||
"artistId": "ar-1",
|
|
||||||
"artist": "artist-0",
|
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "",
|
|
||||||
"album": "",
|
|
||||||
"name": "album-0",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300,
|
|
||||||
"year": 2021
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-7",
|
|
||||||
"coverArt": "al-7",
|
|
||||||
"artistId": "ar-2",
|
|
||||||
"artist": "artist-1",
|
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "",
|
|
||||||
"album": "",
|
|
||||||
"name": "album-0",
|
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300,
|
|
||||||
"year": 2021
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-12",
|
|
||||||
"coverArt": "al-12",
|
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-1",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
|
||||||
"duration": 300,
|
|
||||||
"year": 2021
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "al-13",
|
|
||||||
"coverArt": "al-13",
|
|
||||||
"artistId": "ar-3",
|
|
||||||
"artist": "artist-2",
|
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
|
||||||
"created": "2019-11-30T00:00:00Z",
|
|
||||||
"title": "",
|
|
||||||
"album": "",
|
|
||||||
"name": "album-2",
|
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"year": 2021
|
"year": 2021
|
||||||
@@ -70,13 +28,41 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"year": 2021
|
"year": 2021
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "al-12",
|
||||||
|
"coverArt": "al-12",
|
||||||
|
"artistId": "ar-3",
|
||||||
|
"artist": "artist-2",
|
||||||
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"title": "album-1",
|
||||||
|
"album": "album-1",
|
||||||
|
"name": "album-1",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300,
|
||||||
|
"year": 2021
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-7",
|
||||||
|
"coverArt": "al-7",
|
||||||
|
"artistId": "ar-2",
|
||||||
|
"artist": "artist-1",
|
||||||
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"title": "album-0",
|
||||||
|
"album": "album-0",
|
||||||
|
"name": "album-0",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300,
|
||||||
|
"year": 2021
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "al-4",
|
"id": "al-4",
|
||||||
"coverArt": "al-4",
|
"coverArt": "al-4",
|
||||||
@@ -84,23 +70,37 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"year": 2021
|
"year": 2021
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "al-11",
|
"id": "al-3",
|
||||||
"coverArt": "al-11",
|
"coverArt": "al-3",
|
||||||
|
"artistId": "ar-1",
|
||||||
|
"artist": "artist-0",
|
||||||
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
|
"created": "2019-11-30T00:00:00Z",
|
||||||
|
"title": "album-0",
|
||||||
|
"album": "album-0",
|
||||||
|
"name": "album-0",
|
||||||
|
"songCount": 3,
|
||||||
|
"duration": 300,
|
||||||
|
"year": 2021
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "al-13",
|
||||||
|
"coverArt": "al-13",
|
||||||
"artistId": "ar-3",
|
"artistId": "ar-3",
|
||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-0",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"year": 2021
|
"year": 2021
|
||||||
@@ -112,8 +112,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -126,8 +126,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -33,8 +33,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -49,8 +49,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -33,8 +33,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -49,8 +49,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -33,8 +33,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
@@ -49,8 +49,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 3,
|
"songCount": 3,
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
|
|||||||
@@ -14,8 +14,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -30,8 +30,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -46,8 +46,8 @@
|
|||||||
"artist": "artist-0",
|
"artist": "artist-0",
|
||||||
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
"artists": [{ "id": "ar-1", "name": "artist-0" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -62,8 +62,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -78,8 +78,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -94,8 +94,8 @@
|
|||||||
"artist": "artist-1",
|
"artist": "artist-1",
|
||||||
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
"artists": [{ "id": "ar-2", "name": "artist-1" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -110,8 +110,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-0",
|
||||||
"album": "",
|
"album": "album-0",
|
||||||
"name": "album-0",
|
"name": "album-0",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -126,8 +126,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-1",
|
||||||
"album": "",
|
"album": "album-1",
|
||||||
"name": "album-1",
|
"name": "album-1",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
@@ -142,8 +142,8 @@
|
|||||||
"artist": "artist-2",
|
"artist": "artist-2",
|
||||||
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
"artists": [{ "id": "ar-3", "name": "artist-2" }],
|
||||||
"created": "2019-11-30T00:00:00Z",
|
"created": "2019-11-30T00:00:00Z",
|
||||||
"title": "",
|
"title": "album-2",
|
||||||
"album": "",
|
"album": "album-2",
|
||||||
"name": "album-2",
|
"name": "album-2",
|
||||||
"songCount": 0,
|
"songCount": 0,
|
||||||
"duration": 0,
|
"duration": 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user