mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-27 19:53:41 +08:00
29 lines
680 B
Go
29 lines
680 B
Go
package ctrl
|
|
|
|
import (
|
|
. "github.com/mickael-kerjean/filestash/server/common"
|
|
"io"
|
|
"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, _ := io.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)
|
|
}
|