mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
42 lines
1 KiB
Go
42 lines
1 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"github.com/deluan/gosonic/api/responses"
|
|
)
|
|
|
|
type ControllerInterface interface {
|
|
GetString(key string, def ...string) string
|
|
CustomAbort(status int, body string)
|
|
SendError(errorCode int, message ...interface{})
|
|
}
|
|
|
|
func Validate(controller ControllerInterface) {
|
|
if beego.AppConfig.String("disableValidation") != "true" {
|
|
checkParameters(controller)
|
|
authenticate(controller)
|
|
// TODO Validate version
|
|
}
|
|
}
|
|
|
|
func checkParameters(c ControllerInterface) {
|
|
requiredParameters := []string{"u", "p", "v", "c"}
|
|
|
|
for _, p := range requiredParameters {
|
|
if c.GetString(p) == "" {
|
|
abortRequest(c, responses.ERROR_MISSING_PARAMETER)
|
|
}
|
|
}
|
|
}
|
|
|
|
func authenticate(c ControllerInterface) {
|
|
user := c.GetString("u")
|
|
pass := c.GetString("p") // TODO Handle hex-encoded password
|
|
if user != beego.AppConfig.String("user") || pass != beego.AppConfig.String("password") {
|
|
abortRequest(c, responses.ERROR_AUTHENTICATION_FAIL)
|
|
}
|
|
}
|
|
|
|
func abortRequest(c ControllerInterface, code int) {
|
|
c.SendError(code)
|
|
}
|