mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
77 lines
1.8 KiB
Go
77 lines
1.8 KiB
Go
package api
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"encoding/hex"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/astaxie/beego"
|
|
"github.com/deluan/gosonic/api/responses"
|
|
"github.com/deluan/gosonic/conf"
|
|
)
|
|
|
|
type ControllerInterface interface {
|
|
GetString(key string, def ...string) string
|
|
CustomAbort(status int, body string)
|
|
SendError(errorCode int, message ...interface{})
|
|
}
|
|
|
|
func Validate(controller BaseAPIController) {
|
|
if !conf.GoSonic.DisableValidation {
|
|
checkParameters(controller)
|
|
authenticate(controller)
|
|
// TODO Validate version
|
|
}
|
|
}
|
|
|
|
func checkParameters(c BaseAPIController) {
|
|
requiredParameters := []string{"u", "v", "c"}
|
|
|
|
for _, p := range requiredParameters {
|
|
if c.GetString(p) == "" {
|
|
logWarn(c, fmt.Sprintf(`Missing required parameter "%s"`, p))
|
|
abortRequest(c, responses.ErrorMissingParameter)
|
|
}
|
|
}
|
|
|
|
if c.GetString("p") == "" && (c.GetString("s") == "" || c.GetString("t") == "") {
|
|
logWarn(c, "Missing authentication information")
|
|
}
|
|
}
|
|
|
|
func authenticate(c BaseAPIController) {
|
|
password := conf.GoSonic.Password
|
|
user := c.GetString("u")
|
|
pass := c.GetString("p")
|
|
salt := c.GetString("s")
|
|
token := c.GetString("t")
|
|
valid := false
|
|
|
|
switch {
|
|
case pass != "":
|
|
if strings.HasPrefix(pass, "enc:") {
|
|
e := strings.TrimPrefix(pass, "enc:")
|
|
if dec, err := hex.DecodeString(e); err == nil {
|
|
pass = string(dec)
|
|
}
|
|
}
|
|
valid = (pass == password)
|
|
case token != "":
|
|
t := fmt.Sprintf("%x", md5.Sum([]byte(password+salt)))
|
|
valid = (t == token)
|
|
}
|
|
|
|
if user != conf.GoSonic.User || !valid {
|
|
logWarn(c, fmt.Sprintf(`Invalid login for user "%s"`, user))
|
|
abortRequest(c, responses.ErrorAuthenticationFail)
|
|
}
|
|
}
|
|
|
|
func abortRequest(c BaseAPIController, code int) {
|
|
c.SendError(code)
|
|
}
|
|
|
|
func logWarn(c BaseAPIController, msg string) {
|
|
beego.Warn(fmt.Sprintf("%s?%s: %s", c.Ctx.Request.URL.Path, c.Ctx.Request.URL.RawQuery, msg))
|
|
}
|