chore
parent
4b1ad5b791
commit
b0d76dff3e
19
configui.go
19
configui.go
|
@ -7,6 +7,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"html/template"
|
"html/template"
|
||||||
"os"
|
"os"
|
||||||
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -16,8 +17,9 @@ import (
|
||||||
"kumoly.io/tools/configui/public"
|
"kumoly.io/tools/configui/public"
|
||||||
)
|
)
|
||||||
|
|
||||||
var UNIX_SHELL = "/usr/bin/sh"
|
const UNIX_SHELL = "/usr/bin/sh"
|
||||||
var WIN_SHELL = "C:\\Windows\\System32\\cmd"
|
const WIN_SHELL = "C:\\Windows\\System32\\cmd"
|
||||||
|
const DARWIN_SHELL = "/bin/bash"
|
||||||
|
|
||||||
const version = "v0.1.12"
|
const version = "v0.1.12"
|
||||||
|
|
||||||
|
@ -36,6 +38,8 @@ var Ext2Mode map[string]string = map[string]string{
|
||||||
type Action struct {
|
type Action struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Cmd string `json:"cmd"`
|
Cmd string `json:"cmd"`
|
||||||
|
Dir string `json:"dir"`
|
||||||
|
Env []string `json"env,omitempty"`
|
||||||
run chan struct{} `json:"-"`
|
run chan struct{} `json:"-"`
|
||||||
pid int `json:"-"`
|
pid int `json:"-"`
|
||||||
}
|
}
|
||||||
|
@ -52,6 +56,7 @@ type ConfigUI struct {
|
||||||
Prod bool `json:"production"`
|
Prod bool `json:"production"`
|
||||||
BaseUrl string `json:"base_url"`
|
BaseUrl string `json:"base_url"`
|
||||||
ConfigPath string `json:"config_path"`
|
ConfigPath string `json:"config_path"`
|
||||||
|
SHELL string `json:"shell"`
|
||||||
|
|
||||||
NoReconfig bool `json:"no_reconfig"`
|
NoReconfig bool `json:"no_reconfig"`
|
||||||
AllowIP string `json:"allow_ip"`
|
AllowIP string `json:"allow_ip"`
|
||||||
|
@ -92,8 +97,18 @@ func New() *ConfigUI {
|
||||||
return strings.ReplaceAll(name, " ", "-")
|
return strings.ReplaceAll(name, " ", "-")
|
||||||
},
|
},
|
||||||
}).ParseFS(tmplFS, "templates/*.tmpl", "templates/**/*.tmpl"))
|
}).ParseFS(tmplFS, "templates/*.tmpl", "templates/**/*.tmpl"))
|
||||||
|
sh := ""
|
||||||
|
switch runtime.GOOS {
|
||||||
|
case "darwin":
|
||||||
|
sh = DARWIN_SHELL
|
||||||
|
case "windows":
|
||||||
|
sh = WIN_SHELL
|
||||||
|
default:
|
||||||
|
sh = UNIX_SHELL
|
||||||
|
}
|
||||||
return &ConfigUI{
|
return &ConfigUI{
|
||||||
fileIndex: map[string]int{},
|
fileIndex: map[string]int{},
|
||||||
|
SHELL: sh,
|
||||||
Prod: true,
|
Prod: true,
|
||||||
AppName: "ConfigUI",
|
AppName: "ConfigUI",
|
||||||
BaseUrl: "/",
|
BaseUrl: "/",
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
package configui
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"kumoly.io/lib/ksrv"
|
||||||
|
)
|
||||||
|
|
||||||
|
var ErrorServerReloading = ksrv.Error{
|
||||||
|
Code: http.StatusServiceUnavailable,
|
||||||
|
ID: "ErrorServerReloading",
|
||||||
|
Message: "server is reloading",
|
||||||
|
}
|
7
file.go
7
file.go
|
@ -58,7 +58,7 @@ func (f *File) Write(data []byte) error {
|
||||||
return os.WriteFile(f.Path, data, info.Mode())
|
return os.WriteFile(f.Path, data, info.Mode())
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *File) Do(CmdTimeout time.Duration) (string, error) {
|
func (f *File) Do(CmdTimeout time.Duration, report chan int) (string, error) {
|
||||||
if f.Cmd == "" {
|
if f.Cmd == "" {
|
||||||
return "", nil
|
return "", nil
|
||||||
}
|
}
|
||||||
|
@ -80,9 +80,9 @@ func (f *File) Do(CmdTimeout time.Duration) (string, error) {
|
||||||
// prepare cmd
|
// prepare cmd
|
||||||
cmd := &exec.Cmd{}
|
cmd := &exec.Cmd{}
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
cmd = exec.Command(WIN_SHELL, "/c", f.Cmd)
|
cmd = exec.Command(f.owner.SHELL, "/c", f.Cmd)
|
||||||
} else {
|
} else {
|
||||||
cmd = exec.Command(UNIX_SHELL, "-c", f.Cmd)
|
cmd = exec.Command(f.owner.SHELL, "-c", f.Cmd)
|
||||||
}
|
}
|
||||||
f.owner.log.Info("DO: ", f.Cmd)
|
f.owner.log.Info("DO: ", f.Cmd)
|
||||||
done := make(chan string, 1)
|
done := make(chan string, 1)
|
||||||
|
@ -96,6 +96,7 @@ func (f *File) Do(CmdTimeout time.Duration) (string, error) {
|
||||||
}
|
}
|
||||||
go func() {
|
go func() {
|
||||||
f.pid = cmd.Process.Pid
|
f.pid = cmd.Process.Pid
|
||||||
|
report <- cmd.Process.Pid
|
||||||
cmd.Wait()
|
cmd.Wait()
|
||||||
done <- b.String()
|
done <- b.String()
|
||||||
}()
|
}()
|
||||||
|
|
3
go.mod
3
go.mod
|
@ -4,10 +4,11 @@ go 1.17
|
||||||
|
|
||||||
require (
|
require (
|
||||||
kumoly.io/lib/klog v0.0.8
|
kumoly.io/lib/klog v0.0.8
|
||||||
kumoly.io/lib/ksrv v0.0.1
|
kumoly.io/lib/ksrv v0.0.2-0.20211112060911-0d61b343a298
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/mattn/go-isatty v0.0.14 // indirect
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
||||||
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b // indirect
|
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b // indirect
|
||||||
|
kumoly.io/lib/stat v0.0.1 // indirect
|
||||||
)
|
)
|
||||||
|
|
4
go.sum
4
go.sum
|
@ -8,3 +8,7 @@ kumoly.io/lib/klog v0.0.8 h1:6hTfDlZh7KGnPrd2tUrauCKRImSnyyN9DHXpey3Czn8=
|
||||||
kumoly.io/lib/klog v0.0.8/go.mod h1:Snm+c1xRrh/RbXsxQf7UGYbAJGPcIa6bEEN+CmzJh7M=
|
kumoly.io/lib/klog v0.0.8/go.mod h1:Snm+c1xRrh/RbXsxQf7UGYbAJGPcIa6bEEN+CmzJh7M=
|
||||||
kumoly.io/lib/ksrv v0.0.1 h1:JfWwJ9GeiTtDfGoeG7YxJwsckralbhsLKEPLQb20Uzo=
|
kumoly.io/lib/ksrv v0.0.1 h1:JfWwJ9GeiTtDfGoeG7YxJwsckralbhsLKEPLQb20Uzo=
|
||||||
kumoly.io/lib/ksrv v0.0.1/go.mod h1:ykHXeAPjNvA5jEZo5rp32edzkugLf0e+2pspct3FOFQ=
|
kumoly.io/lib/ksrv v0.0.1/go.mod h1:ykHXeAPjNvA5jEZo5rp32edzkugLf0e+2pspct3FOFQ=
|
||||||
|
kumoly.io/lib/ksrv v0.0.2-0.20211112060911-0d61b343a298 h1:0raqoIXmNpD6s1SrJbieAyIIkDyhe+aqfaXvx8wenrI=
|
||||||
|
kumoly.io/lib/ksrv v0.0.2-0.20211112060911-0d61b343a298/go.mod h1:pwd+NspxnoxPJAETRY2V4i2qZc+orKLxvWzGUBiqBW8=
|
||||||
|
kumoly.io/lib/stat v0.0.1 h1:Ck596El7Ixk7GZyzQq/86F1YCl7iYffHmzEdFx1sSRM=
|
||||||
|
kumoly.io/lib/stat v0.0.1/go.mod h1:zqMV9q4TC94VGbpDn/mGBTwRNWBVWlVg1taLlCBAWc8=
|
||||||
|
|
13
handler.go
13
handler.go
|
@ -8,7 +8,6 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
|
||||||
|
|
||||||
"kumoly.io/lib/ksrv"
|
"kumoly.io/lib/ksrv"
|
||||||
)
|
)
|
||||||
|
@ -122,7 +121,7 @@ func (cui *ConfigUI) Apply(w http.ResponseWriter, r *http.Request) {
|
||||||
ksrv.Response(w, 404, []byte("file not found"))
|
ksrv.Response(w, 404, []byte("file not found"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
result, err := file.Do(cui.cmdTimeout)
|
result, err := file.Do(cui.cmdTimeout, make(chan int))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
@ -146,11 +145,11 @@ func (cui *ConfigUI) DoAction(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
file := &File{Name: name, Cmd: v.Cmd, owner: cui}
|
file := &File{Name: name, Cmd: v.Cmd, owner: cui}
|
||||||
|
pid := make(chan int)
|
||||||
go func() {
|
go func() {
|
||||||
<-time.After(time.Millisecond * 10)
|
cui.Actions[i].pid = <-pid
|
||||||
cui.Actions[i].pid = file.pid
|
|
||||||
}()
|
}()
|
||||||
result, err := file.Do(cui.cmdTimeout)
|
result, err := file.Do(cui.cmdTimeout, pid)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
@ -196,8 +195,8 @@ func (cui *ConfigUI) Download(w http.ResponseWriter, r *http.Request) {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
w.Header().Set(
|
w.Header().Set(
|
||||||
"Content-Disposition", `
|
"Content-Disposition",
|
||||||
attachment; filename="`+cui.AppName+`.json"`,
|
`attachment; filename="`+cui.AppName+`.json"`,
|
||||||
)
|
)
|
||||||
w.Write(data)
|
w.Write(data)
|
||||||
return
|
return
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -17,10 +17,6 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@creativebulma/bulma-tooltip": "^1.2.0",
|
"@creativebulma/bulma-tooltip": "^1.2.0",
|
||||||
"bulma": "^0.9.3",
|
"bulma": "^0.9.3",
|
||||||
"prismjs": "^1.25.0",
|
|
||||||
"sass": "^1.43.2"
|
"sass": "^1.43.2"
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"parcel": "^2.0.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"kumoly.io/lib/ksrv"
|
"kumoly.io/lib/ksrv"
|
||||||
|
"kumoly.io/lib/stat"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (cui *ConfigUI) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
func (cui *ConfigUI) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
|
@ -38,6 +39,13 @@ func (cui *ConfigUI) middleware(next http.Handler) http.Handler {
|
||||||
|
|
||||||
func (cui *ConfigUI) mux() *http.ServeMux {
|
func (cui *ConfigUI) mux() *http.ServeMux {
|
||||||
cuiR := http.NewServeMux()
|
cuiR := http.NewServeMux()
|
||||||
|
cuiR.HandleFunc("/api/profile", func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.Method == "GET" {
|
||||||
|
ksrv.JSON(w, stat.GetProfile())
|
||||||
|
} else {
|
||||||
|
w.WriteHeader(404)
|
||||||
|
}
|
||||||
|
})
|
||||||
cuiR.HandleFunc("/api/conf", func(w http.ResponseWriter, r *http.Request) {
|
cuiR.HandleFunc("/api/conf", func(w http.ResponseWriter, r *http.Request) {
|
||||||
if r.Method == "GET" {
|
if r.Method == "GET" {
|
||||||
cui.GetConfig(w, r)
|
cui.GetConfig(w, r)
|
||||||
|
|
|
@ -5,13 +5,15 @@
|
||||||
var Active = "{{.File.Name}}";
|
var Active = "{{.File.Name}}";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<section class="hero is-small is-primary">
|
<nav class="level">
|
||||||
<div class="hero-body" id="title">
|
<div class="level-left">
|
||||||
<p class="title">
|
<div class="level-item">
|
||||||
{{.AppName}}
|
<a class="title is-size-4 ml-2 mt-1" href="{{.BaseUrl}}">
|
||||||
</p>
|
{{.AppName}}
|
||||||
</div>
|
</a>
|
||||||
</section>
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
<div class="columns">
|
<div class="columns">
|
||||||
<div class="column is-one-quarter">
|
<div class="column is-one-quarter">
|
||||||
|
|
25
util.go
25
util.go
|
@ -5,7 +5,10 @@ import (
|
||||||
"compress/gzip"
|
"compress/gzip"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"reflect"
|
||||||
"strings"
|
"strings"
|
||||||
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
func bundle(buf io.Writer, paths []string, rootDir string, flat bool) error {
|
func bundle(buf io.Writer, paths []string, rootDir string, flat bool) error {
|
||||||
|
@ -65,3 +68,25 @@ func bundle(buf io.Writer, paths []string, rootDir string, flat bool) error {
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func mkdir(args ...interface{}) error {
|
||||||
|
var path string
|
||||||
|
var mode os.FileMode
|
||||||
|
mode = 0755
|
||||||
|
for _, arg := range args {
|
||||||
|
switch arg := arg.(type) {
|
||||||
|
case string:
|
||||||
|
path = filepath.Join(path, arg)
|
||||||
|
case os.FileMode:
|
||||||
|
mode = arg
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return os.MkdirAll(path, mode)
|
||||||
|
}
|
||||||
|
|
||||||
|
const mutexLocked = 1
|
||||||
|
|
||||||
|
func MutexLocked(m *sync.Mutex) bool {
|
||||||
|
state := reflect.ValueOf(m).Elem().FieldByName("state")
|
||||||
|
return state.Int()&mutexLocked == mutexLocked
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue