2019-05-07 23:56:13 +08:00
|
|
|
package caddyhttp
|
2019-05-05 03:21:20 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2019-05-21 11:21:33 +08:00
|
|
|
"strconv"
|
2019-05-05 03:21:20 +08:00
|
|
|
|
2019-06-15 01:58:28 +08:00
|
|
|
"github.com/caddyserver/caddy"
|
2019-05-05 03:21:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-06-15 01:58:28 +08:00
|
|
|
caddy.RegisterModule(caddy.Module{
|
2019-05-05 03:21:20 +08:00
|
|
|
Name: "http.responders.static",
|
2019-05-22 04:22:21 +08:00
|
|
|
New: func() interface{} { return new(Static) },
|
2019-05-05 03:21:20 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Static implements a simple responder for static responses.
|
|
|
|
type Static struct {
|
2019-05-21 12:00:54 +08:00
|
|
|
StatusCode int `json:"status_code"` // TODO: should we turn this into a string so that only one field is needed? (string allows replacements)
|
2019-05-21 11:21:33 +08:00
|
|
|
StatusCodeStr string `json:"status_code_str"`
|
|
|
|
Headers http.Header `json:"headers"`
|
|
|
|
Body string `json:"body"`
|
|
|
|
Close bool `json:"close"`
|
2019-05-05 03:21:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s Static) ServeHTTP(w http.ResponseWriter, r *http.Request) error {
|
2019-06-15 01:58:28 +08:00
|
|
|
repl := r.Context().Value(caddy.ReplacerCtxKey).(caddy.Replacer)
|
2019-05-05 03:21:20 +08:00
|
|
|
|
2019-05-17 01:46:17 +08:00
|
|
|
// close the connection after responding
|
2019-05-05 03:21:20 +08:00
|
|
|
r.Close = s.Close
|
|
|
|
|
2019-05-21 12:00:54 +08:00
|
|
|
// set all headers
|
2019-05-05 03:21:20 +08:00
|
|
|
for field, vals := range s.Headers {
|
2019-05-21 00:59:20 +08:00
|
|
|
field = repl.ReplaceAll(field, "")
|
2019-06-22 04:36:26 +08:00
|
|
|
newVals := make([]string, len(vals))
|
2019-05-05 03:21:20 +08:00
|
|
|
for i := range vals {
|
2019-06-22 04:36:26 +08:00
|
|
|
newVals[i] = repl.ReplaceAll(vals[i], "")
|
2019-05-05 03:21:20 +08:00
|
|
|
}
|
2019-06-22 04:36:26 +08:00
|
|
|
w.Header()[field] = newVals
|
2019-05-05 03:21:20 +08:00
|
|
|
}
|
|
|
|
|
2019-06-08 09:59:17 +08:00
|
|
|
// do not allow Go to sniff the content-type
|
|
|
|
if w.Header().Get("Content-Type") == "" {
|
|
|
|
w.Header()["Content-Type"] = nil
|
|
|
|
}
|
|
|
|
|
2019-05-21 12:00:54 +08:00
|
|
|
// get the status code
|
2019-05-05 03:21:20 +08:00
|
|
|
statusCode := s.StatusCode
|
2019-05-21 11:21:33 +08:00
|
|
|
if statusCode == 0 && s.StatusCodeStr != "" {
|
|
|
|
intVal, err := strconv.Atoi(repl.ReplaceAll(s.StatusCodeStr, ""))
|
|
|
|
if err == nil {
|
|
|
|
statusCode = intVal
|
|
|
|
}
|
|
|
|
}
|
2019-05-05 03:21:20 +08:00
|
|
|
if statusCode == 0 {
|
|
|
|
statusCode = http.StatusOK
|
|
|
|
}
|
2019-05-21 12:00:54 +08:00
|
|
|
|
|
|
|
// write headers
|
2019-05-05 03:21:20 +08:00
|
|
|
w.WriteHeader(statusCode)
|
|
|
|
|
2019-05-21 12:00:54 +08:00
|
|
|
// write response body
|
2019-05-05 03:21:20 +08:00
|
|
|
if s.Body != "" {
|
2019-05-21 00:59:20 +08:00
|
|
|
fmt.Fprint(w, repl.ReplaceAll(s.Body, ""))
|
2019-05-05 03:21:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Interface guard
|
2019-05-07 23:56:13 +08:00
|
|
|
var _ Handler = (*Static)(nil)
|