mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Don't set a playerId cookie it cannot register the player
This commit is contained in:
parent
93646b964e
commit
0ba5840a65
3 changed files with 25 additions and 9 deletions
|
@ -92,7 +92,7 @@ var _ = Describe("Logger", func() {
|
||||||
Error("A crash happened")
|
Error("A crash happened")
|
||||||
Expect(hook.LastEntry().Message).To(Equal("A crash happened"))
|
Expect(hook.LastEntry().Message).To(Equal("A crash happened"))
|
||||||
// NOTE: This assertions breaks if the line number changes
|
// NOTE: This assertions breaks if the line number changes
|
||||||
Expect(hook.LastEntry().Data[" source"]).To(ContainSubstring("log_test.go:92"))
|
Expect(hook.LastEntry().Data[" source"]).To(ContainSubstring("/log/log_test.go:92"))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -112,16 +112,17 @@ func getPlayer(players engine.Players) func(next http.Handler) http.Handler {
|
||||||
ctx = context.WithValue(ctx, "transcoding", *trc)
|
ctx = context.WithValue(ctx, "transcoding", *trc)
|
||||||
}
|
}
|
||||||
r = r.WithContext(ctx)
|
r = r.WithContext(ctx)
|
||||||
|
|
||||||
|
cookie := &http.Cookie{
|
||||||
|
Name: playerIDCookieName(userName),
|
||||||
|
Value: player.ID,
|
||||||
|
MaxAge: cookieExpiry,
|
||||||
|
HttpOnly: true,
|
||||||
|
Path: "/",
|
||||||
|
}
|
||||||
|
http.SetCookie(w, cookie)
|
||||||
}
|
}
|
||||||
|
|
||||||
cookie := &http.Cookie{
|
|
||||||
Name: playerIDCookieName(userName),
|
|
||||||
Value: player.ID,
|
|
||||||
MaxAge: cookieExpiry,
|
|
||||||
HttpOnly: true,
|
|
||||||
Path: "/",
|
|
||||||
}
|
|
||||||
http.SetCookie(w, cookie)
|
|
||||||
next.ServeHTTP(w, r)
|
next.ServeHTTP(w, r)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ package subsonic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -156,6 +157,17 @@ var _ = Describe("Middlewares", func() {
|
||||||
Expect(cookieStr).To(ContainSubstring(playerIDCookieName("someone")))
|
Expect(cookieStr).To(ContainSubstring(playerIDCookieName("someone")))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("does not add the cookie if there was an error", func() {
|
||||||
|
ctx := context.WithValue(r.Context(), "client", "error")
|
||||||
|
r = r.WithContext(ctx)
|
||||||
|
|
||||||
|
gp := getPlayer(mockedPlayers)(next)
|
||||||
|
gp.ServeHTTP(w, r)
|
||||||
|
|
||||||
|
cookieStr := w.Header().Get("Set-Cookie")
|
||||||
|
Expect(cookieStr).To(BeEmpty())
|
||||||
|
})
|
||||||
|
|
||||||
Context("PlayerId specified in Cookies", func() {
|
Context("PlayerId specified in Cookies", func() {
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
cookie := &http.Cookie{
|
cookie := &http.Cookie{
|
||||||
|
@ -242,5 +254,8 @@ func (mp *mockPlayers) Get(ctx context.Context, playerId string) (*model.Player,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mp *mockPlayers) Register(ctx context.Context, id, client, typ, ip string) (*model.Player, *model.Transcoding, error) {
|
func (mp *mockPlayers) Register(ctx context.Context, id, client, typ, ip string) (*model.Player, *model.Transcoding, error) {
|
||||||
|
if client == "error" {
|
||||||
|
return nil, nil, errors.New(client)
|
||||||
|
}
|
||||||
return &model.Player{ID: id}, mp.transcoding, nil
|
return &model.Player{ID: id}, mp.transcoding, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue