diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-27 10:40:52 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-27 10:41:35 +0100 |
commit | 7fa2842f5d49e87acf92bcfb3602c52bf482258e (patch) | |
tree | de42a028c2e19d80d52bb40201cbf1945f01eb1d | |
parent | 19975e981ed0f1fbd96644d95ede5435bfbdccfc (diff) | |
download | easybridge-7fa2842f5d49e87acf92bcfb3602c52bf482258e.tar.gz easybridge-7fa2842f5d49e87acf92bcfb3602c52bf482258e.zip |
Do not put password in form on modify
-rw-r--r-- | server.go | 2 | ||||
-rw-r--r-- | templates/config.html | 8 | ||||
-rw-r--r-- | web.go | 7 |
3 files changed, 14 insertions, 3 deletions
@@ -65,7 +65,7 @@ func checkTokenAndLog(handler http.Handler) http.Handler { return } - log.Printf("%s %s %s\n", r.RemoteAddr, r.Method, strings.Split(r.URL, "?")[0]) + log.Printf("%s %s %s\n", r.RemoteAddr, r.Method, strings.Split(r.URL.String(), "?")[0]) handler.ServeHTTP(w, r) }) } diff --git a/templates/config.html b/templates/config.html index 2d64444..9018811 100644 --- a/templates/config.html +++ b/templates/config.html @@ -28,7 +28,7 @@ {{$errors := .Errors}} {{range $i, $schema := .Schema}} <div class="form-group"> - <label for="{{$schema.Name}}">{{$schema.Description}}</label> + <label for="{{$schema.Name}}">{{$schema.Description}}:</label> {{if $schema.FixedValue}} <input type="text" disabled="disabled" @@ -51,6 +51,12 @@ class="form-control" name="{{$schema.Name}}" id="{{$schema.Name}}" + placeholder="(not modified if left empty)" /> + {{else if $schema.IsNumeric}} + <input type="number" + class="form-control" + name="{{$schema.Name}}" + id="{{$schema.Name}}" value="{{index $config $schema.Name}}" /> {{else}} <input type="text" @@ -262,8 +262,13 @@ func configForm(w http.ResponseWriter, r *http.Request, for _, schema := range data.Schema { field := schema.Name + old_value := data.Config[field] data.Config[field] = strings.Join(r.Form[field], "") - if data.Config[field] == "" { + if schema.IsPassword { + if data.Config[field] == "" { + data.Config[field] = old_value + } + } else if data.Config[field] == "" { if schema.Required { ok = false data.Errors[field] = "This field is required" |