mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Renamed parameter validation method and removed "side effect"
This commit is contained in:
parent
c990073fc7
commit
adfec414a1
4 changed files with 4 additions and 5 deletions
|
@ -13,12 +13,11 @@ func (c *BaseAPIController) NewEmpty() responses.Subsonic {
|
|||
return responses.Subsonic{Status: "ok", Version: beego.AppConfig.String("apiVersion")}
|
||||
}
|
||||
|
||||
func (c *BaseAPIController) ValidateParameters(param string, msg string) string {
|
||||
func (c *BaseAPIController) GetParameter(param string, msg string) string {
|
||||
p := c.Input().Get(param)
|
||||
if p == "" {
|
||||
c.SendError(responses.ERROR_MISSING_PARAMETER, msg)
|
||||
}
|
||||
c.Data[param] = p
|
||||
return p
|
||||
}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ func (c *GetCoverArtController) Prepare() {
|
|||
}
|
||||
|
||||
func (c *GetCoverArtController) Get() {
|
||||
id := c.ValidateParameters("id", "id parameter required")
|
||||
id := c.GetParameter("id", "id parameter required")
|
||||
|
||||
mf, err := c.repo.Get(id)
|
||||
if err != nil {
|
||||
|
|
|
@ -23,7 +23,7 @@ func (c *GetMusicDirectoryController) Prepare() {
|
|||
}
|
||||
|
||||
func (c *GetMusicDirectoryController) Get() {
|
||||
id := c.ValidateParameters("id", "id parameter required")
|
||||
id := c.GetParameter("id", "id parameter required")
|
||||
|
||||
response := c.NewEmpty()
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ func (c *StreamController) Prepare() {
|
|||
|
||||
// For realtime transcoding, see : http://stackoverflow.com/questions/19292113/not-buffered-http-responsewritter-in-golang
|
||||
func (c *StreamController) Get() {
|
||||
id := c.ValidateParameters("id", "id parameter required")
|
||||
id := c.GetParameter("id", "id parameter required")
|
||||
|
||||
mf, err := c.repo.Get(id)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue