mirror of
https://github.com/caddyserver/caddy.git
synced 2025-10-19 15:53:17 +00:00
Rough implementation of auto HTTP->HTTPS redirects
Also added GracePeriod for server shutdowns
This commit is contained in:
parent
8eba582efe
commit
e40bbecb16
5 changed files with 195 additions and 33 deletions
57
modules/caddyhttp/staticresp.go
Normal file
57
modules/caddyhttp/staticresp.go
Normal file
|
@ -0,0 +1,57 @@
|
|||
package caddyhttp
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
|
||||
"bitbucket.org/lightcodelabs/caddy2"
|
||||
)
|
||||
|
||||
func init() {
|
||||
caddy2.RegisterModule(caddy2.Module{
|
||||
Name: "http.responders.static",
|
||||
New: func() (interface{}, error) { return new(Static), nil },
|
||||
})
|
||||
}
|
||||
|
||||
// Static implements a simple responder for static responses.
|
||||
// It is Caddy's default responder. TODO: Or is it?
|
||||
type Static struct {
|
||||
StatusCode int `json:"status_code"`
|
||||
Headers http.Header `json:"headers"`
|
||||
Body string `json:"body"`
|
||||
Close bool `json:"close"`
|
||||
}
|
||||
|
||||
func (s Static) ServeHTTP(w http.ResponseWriter, r *http.Request) error {
|
||||
repl := r.Context().Value(ReplacerCtxKey).(*Replacer)
|
||||
|
||||
// close the connection
|
||||
r.Close = s.Close
|
||||
|
||||
// set all headers, with replacements
|
||||
for field, vals := range s.Headers {
|
||||
field = repl.Replace(field, "")
|
||||
for i := range vals {
|
||||
vals[i] = repl.Replace(vals[i], "")
|
||||
}
|
||||
w.Header()[field] = vals
|
||||
}
|
||||
|
||||
// write the headers with a status code
|
||||
statusCode := s.StatusCode
|
||||
if statusCode == 0 {
|
||||
statusCode = http.StatusOK
|
||||
}
|
||||
w.WriteHeader(statusCode)
|
||||
|
||||
// write the response body, with replacements
|
||||
if s.Body != "" {
|
||||
fmt.Fprint(w, repl.Replace(s.Body, ""))
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// Interface guard
|
||||
var _ Handler = (*Static)(nil)
|
Loading…
Add table
Add a link
Reference in a new issue