mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ec97f41465
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
29 lines
674 B
Go
29 lines
674 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
func boolValue(r *http.Request, k string) bool {
|
|
s := strings.ToLower(strings.TrimSpace(r.FormValue(k)))
|
|
return !(s == "" || s == "0" || s == "no" || s == "false" || s == "none")
|
|
}
|
|
|
|
// boolValueOrDefault returns the default bool passed if the query param is
|
|
// missing, otherwise it's just a proxy to boolValue above
|
|
func boolValueOrDefault(r *http.Request, k string, d bool) bool {
|
|
if _, ok := r.Form[k]; !ok {
|
|
return d
|
|
}
|
|
return boolValue(r, k)
|
|
}
|
|
|
|
func int64ValueOrZero(r *http.Request, k string) int64 {
|
|
val, err := strconv.ParseInt(r.FormValue(k), 10, 64)
|
|
if err != nil {
|
|
return 0
|
|
}
|
|
return val
|
|
}
|