fix: clean server struct once it gets to the handler

License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
This commit is contained in:
Henrique Dias 2019-01-09 08:13:24 +00:00
parent 5a9f0a0d81
commit f1c86054b3
4 changed files with 16 additions and 9 deletions

View File

@ -14,8 +14,9 @@ type modifyRequest struct {
}
func NewHandler(storage *storage.Storage, server *settings.Server) (http.Handler, error) {
r := mux.NewRouter()
server.Clean()
r := mux.NewRouter()
index, static := getStaticHandlers(storage, server)
monkey := func(fn handleFunc, prefix string) http.Handler {

View File

@ -1,6 +1,10 @@
package settings
import "github.com/filebrowser/filebrowser/v2/rules"
import (
"strings"
"github.com/filebrowser/filebrowser/v2/rules"
)
// AuthMethod describes an authentication method.
type AuthMethod string
@ -17,6 +21,11 @@ type Settings struct {
Rules []rules.Rule `json:"rules"`
}
// GetRules implements rules.Provider.
func (s *Settings) GetRules() []rules.Rule {
return s.Rules
}
// Server specific settings.
type Server struct {
Root string `json:"root"`
@ -28,7 +37,7 @@ type Server struct {
Log string `json:"log"`
}
// GetRules implements rules.Provider.
func (s *Settings) GetRules() []rules.Rule {
return s.Rules
// Clean cleans any variables that might need cleaning.
func (s *Server) Clean() {
s.BaseURL = strings.TrimSuffix(s.BaseURL, "/")
}

View File

@ -1,8 +1,6 @@
package settings
import (
"strings"
"github.com/filebrowser/filebrowser/v2/errors"
"github.com/filebrowser/filebrowser/v2/rules"
"github.com/filebrowser/filebrowser/v2/users"
@ -94,6 +92,6 @@ func (s *Storage) GetServer() (*Server, error) {
// SaveServer wraps StorageBackend.SaveServer and adds some verification.
func (s *Storage) SaveServer(ser *Server) error {
ser.BaseURL = strings.TrimSuffix(ser.BaseURL, "/")
ser.Clean()
return s.back.SaveServer(ser)
}

View File

@ -99,7 +99,6 @@ func readConf(path string) (*oldConf, error) {
}
func importConf(db *storm.DB, path string, sto *storage.Storage) error {
cfg, err := readConf(path)
if err != nil {
return err