mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
fa86894550
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
Former-commit-id: 984c56e0b9a9169b10c6017fbd68ab4fbd3868d7 [formerly 27c43314222c723a220b9b1d2141e1509ed05627] [formerly 0a9f6c47bff2d653035c93765ea08ade73ec450c [formerly b7fdcc3ee9
]]
Former-commit-id: c27e7fa41f20f433a9a0a97ecc40ab78968b43dc [formerly 185db4a17969cd4fb76cc2b06bd58221c9c6c100]
Former-commit-id: 9b26d1b0642c61cd38f7cdf422f95b2bf9a9614d
53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
package http
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/rules"
|
|
"github.com/filebrowser/filebrowser/v2/settings"
|
|
)
|
|
|
|
type settingsData struct {
|
|
Signup bool `json:"signup"`
|
|
CreateUserDir bool `json:"createUserDir"`
|
|
Defaults settings.UserDefaults `json:"defaults"`
|
|
Rules []rules.Rule `json:"rules"`
|
|
Branding settings.Branding `json:"branding"`
|
|
Shell []string `json:"shell"`
|
|
Commands map[string][]string `json:"commands"`
|
|
}
|
|
|
|
var settingsGetHandler = withAdmin(func(w http.ResponseWriter, r *http.Request, d *data) (int, error) {
|
|
data := &settingsData{
|
|
Signup: d.settings.Signup,
|
|
CreateUserDir: d.settings.CreateUserDir,
|
|
Defaults: d.settings.Defaults,
|
|
Rules: d.settings.Rules,
|
|
Branding: d.settings.Branding,
|
|
Shell: d.settings.Shell,
|
|
Commands: d.settings.Commands,
|
|
}
|
|
|
|
return renderJSON(w, r, data)
|
|
})
|
|
|
|
var settingsPutHandler = withAdmin(func(w http.ResponseWriter, r *http.Request, d *data) (int, error) {
|
|
req := &settingsData{}
|
|
err := json.NewDecoder(r.Body).Decode(req)
|
|
if err != nil {
|
|
return http.StatusBadRequest, err
|
|
}
|
|
|
|
d.settings.Signup = req.Signup
|
|
d.settings.CreateUserDir = req.CreateUserDir
|
|
d.settings.Defaults = req.Defaults
|
|
d.settings.Rules = req.Rules
|
|
d.settings.Branding = req.Branding
|
|
d.settings.Shell = req.Shell
|
|
d.settings.Commands = req.Commands
|
|
|
|
err = d.store.Settings.Save(d.settings)
|
|
return errToStatus(err), err
|
|
})
|