configui/api.go

122 lines
2.4 KiB
Go
Raw Normal View History

2021-10-18 10:59:09 +00:00
package main
import (
"encoding/json"
"io/ioutil"
"net/http"
"kumoly.io/tools/configui/configui"
)
func ListFiles(w http.ResponseWriter, r *http.Request) {
data, err := json.Marshal(files)
if err != nil {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 500, err.Error())
2021-10-18 10:59:09 +00:00
return
}
w.Write(data)
}
func GetFile(w http.ResponseWriter, r *http.Request) {
name := r.URL.Query().Get("name")
file, ok := files[name]
if name == "" || !ok {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 404, "file not found")
2021-10-18 10:59:09 +00:00
return
}
data, err := file.Read()
if err != nil {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 500, err.Error())
2021-10-18 10:59:09 +00:00
return
}
response, err := json.Marshal(map[string]string{
"path": file.Path,
"name": file.Alias,
"action": file.Action,
"data": string(data),
})
if err != nil {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 500, err.Error())
2021-10-18 10:59:09 +00:00
return
}
w.Header().Set("Content-Type", "application/json")
w.Write(response)
}
func PostFile(w http.ResponseWriter, r *http.Request) {
data, err := ioutil.ReadAll(r.Body)
r.Body.Close()
if err != nil {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 500, err.Error())
2021-10-18 10:59:09 +00:00
return
}
f := configui.File{}
if err := json.Unmarshal(data, &f); err != nil {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 500, err.Error())
2021-10-18 10:59:09 +00:00
return
}
file, ok := files[f.Alias]
if !ok {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 404, "file not found")
2021-10-18 10:59:09 +00:00
return
}
if err := file.Write([]byte(f.Data)); err != nil {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 500, err.Error())
2021-10-18 10:59:09 +00:00
return
}
w.Write([]byte("ok"))
}
func Apply(w http.ResponseWriter, r *http.Request) {
name := r.URL.Query().Get("name")
file, ok := files[name]
if name == "" || !ok {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 404, "file not found")
2021-10-18 10:59:09 +00:00
return
}
result, err := file.Do()
if err != nil {
2021-10-18 15:53:49 +00:00
HttpWriter(w, 500, err.Error())
2021-10-18 10:59:09 +00:00
return
}
w.Write([]byte(result))
}
func Download(w http.ResponseWriter, r *http.Request) {
fs := []string{}
for _, v := range files {
fs = append(fs, v.Path)
}
w.Header().Set("Content-Disposition", `attachment; filename="export.tar.gz"`)
bundle(w, fs, false)
}
2021-10-18 15:53:49 +00:00
func LoadConfig(w http.ResponseWriter, r *http.Request) {
data, err := ioutil.ReadAll(r.Body)
r.Body.Close()
if err != nil {
HttpWriter(w, 500, err.Error())
return
}
ftmp, err := configui.ReadConfig(string(data))
if err != nil {
HttpWriter(w, 500, err.Error())
return
}
files = configui.GetFileMap(ftmp)
w.Write([]byte("ok"))
}
func GetConfig(w http.ResponseWriter, r *http.Request) {
config := []configui.File{}
for _, f := range files {
config = append(config, *f)
}
data, err := json.Marshal(config)
if err != nil {
HttpWriter(w, 500, err.Error())
return
}
w.Write(data)
}