more more strings to constants

This commit is contained in:
Hyatt 2024-02-12 07:57:37 -06:00
parent cf92f8a441
commit 7e2422a0a9
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -31,6 +31,8 @@ const (
TYPE_TEXT_JS string = "text/javascript"
TYPE_TEXT_PLAIN string = "text/plain"
TYPE_TEXT_RAW string = "text/raw"
DEBUG_INVALID_METHOD string = "http invalid method"
)
var validFiles map[string]string = map[string]string{
@ -89,9 +91,9 @@ func webRoot(w http.ResponseWriter, r *http.Request) {
httpAccessLog(r)
crossSiteOrigin(w)
if strings.ToLower(r.Method) != "get" {
config.Cfg.Log.Debug("http invalid method", "url", r.URL.Path, "expected", "GET", "received", r.Method)
tmpltError(w, http.StatusBadRequest, "Invalid http method.")
if !strings.EqualFold(r.Method, http.MethodGet) {
config.Cfg.Log.Debug(DEBUG_INVALID_METHOD, "url", r.URL.Path, "expected", http.MethodGet, "received", r.Method)
tmpltError(w, http.StatusBadRequest, DEBUG_INVALID_METHOD)
return
}
@ -128,9 +130,9 @@ func webJSON(w http.ResponseWriter, r *http.Request) {
httpAccessLog(r)
crossSiteOrigin(w)
if strings.ToLower(r.Method) != "get" {
config.Cfg.Log.Debug("http invalid method", "url", r.URL.Path, "expected", "GET", "received", r.Method)
tmpltError(w, http.StatusBadRequest, "Invalid http method.")
if !strings.EqualFold(r.Method, http.MethodGet) {
config.Cfg.Log.Debug(DEBUG_INVALID_METHOD, "url", r.URL.Path, "expected", http.MethodGet, "received", r.Method)
tmpltError(w, http.StatusBadRequest, DEBUG_INVALID_METHOD)
return
}
@ -161,9 +163,9 @@ func webTXT(w http.ResponseWriter, r *http.Request) {
httpAccessLog(r)
crossSiteOrigin(w)
if strings.ToLower(r.Method) != "get" {
config.Cfg.Log.Debug("http invalid method", "url", r.URL.Path, "expected", "GET", "received", r.Method)
tmpltError(w, http.StatusBadRequest, "Invalid http method.")
if !strings.EqualFold(r.Method, http.MethodGet) {
config.Cfg.Log.Debug(DEBUG_INVALID_METHOD, "url", r.URL.Path, "expected", http.MethodGet, "received", r.Method)
tmpltError(w, http.StatusBadRequest, DEBUG_INVALID_METHOD)
return
}