mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Add more OpenSubsonic fields
- isCompilation - sortName
This commit is contained in:
parent
f580c5b8bc
commit
cdccdc56c9
28 changed files with 75 additions and 44 deletions
|
@ -432,6 +432,8 @@ func (api *Router) buildAlbum(ctx context.Context, album *model.Album, mfs model
|
||||||
dir.Starred = &album.StarredAt
|
dir.Starred = &album.StarredAt
|
||||||
}
|
}
|
||||||
dir.MusicBrainzId = album.MbzAlbumID
|
dir.MusicBrainzId = album.MbzAlbumID
|
||||||
|
dir.IsCompilation = album.Compilation
|
||||||
|
dir.SortName = album.SortAlbumName
|
||||||
dir.Song = childrenFromMediaFiles(ctx, mfs)
|
dir.Song = childrenFromMediaFiles(ctx, mfs)
|
||||||
return dir
|
return dir
|
||||||
}
|
}
|
||||||
|
|
|
@ -111,6 +111,7 @@ func toArtistID3(r *http.Request, a model.Artist) responses.ArtistID3 {
|
||||||
ArtistImageUrl: public.ImageURL(r, a.CoverArtID(), 600),
|
ArtistImageUrl: public.ImageURL(r, a.CoverArtID(), 600),
|
||||||
UserRating: int32(a.Rating),
|
UserRating: int32(a.Rating),
|
||||||
MusicBrainzId: a.MbzArtistID,
|
MusicBrainzId: a.MbzArtistID,
|
||||||
|
SortName: a.SortArtistName,
|
||||||
}
|
}
|
||||||
if a.Starred {
|
if a.Starred {
|
||||||
artist.Starred = &a.StarredAt
|
artist.Starred = &a.StarredAt
|
||||||
|
@ -187,6 +188,7 @@ func childFromMediaFile(ctx context.Context, mf model.MediaFile) responses.Child
|
||||||
}
|
}
|
||||||
child.BookmarkPosition = mf.BookmarkPosition
|
child.BookmarkPosition = mf.BookmarkPosition
|
||||||
child.Comment = mf.Comment
|
child.Comment = mf.Comment
|
||||||
|
child.SortName = mf.SortTitle
|
||||||
child.Bpm = int32(mf.Bpm)
|
child.Bpm = int32(mf.Bpm)
|
||||||
child.MediaType = responses.MediaTypeSong
|
child.MediaType = responses.MediaTypeSong
|
||||||
child.MusicBrainzId = mf.MbzRecordingID
|
child.MusicBrainzId = mf.MbzRecordingID
|
||||||
|
@ -238,6 +240,7 @@ func childFromAlbum(_ context.Context, al model.Album) responses.Child {
|
||||||
child.Played = &al.PlayDate
|
child.Played = &al.PlayDate
|
||||||
}
|
}
|
||||||
child.UserRating = int32(al.Rating)
|
child.UserRating = int32(al.Rating)
|
||||||
|
child.SortName = al.SortAlbumName
|
||||||
child.MediaType = responses.MediaTypeAlbum
|
child.MediaType = responses.MediaTypeAlbum
|
||||||
child.MusicBrainzId = al.MbzAlbumID
|
child.MusicBrainzId = al.MbzAlbumID
|
||||||
return child
|
return child
|
||||||
|
|
|
@ -11,10 +11,11 @@
|
||||||
"isDir": false,
|
"isDir": false,
|
||||||
"title": "title",
|
"title": "title",
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<albumList>
|
<albumList>
|
||||||
<album id="1" isDir="false" title="title" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></album>
|
<album id="1" isDir="false" title="title" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></album>
|
||||||
</albumList>
|
</albumList>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -19,6 +19,8 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"musicBrainzId": "1234",
|
"musicBrainzId": "1234",
|
||||||
|
"isCompilation": true,
|
||||||
|
"sortName": "sorted album",
|
||||||
"song": [
|
"song": [
|
||||||
{
|
{
|
||||||
"id": "1",
|
"id": "1",
|
||||||
|
@ -39,10 +41,11 @@
|
||||||
"duration": 146,
|
"duration": 146,
|
||||||
"bitRate": 320,
|
"bitRate": 320,
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "song",
|
|
||||||
"musicBrainzId": "4321",
|
|
||||||
"bpm": 127,
|
"bpm": 127,
|
||||||
"comment": "a comment",
|
"comment": "a comment",
|
||||||
|
"sortName": "sorted song",
|
||||||
|
"mediaType": "song",
|
||||||
|
"musicBrainzId": "4321",
|
||||||
"genres": [
|
"genres": [
|
||||||
{
|
{
|
||||||
"name": "rock"
|
"name": "rock"
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<album id="1" name="album" artist="artist" genre="rock" userRating="0" musicBrainzId="1234">
|
<album id="1" name="album" artist="artist" genre="rock" userRating="0" musicBrainzId="1234" isCompilation="true" sortName="sorted album">
|
||||||
<genres name="rock"></genres>
|
<genres name="rock"></genres>
|
||||||
<genres name="progressive"></genres>
|
<genres name="progressive"></genres>
|
||||||
<song id="1" isDir="true" title="title" album="album" artist="artist" track="1" year="1985" genre="Rock" coverArt="1" size="8421341" contentType="audio/flac" suffix="flac" starred="2016-03-02T20:30:00Z" transcodedContentType="audio/mpeg" transcodedSuffix="mp3" duration="146" bitRate="320" isVideo="false" mediaType="song" musicBrainzId="4321" bpm="127" comment="a comment">
|
<song id="1" isDir="true" title="title" album="album" artist="artist" track="1" year="1985" genre="Rock" coverArt="1" size="8421341" contentType="audio/flac" suffix="flac" starred="2016-03-02T20:30:00Z" transcodedContentType="audio/mpeg" transcodedSuffix="mp3" duration="146" bitRate="320" isVideo="false" bpm="127" comment="a comment" sortName="sorted song" mediaType="song" musicBrainzId="4321">
|
||||||
<genres name="rock"></genres>
|
<genres name="rock"></genres>
|
||||||
<genres name="progressive"></genres>
|
<genres name="progressive"></genres>
|
||||||
</song>
|
</song>
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
"name": "",
|
"name": "",
|
||||||
"userRating": 0,
|
"userRating": 0,
|
||||||
"genres": [],
|
"genres": [],
|
||||||
"musicBrainzId": ""
|
"musicBrainzId": "",
|
||||||
|
"isCompilation": false,
|
||||||
|
"sortName": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<album id="" name="" userRating="0" musicBrainzId=""></album>
|
<album id="" name="" userRating="0" musicBrainzId="" isCompilation="false" sortName=""></album>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -12,10 +12,11 @@
|
||||||
"isDir": false,
|
"isDir": false,
|
||||||
"title": "title",
|
"title": "title",
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
},
|
},
|
||||||
"position": 123,
|
"position": 123,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<bookmarks>
|
<bookmarks>
|
||||||
<bookmark position="123" username="user2" comment="a comment" created="0001-01-01T00:00:00Z" changed="0001-01-01T00:00:00Z">
|
<bookmark position="123" username="user2" comment="a comment" created="0001-01-01T00:00:00Z" changed="0001-01-01T00:00:00Z">
|
||||||
<entry id="1" isDir="false" title="title" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></entry>
|
<entry id="1" isDir="false" title="title" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></entry>
|
||||||
</bookmark>
|
</bookmark>
|
||||||
</bookmarks>
|
</bookmarks>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -25,10 +25,11 @@
|
||||||
"duration": 146,
|
"duration": 146,
|
||||||
"bitRate": 320,
|
"bitRate": 320,
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "song",
|
|
||||||
"musicBrainzId": "4321",
|
|
||||||
"bpm": 127,
|
"bpm": 127,
|
||||||
"comment": "a comment",
|
"comment": "a comment",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "song",
|
||||||
|
"musicBrainzId": "4321",
|
||||||
"genres": [
|
"genres": [
|
||||||
{
|
{
|
||||||
"name": "rock"
|
"name": "rock"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<directory id="1" name="N">
|
<directory id="1" name="N">
|
||||||
<child id="1" isDir="true" title="title" album="album" artist="artist" track="1" year="1985" genre="Rock" coverArt="1" size="8421341" contentType="audio/flac" suffix="flac" starred="2016-03-02T20:30:00Z" transcodedContentType="audio/mpeg" transcodedSuffix="mp3" duration="146" bitRate="320" isVideo="false" mediaType="song" musicBrainzId="4321" bpm="127" comment="a comment">
|
<child id="1" isDir="true" title="title" album="album" artist="artist" track="1" year="1985" genre="Rock" coverArt="1" size="8421341" contentType="audio/flac" suffix="flac" starred="2016-03-02T20:30:00Z" transcodedContentType="audio/mpeg" transcodedSuffix="mp3" duration="146" bitRate="320" isVideo="false" bpm="127" comment="a comment" sortName="" mediaType="song" musicBrainzId="4321">
|
||||||
<genres name="rock"></genres>
|
<genres name="rock"></genres>
|
||||||
<genres name="progressive"></genres>
|
<genres name="progressive"></genres>
|
||||||
</child>
|
</child>
|
||||||
|
|
|
@ -10,10 +10,11 @@
|
||||||
"id": "1",
|
"id": "1",
|
||||||
"isDir": false,
|
"isDir": false,
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<directory id="" name="">
|
<directory id="" name="">
|
||||||
<child id="1" isDir="false" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></child>
|
<child id="1" isDir="false" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></child>
|
||||||
</directory>
|
</directory>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -11,10 +11,11 @@
|
||||||
"isDir": false,
|
"isDir": false,
|
||||||
"title": "title",
|
"title": "title",
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<directory id="1" name="N">
|
<directory id="1" name="N">
|
||||||
<child id="1" isDir="false" title="title" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></child>
|
<child id="1" isDir="false" title="title" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></child>
|
||||||
</directory>
|
</directory>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -11,10 +11,11 @@
|
||||||
"isDir": false,
|
"isDir": false,
|
||||||
"title": "title",
|
"title": "title",
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<playQueue current="111" position="243" username="user1" changed="0001-01-01T00:00:00Z" changedBy="a_client">
|
<playQueue current="111" position="243" username="user1" changed="0001-01-01T00:00:00Z" changedBy="a_client">
|
||||||
<entry id="1" isDir="false" title="title" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></entry>
|
<entry id="1" isDir="false" title="title" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></entry>
|
||||||
</playQueue>
|
</playQueue>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -16,10 +16,11 @@
|
||||||
"artist": "artist",
|
"artist": "artist",
|
||||||
"duration": 120,
|
"duration": 120,
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -30,10 +31,11 @@
|
||||||
"artist": "artist",
|
"artist": "artist",
|
||||||
"duration": 300,
|
"duration": 300,
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<shares>
|
<shares>
|
||||||
<share id="ABC123" url="http://localhost/p/ABC123" description="Check it out!" username="deluan" created="0001-01-01T00:00:00Z" expires="0001-01-01T00:00:00Z" lastVisited="0001-01-01T00:00:00Z" visitCount="2">
|
<share id="ABC123" url="http://localhost/p/ABC123" description="Check it out!" username="deluan" created="0001-01-01T00:00:00Z" expires="0001-01-01T00:00:00Z" lastVisited="0001-01-01T00:00:00Z" visitCount="2">
|
||||||
<entry id="1" isDir="false" title="title" album="album" artist="artist" duration="120" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></entry>
|
<entry id="1" isDir="false" title="title" album="album" artist="artist" duration="120" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></entry>
|
||||||
<entry id="2" isDir="false" title="title 2" album="album" artist="artist" duration="300" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></entry>
|
<entry id="2" isDir="false" title="title 2" album="album" artist="artist" duration="300" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></entry>
|
||||||
</share>
|
</share>
|
||||||
</shares>
|
</shares>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -11,10 +11,11 @@
|
||||||
"isDir": false,
|
"isDir": false,
|
||||||
"title": "title",
|
"title": "title",
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<similarSongs>
|
<similarSongs>
|
||||||
<song id="1" isDir="false" title="title" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></song>
|
<song id="1" isDir="false" title="title" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></song>
|
||||||
</similarSongs>
|
</similarSongs>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -11,10 +11,11 @@
|
||||||
"isDir": false,
|
"isDir": false,
|
||||||
"title": "title",
|
"title": "title",
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<similarSongs2>
|
<similarSongs2>
|
||||||
<song id="1" isDir="false" title="title" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></song>
|
<song id="1" isDir="false" title="title" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></song>
|
||||||
</similarSongs2>
|
</similarSongs2>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -11,10 +11,11 @@
|
||||||
"isDir": false,
|
"isDir": false,
|
||||||
"title": "title",
|
"title": "title",
|
||||||
"isVideo": false,
|
"isVideo": false,
|
||||||
"mediaType": "",
|
|
||||||
"musicBrainzId": "",
|
|
||||||
"bpm": 0,
|
"bpm": 0,
|
||||||
"comment": "",
|
"comment": "",
|
||||||
|
"sortName": "",
|
||||||
|
"mediaType": "",
|
||||||
|
"musicBrainzId": "",
|
||||||
"genres": []
|
"genres": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||||
<topSongs>
|
<topSongs>
|
||||||
<song id="1" isDir="false" title="title" isVideo="false" mediaType="" musicBrainzId="" bpm="0" comment=""></song>
|
<song id="1" isDir="false" title="title" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId=""></song>
|
||||||
</topSongs>
|
</topSongs>
|
||||||
</subsonic-response>
|
</subsonic-response>
|
||||||
|
|
|
@ -150,10 +150,11 @@ type Child struct {
|
||||||
*/
|
*/
|
||||||
// OpenSubsonic extensions
|
// OpenSubsonic extensions
|
||||||
Played *time.Time `xml:"played,attr,omitempty" json:"played,omitempty"`
|
Played *time.Time `xml:"played,attr,omitempty" json:"played,omitempty"`
|
||||||
MediaType MediaType `xml:"mediaType,attr" json:"mediaType"`
|
|
||||||
MusicBrainzId string `xml:"musicBrainzId,attr" json:"musicBrainzId"`
|
|
||||||
Bpm int32 `xml:"bpm,attr" json:"bpm"`
|
Bpm int32 `xml:"bpm,attr" json:"bpm"`
|
||||||
Comment string `xml:"comment,attr" json:"comment"`
|
Comment string `xml:"comment,attr" json:"comment"`
|
||||||
|
SortName string `xml:"sortName,attr" json:"sortName"`
|
||||||
|
MediaType MediaType `xml:"mediaType,attr" json:"mediaType"`
|
||||||
|
MusicBrainzId string `xml:"musicBrainzId,attr" json:"musicBrainzId"`
|
||||||
Genres ItemGenres `xml:"genres" json:"genres"`
|
Genres ItemGenres `xml:"genres" json:"genres"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -195,7 +196,10 @@ type ArtistID3 struct {
|
||||||
Starred *time.Time `xml:"starred,attr,omitempty" json:"starred,omitempty"`
|
Starred *time.Time `xml:"starred,attr,omitempty" json:"starred,omitempty"`
|
||||||
UserRating int32 `xml:"userRating,attr,omitempty" json:"userRating,omitempty"`
|
UserRating int32 `xml:"userRating,attr,omitempty" json:"userRating,omitempty"`
|
||||||
ArtistImageUrl string `xml:"artistImageUrl,attr,omitempty" json:"artistImageUrl,omitempty"`
|
ArtistImageUrl string `xml:"artistImageUrl,attr,omitempty" json:"artistImageUrl,omitempty"`
|
||||||
MusicBrainzId string `xml:"musicBrainzId,attr,omitempty" json:"musicBrainzId,omitempty"`
|
|
||||||
|
// OpenSubsonic extensions
|
||||||
|
MusicBrainzId string `xml:"musicBrainzId,attr,omitempty" json:"musicBrainzId,omitempty"`
|
||||||
|
SortName string `xml:"sortName,attr,omitempty" json:"sortName,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type AlbumID3 struct {
|
type AlbumID3 struct {
|
||||||
|
@ -217,6 +221,8 @@ type AlbumID3 struct {
|
||||||
UserRating int32 `xml:"userRating,attr" json:"userRating"`
|
UserRating int32 `xml:"userRating,attr" json:"userRating"`
|
||||||
Genres ItemGenres `xml:"genres" json:"genres"`
|
Genres ItemGenres `xml:"genres" json:"genres"`
|
||||||
MusicBrainzId string `xml:"musicBrainzId,attr" json:"musicBrainzId"`
|
MusicBrainzId string `xml:"musicBrainzId,attr" json:"musicBrainzId"`
|
||||||
|
IsCompilation bool `xml:"isCompilation,attr" json:"isCompilation"`
|
||||||
|
SortName string `xml:"sortName,attr" json:"sortName"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type ArtistWithAlbumsID3 struct {
|
type ArtistWithAlbumsID3 struct {
|
||||||
|
|
|
@ -171,8 +171,11 @@ var _ = Describe("Responses", func() {
|
||||||
|
|
||||||
Context("with data", func() {
|
Context("with data", func() {
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
album := AlbumID3{Id: "1", Name: "album", Artist: "artist", Genre: "rock",
|
album := AlbumID3{
|
||||||
Genres: []ItemGenre{{Name: "rock"}, {Name: "progressive"}}, MusicBrainzId: "1234"}
|
Id: "1", Name: "album", Artist: "artist", Genre: "rock",
|
||||||
|
Genres: []ItemGenre{{Name: "rock"}, {Name: "progressive"}},
|
||||||
|
MusicBrainzId: "1234", IsCompilation: true, SortName: "sorted album",
|
||||||
|
}
|
||||||
t := time.Date(2016, 03, 2, 20, 30, 0, 0, time.UTC)
|
t := time.Date(2016, 03, 2, 20, 30, 0, 0, time.UTC)
|
||||||
songs := []Child{{
|
songs := []Child{{
|
||||||
Id: "1", IsDir: true, Title: "title", Album: "album", Artist: "artist", Track: 1,
|
Id: "1", IsDir: true, Title: "title", Album: "album", Artist: "artist", Track: 1,
|
||||||
|
@ -180,6 +183,7 @@ var _ = Describe("Responses", func() {
|
||||||
Suffix: "flac", TranscodedContentType: "audio/mpeg", TranscodedSuffix: "mp3",
|
Suffix: "flac", TranscodedContentType: "audio/mpeg", TranscodedSuffix: "mp3",
|
||||||
Duration: 146, BitRate: 320, Starred: &t, Genres: []ItemGenre{{Name: "rock"}, {Name: "progressive"}},
|
Duration: 146, BitRate: 320, Starred: &t, Genres: []ItemGenre{{Name: "rock"}, {Name: "progressive"}},
|
||||||
Comment: "a comment", Bpm: 127, MediaType: MediaTypeSong, MusicBrainzId: "4321",
|
Comment: "a comment", Bpm: 127, MediaType: MediaTypeSong, MusicBrainzId: "4321",
|
||||||
|
SortName: "sorted song",
|
||||||
}}
|
}}
|
||||||
response.AlbumWithSongsID3.AlbumID3 = album
|
response.AlbumWithSongsID3.AlbumID3 = album
|
||||||
response.AlbumWithSongsID3.Song = songs
|
response.AlbumWithSongsID3.Song = songs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue