ctdo.de/http.go

36 lines
1.0 KiB
Go
Raw Normal View History

package main
import (
"io"
"net/http"
)
2023-01-26 22:47:23 +00:00
func httpHandleFunc(urlPath string, filepath string, contentType string) {
2023-01-28 21:28:31 +00:00
logger(readHttpYML() + "/" + urlPath + " - " + filepath + " <" + contentType + ">")
2023-01-26 22:47:23 +00:00
http.HandleFunc("/"+urlPath, func(w http.ResponseWriter, r *http.Request) {
2023-01-28 21:30:07 +00:00
logger(r.Method + " <--> request -> " + readHttpYML() + "/" + urlPath + " <" + contentType + ">")
2023-01-28 21:28:31 +00:00
2023-01-26 22:47:23 +00:00
w.Header().Add("Content-Type", contentType)
2023-01-27 14:30:42 +00:00
io.WriteString(w, htmlReplacer(fileRead(filepath), urlPath))
2023-01-26 22:47:23 +00:00
})
}
func httpHandleFuncWithPOST(urlPath string, filepath string, contentType string) {
2023-01-28 21:28:31 +00:00
logger(readHttpYML() + "/" + urlPath + " - " + filepath + " <" + contentType + ">")
2023-01-26 22:47:23 +00:00
s := new(submit)
s.data = "null"
http.HandleFunc("/"+urlPath, func(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {
err := r.ParseForm()
errorPanic(err)
2023-01-26 22:47:23 +00:00
}
2023-01-28 21:30:07 +00:00
logger(r.Method + " <--> request -> " + readHttpYML() + "/" + urlPath + " <" + contentType + ">")
2023-01-28 21:28:31 +00:00
2023-01-26 22:47:23 +00:00
w.Header().Add("Content-Type", contentType)
2023-01-27 14:30:42 +00:00
io.WriteString(w, htmlReplacer(fileRead(filepath), urlPath))
2023-01-26 22:47:23 +00:00
})
}