Files
filestash/server/ctrl/config.go
2022-09-01 07:37:59 +10:00

30 lines
722 B
Go

package ctrl
import (
. "github.com/mickael-kerjean/filestash/server/common"
"io/ioutil"
"net/http"
"path/filepath"
)
var configpath = filepath.Join(GetCurrentDir(), CONFIG_PATH, "config.json")
func PrivateConfigHandler(ctx *App, res http.ResponseWriter, req *http.Request) {
SendSuccessResult(res, Config)
}
func PrivateConfigUpdateHandler(ctx *App, res http.ResponseWriter, req *http.Request) {
b, _ := ioutil.ReadAll(req.Body)
if err := SaveConfig(b); err != nil {
SendErrorResult(res, err)
return
}
Config.Load()
SendSuccessResult(res, nil)
}
func PublicConfigHandler(ctx *App, res http.ResponseWriter, req *http.Request) {
cfg := Config.Export()
SendSuccessResultWithEtagAndGzip(res, req, cfg)
}