2019-07-01 06:07:58 +08:00
|
|
|
// Copyright 2015 Matthew Holt and The Caddy Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-05-21 05:46:47 +08:00
|
|
|
package headers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
2019-07-03 02:37:06 +08:00
|
|
|
"github.com/caddyserver/caddy/v2"
|
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
|
2019-05-21 05:46:47 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-08-22 00:46:35 +08:00
|
|
|
caddy.RegisterModule(Headers{})
|
2019-05-21 05:46:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Headers is a middleware which can mutate HTTP headers.
|
|
|
|
type Headers struct {
|
2019-05-23 02:32:36 +08:00
|
|
|
Request *HeaderOps `json:"request,omitempty"`
|
|
|
|
Response *RespHeaderOps `json:"response,omitempty"`
|
2019-05-21 05:46:47 +08:00
|
|
|
}
|
|
|
|
|
2019-08-22 00:46:35 +08:00
|
|
|
// CaddyModule returns the Caddy module information.
|
|
|
|
func (Headers) CaddyModule() caddy.ModuleInfo {
|
|
|
|
return caddy.ModuleInfo{
|
|
|
|
Name: "http.handlers.headers",
|
|
|
|
New: func() caddy.Module { return new(Headers) },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-21 05:46:47 +08:00
|
|
|
// HeaderOps defines some operations to
|
|
|
|
// perform on HTTP headers.
|
|
|
|
type HeaderOps struct {
|
2019-05-23 02:32:36 +08:00
|
|
|
Add http.Header `json:"add,omitempty"`
|
|
|
|
Set http.Header `json:"set,omitempty"`
|
|
|
|
Delete []string `json:"delete,omitempty"`
|
2019-05-21 05:46:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// RespHeaderOps is like HeaderOps, but
|
|
|
|
// optionally deferred until response time.
|
|
|
|
type RespHeaderOps struct {
|
2019-05-23 02:32:36 +08:00
|
|
|
*HeaderOps
|
2019-05-29 08:53:08 +08:00
|
|
|
Require *caddyhttp.ResponseMatcher `json:"require,omitempty"`
|
|
|
|
Deferred bool `json:"deferred,omitempty"`
|
2019-05-21 05:46:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h Headers) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyhttp.Handler) error {
|
2019-06-15 01:58:28 +08:00
|
|
|
repl := r.Context().Value(caddy.ReplacerCtxKey).(caddy.Replacer)
|
2019-09-12 08:48:37 +08:00
|
|
|
|
2019-05-21 13:48:43 +08:00
|
|
|
apply(h.Request, r.Header, repl)
|
2019-09-12 08:48:37 +08:00
|
|
|
|
|
|
|
// request header's Host is handled specially by the
|
|
|
|
// Go standard library, so if that header was changed,
|
|
|
|
// change it in the Host field since the Header won't
|
|
|
|
// be used
|
|
|
|
if intendedHost := r.Header.Get("Host"); intendedHost != "" {
|
|
|
|
r.Host = intendedHost
|
|
|
|
r.Header.Del("Host")
|
|
|
|
}
|
|
|
|
|
2019-06-22 04:36:26 +08:00
|
|
|
if h.Response != nil {
|
|
|
|
if h.Response.Deferred || h.Response.Require != nil {
|
|
|
|
w = &responseWriterWrapper{
|
|
|
|
ResponseWriterWrapper: &caddyhttp.ResponseWriterWrapper{ResponseWriter: w},
|
|
|
|
replacer: repl,
|
|
|
|
require: h.Response.Require,
|
|
|
|
headerOps: h.Response.HeaderOps,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
apply(h.Response.HeaderOps, w.Header(), repl)
|
2019-05-21 05:46:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return next.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
2019-06-15 01:58:28 +08:00
|
|
|
func apply(ops *HeaderOps, hdr http.Header, repl caddy.Replacer) {
|
2019-06-22 04:36:26 +08:00
|
|
|
if ops == nil {
|
|
|
|
return
|
|
|
|
}
|
2019-05-21 05:46:47 +08:00
|
|
|
for fieldName, vals := range ops.Add {
|
2019-05-21 13:48:43 +08:00
|
|
|
fieldName = repl.ReplaceAll(fieldName, "")
|
2019-05-21 05:46:47 +08:00
|
|
|
for _, v := range vals {
|
2019-05-21 13:48:43 +08:00
|
|
|
hdr.Add(fieldName, repl.ReplaceAll(v, ""))
|
2019-05-21 05:46:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
for fieldName, vals := range ops.Set {
|
2019-05-21 13:48:43 +08:00
|
|
|
fieldName = repl.ReplaceAll(fieldName, "")
|
|
|
|
for i := range vals {
|
|
|
|
vals[i] = repl.ReplaceAll(vals[i], "")
|
|
|
|
}
|
2019-05-21 05:46:47 +08:00
|
|
|
hdr.Set(fieldName, strings.Join(vals, ","))
|
|
|
|
}
|
|
|
|
for _, fieldName := range ops.Delete {
|
2019-05-21 13:48:43 +08:00
|
|
|
hdr.Del(repl.ReplaceAll(fieldName, ""))
|
2019-05-21 05:46:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// responseWriterWrapper defers response header
|
|
|
|
// operations until WriteHeader is called.
|
|
|
|
type responseWriterWrapper struct {
|
|
|
|
*caddyhttp.ResponseWriterWrapper
|
2019-06-15 01:58:28 +08:00
|
|
|
replacer caddy.Replacer
|
2019-05-29 08:53:08 +08:00
|
|
|
require *caddyhttp.ResponseMatcher
|
2019-05-23 02:32:36 +08:00
|
|
|
headerOps *HeaderOps
|
2019-05-21 12:00:54 +08:00
|
|
|
wroteHeader bool
|
|
|
|
}
|
|
|
|
|
2019-05-21 05:46:47 +08:00
|
|
|
func (rww *responseWriterWrapper) WriteHeader(status int) {
|
2019-05-21 12:00:54 +08:00
|
|
|
if rww.wroteHeader {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
rww.wroteHeader = true
|
2019-05-29 08:53:08 +08:00
|
|
|
if rww.require == nil || rww.require.Match(status, rww.ResponseWriterWrapper.Header()) {
|
|
|
|
apply(rww.headerOps, rww.ResponseWriterWrapper.Header(), rww.replacer)
|
|
|
|
}
|
2019-05-21 05:46:47 +08:00
|
|
|
rww.ResponseWriterWrapper.WriteHeader(status)
|
|
|
|
}
|
|
|
|
|
2019-06-15 01:58:28 +08:00
|
|
|
func (rww *responseWriterWrapper) Write(d []byte) (int, error) {
|
|
|
|
if !rww.wroteHeader {
|
|
|
|
rww.WriteHeader(http.StatusOK)
|
|
|
|
}
|
|
|
|
return rww.ResponseWriterWrapper.Write(d)
|
|
|
|
}
|
|
|
|
|
2019-05-21 05:46:47 +08:00
|
|
|
// Interface guards
|
|
|
|
var (
|
|
|
|
_ caddyhttp.MiddlewareHandler = (*Headers)(nil)
|
|
|
|
_ caddyhttp.HTTPInterfaces = (*responseWriterWrapper)(nil)
|
|
|
|
)
|