mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Replace gg.If with cmp.Or
This commit is contained in:
parent
11bef060a3
commit
b4ef1b1e38
5 changed files with 6 additions and 47 deletions
|
@ -12,11 +12,9 @@ import (
|
|||
"time"
|
||||
|
||||
"github.com/go-chi/chi/v5"
|
||||
"github.com/go-chi/chi/v5/middleware"
|
||||
"github.com/go-chi/cors"
|
||||
"github.com/navidrome/navidrome/conf"
|
||||
. "github.com/navidrome/navidrome/utils/gg"
|
||||
|
||||
"github.com/go-chi/chi/v5/middleware"
|
||||
"github.com/navidrome/navidrome/consts"
|
||||
"github.com/navidrome/navidrome/log"
|
||||
"github.com/navidrome/navidrome/model/request"
|
||||
|
@ -139,7 +137,7 @@ func clientUniqueIDMiddleware(next http.Handler) http.Handler {
|
|||
HttpOnly: true,
|
||||
Secure: true,
|
||||
SameSite: http.SameSiteStrictMode,
|
||||
Path: If(conf.Server.BasePath, "/"),
|
||||
Path: cmp.Or(conf.Server.BasePath, "/"),
|
||||
}
|
||||
http.SetCookie(w, c)
|
||||
} else {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"cmp"
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
|
@ -23,7 +24,6 @@ import (
|
|||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/navidrome/navidrome/server/events"
|
||||
"github.com/navidrome/navidrome/ui"
|
||||
. "github.com/navidrome/navidrome/utils/gg"
|
||||
)
|
||||
|
||||
type Server struct {
|
||||
|
@ -237,7 +237,7 @@ func AbsoluteURL(r *http.Request, u string, params url.Values) string {
|
|||
if strings.HasPrefix(u, "/") {
|
||||
buildUrl.Path = path.Join(conf.Server.BasePath, buildUrl.Path)
|
||||
if conf.Server.BaseHost != "" {
|
||||
buildUrl.Scheme = If(conf.Server.BaseScheme, "http")
|
||||
buildUrl.Scheme = cmp.Or(conf.Server.BaseScheme, "http")
|
||||
buildUrl.Host = conf.Server.BaseHost
|
||||
} else {
|
||||
buildUrl.Scheme = r.URL.Scheme
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package subsonic
|
||||
|
||||
import (
|
||||
"cmp"
|
||||
"crypto/md5"
|
||||
"encoding/hex"
|
||||
"errors"
|
||||
|
@ -20,7 +21,6 @@ import (
|
|||
"github.com/navidrome/navidrome/model/request"
|
||||
"github.com/navidrome/navidrome/server"
|
||||
"github.com/navidrome/navidrome/server/subsonic/responses"
|
||||
. "github.com/navidrome/navidrome/utils/gg"
|
||||
"github.com/navidrome/navidrome/utils/req"
|
||||
)
|
||||
|
||||
|
@ -183,7 +183,7 @@ func getPlayer(players core.Players) func(next http.Handler) http.Handler {
|
|||
MaxAge: consts.CookieExpiry,
|
||||
HttpOnly: true,
|
||||
SameSite: http.SameSiteStrictMode,
|
||||
Path: If(conf.Server.BasePath, "/"),
|
||||
Path: cmp.Or(conf.Server.BasePath, "/"),
|
||||
}
|
||||
http.SetCookie(w, cookie)
|
||||
}
|
||||
|
|
|
@ -1,18 +1,6 @@
|
|||
// Package gg implements simple "extensions" to Go language. Based on https://github.com/icza/gog
|
||||
package gg
|
||||
|
||||
// If returns v if it is a non-zero value, orElse otherwise.
|
||||
//
|
||||
// This is similar to elvis operator (?:) in Groovy and other languages.
|
||||
// Note: Different from the real elvis operator, the orElse expression will always get evaluated.
|
||||
func If[T comparable](v T, orElse T) T {
|
||||
var zero T
|
||||
if v != zero {
|
||||
return v
|
||||
}
|
||||
return orElse
|
||||
}
|
||||
|
||||
// P returns a pointer to the input value
|
||||
func P[T any](v T) *T {
|
||||
return &v
|
||||
|
|
|
@ -16,33 +16,6 @@ func TestGG(t *testing.T) {
|
|||
}
|
||||
|
||||
var _ = Describe("GG", func() {
|
||||
Describe("If", func() {
|
||||
DescribeTable("string",
|
||||
func(v, orElse, expected string) {
|
||||
Expect(gg.If(v, orElse)).To(Equal(expected))
|
||||
},
|
||||
Entry("zero value", "", "default", "default"),
|
||||
Entry("non-zero value", "anything", "default", "anything"),
|
||||
)
|
||||
DescribeTable("numeric",
|
||||
func(v, orElse, expected int) {
|
||||
Expect(gg.If(v, orElse)).To(Equal(expected))
|
||||
},
|
||||
Entry("zero value", 0, 2, 2),
|
||||
Entry("non-zero value", -1, 2, -1),
|
||||
)
|
||||
type testStruct struct {
|
||||
field1 int
|
||||
}
|
||||
DescribeTable("struct",
|
||||
func(v, orElse, expected testStruct) {
|
||||
Expect(gg.If(v, orElse)).To(Equal(expected))
|
||||
},
|
||||
Entry("zero value", testStruct{}, testStruct{123}, testStruct{123}),
|
||||
Entry("non-zero value", testStruct{456}, testStruct{123}, testStruct{456}),
|
||||
)
|
||||
})
|
||||
|
||||
Describe("P", func() {
|
||||
It("returns a pointer to the input value", func() {
|
||||
v := 123
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue