Files
filestash/server/ctrl/config.go
Mickael Kerjean 8ca7a0e3f9 maintain (path): absolute path
getting things ready to have config coming as a plugin to handle
various distributions
2023-03-02 20:15:56 +11:00

29 lines
691 B
Go

package ctrl
import (
. "github.com/mickael-kerjean/filestash/server/common"
"io/ioutil"
"net/http"
)
var configpath = GetAbsolutePath(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)
}