more more strings to constants
This commit is contained in:
parent
cf92f8a441
commit
7e2422a0a9
@ -31,6 +31,8 @@ const (
|
|||||||
TYPE_TEXT_JS string = "text/javascript"
|
TYPE_TEXT_JS string = "text/javascript"
|
||||||
TYPE_TEXT_PLAIN string = "text/plain"
|
TYPE_TEXT_PLAIN string = "text/plain"
|
||||||
TYPE_TEXT_RAW string = "text/raw"
|
TYPE_TEXT_RAW string = "text/raw"
|
||||||
|
|
||||||
|
DEBUG_INVALID_METHOD string = "http invalid method"
|
||||||
)
|
)
|
||||||
|
|
||||||
var validFiles map[string]string = map[string]string{
|
var validFiles map[string]string = map[string]string{
|
||||||
@ -89,9 +91,9 @@ func webRoot(w http.ResponseWriter, r *http.Request) {
|
|||||||
httpAccessLog(r)
|
httpAccessLog(r)
|
||||||
crossSiteOrigin(w)
|
crossSiteOrigin(w)
|
||||||
|
|
||||||
if strings.ToLower(r.Method) != "get" {
|
if !strings.EqualFold(r.Method, http.MethodGet) {
|
||||||
config.Cfg.Log.Debug("http invalid method", "url", r.URL.Path, "expected", "GET", "received", r.Method)
|
config.Cfg.Log.Debug(DEBUG_INVALID_METHOD, "url", r.URL.Path, "expected", http.MethodGet, "received", r.Method)
|
||||||
tmpltError(w, http.StatusBadRequest, "Invalid http method.")
|
tmpltError(w, http.StatusBadRequest, DEBUG_INVALID_METHOD)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,9 +130,9 @@ func webJSON(w http.ResponseWriter, r *http.Request) {
|
|||||||
httpAccessLog(r)
|
httpAccessLog(r)
|
||||||
crossSiteOrigin(w)
|
crossSiteOrigin(w)
|
||||||
|
|
||||||
if strings.ToLower(r.Method) != "get" {
|
if !strings.EqualFold(r.Method, http.MethodGet) {
|
||||||
config.Cfg.Log.Debug("http invalid method", "url", r.URL.Path, "expected", "GET", "received", r.Method)
|
config.Cfg.Log.Debug(DEBUG_INVALID_METHOD, "url", r.URL.Path, "expected", http.MethodGet, "received", r.Method)
|
||||||
tmpltError(w, http.StatusBadRequest, "Invalid http method.")
|
tmpltError(w, http.StatusBadRequest, DEBUG_INVALID_METHOD)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -161,9 +163,9 @@ func webTXT(w http.ResponseWriter, r *http.Request) {
|
|||||||
httpAccessLog(r)
|
httpAccessLog(r)
|
||||||
crossSiteOrigin(w)
|
crossSiteOrigin(w)
|
||||||
|
|
||||||
if strings.ToLower(r.Method) != "get" {
|
if !strings.EqualFold(r.Method, http.MethodGet) {
|
||||||
config.Cfg.Log.Debug("http invalid method", "url", r.URL.Path, "expected", "GET", "received", r.Method)
|
config.Cfg.Log.Debug(DEBUG_INVALID_METHOD, "url", r.URL.Path, "expected", http.MethodGet, "received", r.Method)
|
||||||
tmpltError(w, http.StatusBadRequest, "Invalid http method.")
|
tmpltError(w, http.StatusBadRequest, DEBUG_INVALID_METHOD)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user