mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix(subsonic): make Share's lastVisited optional
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
ba2623e3f1
commit
beff1afad7
7 changed files with 50 additions and 9 deletions
|
@ -49,9 +49,9 @@
|
|||
"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",
|
||||
"created": "2016-03-02T20:30:00Z",
|
||||
"expires": "2016-03-02T20:30:00Z",
|
||||
"lastVisited": "2016-03-02T20:30:00Z",
|
||||
"visitCount": 2
|
||||
}
|
||||
]
|
||||
|
|
|
@ -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">
|
||||
<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="2016-03-02T20:30:00Z" expires="2016-03-02T20:30:00Z" lastVisited="2016-03-02T20:30:00Z" visitCount="2">
|
||||
<entry id="1" isDir="false" title="title" album="album" artist="artist" duration="120" isVideo="false" bpm="0" comment="" sortName="" mediaType="" musicBrainzId="" channelCount="0" samplingRate="0">
|
||||
<replayGain></replayGain>
|
||||
</entry>
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"status": "ok",
|
||||
"version": "1.8.0",
|
||||
"type": "navidrome",
|
||||
"serverVersion": "v0.0.0",
|
||||
"openSubsonic": true,
|
||||
"shares": {
|
||||
"share": [
|
||||
{
|
||||
"id": "ABC123",
|
||||
"url": "http://localhost/s/ABC123",
|
||||
"username": "johndoe",
|
||||
"created": "2016-03-02T20:30:00Z",
|
||||
"visitCount": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
<subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.8.0" type="navidrome" serverVersion="v0.0.0" openSubsonic="true">
|
||||
<shares>
|
||||
<share id="ABC123" url="http://localhost/s/ABC123" username="johndoe" created="2016-03-02T20:30:00Z" visitCount="1"></share>
|
||||
</shares>
|
||||
</subsonic-response>
|
|
@ -423,7 +423,7 @@ type Share struct {
|
|||
Username string `xml:"username,attr" json:"username"`
|
||||
Created time.Time `xml:"created,attr" json:"created"`
|
||||
Expires *time.Time `xml:"expires,omitempty,attr" json:"expires,omitempty"`
|
||||
LastVisited time.Time `xml:"lastVisited,omitempty,attr" json:"lastVisited"`
|
||||
LastVisited *time.Time `xml:"lastVisited,omitempty,attr" json:"lastVisited,omitempty"`
|
||||
VisitCount int32 `xml:"visitCount,attr" json:"visitCount"`
|
||||
}
|
||||
|
||||
|
|
|
@ -671,9 +671,28 @@ var _ = Describe("Responses", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Context("with only required fields", func() {
|
||||
BeforeEach(func() {
|
||||
t := time.Date(2016, 03, 2, 20, 30, 0, 0, time.UTC)
|
||||
response.Shares.Share = []Share{{
|
||||
ID: "ABC123",
|
||||
Url: "http://localhost/s/ABC123",
|
||||
Username: "johndoe",
|
||||
Created: t,
|
||||
VisitCount: 1,
|
||||
}}
|
||||
})
|
||||
It("should match .XML", func() {
|
||||
Expect(xml.MarshalIndent(response, "", " ")).To(MatchSnapshot())
|
||||
})
|
||||
It("should match .JSON", func() {
|
||||
Expect(json.MarshalIndent(response, "", " ")).To(MatchSnapshot())
|
||||
})
|
||||
})
|
||||
|
||||
Context("with data", func() {
|
||||
BeforeEach(func() {
|
||||
t := time.Time{}
|
||||
t := time.Date(2016, 03, 2, 20, 30, 0, 0, time.UTC)
|
||||
share := Share{
|
||||
ID: "ABC123",
|
||||
Url: "http://localhost/p/ABC123",
|
||||
|
@ -681,7 +700,7 @@ var _ = Describe("Responses", func() {
|
|||
Username: "deluan",
|
||||
Created: t,
|
||||
Expires: &t,
|
||||
LastVisited: t,
|
||||
LastVisited: &t,
|
||||
VisitCount: 2,
|
||||
}
|
||||
share.Entry = make([]Child, 2)
|
||||
|
|
|
@ -9,7 +9,6 @@ import (
|
|||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/navidrome/navidrome/server/public"
|
||||
"github.com/navidrome/navidrome/server/subsonic/responses"
|
||||
. "github.com/navidrome/navidrome/utils/gg"
|
||||
"github.com/navidrome/navidrome/utils/req"
|
||||
"github.com/navidrome/navidrome/utils/slice"
|
||||
)
|
||||
|
@ -37,7 +36,7 @@ func (api *Router) buildShare(r *http.Request, share model.Share) responses.Shar
|
|||
Username: share.Username,
|
||||
Created: share.CreatedAt,
|
||||
Expires: share.ExpiresAt,
|
||||
LastVisited: V(share.LastVisitedAt),
|
||||
LastVisited: share.LastVisitedAt,
|
||||
VisitCount: int32(share.VisitCount),
|
||||
}
|
||||
if resp.Description == "" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue