mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-29 07:03:48 +03:00
3c90e370a4
This commit goes a long way toward making automated documentation of Caddy config and Caddy modules possible. It's a broad, sweeping change, but mostly internal. It allows us to automatically generate docs for all Caddy modules (including future third-party ones) and make them viewable on a web page; it also doubles as godoc comments. As such, this commit makes significant progress in migrating the docs from our temporary wiki page toward our new website which is still under construction. With this change, all host modules will use ctx.LoadModule() and pass in both the struct pointer and the field name as a string. This allows the reflect package to read the struct tag from that field so that it can get the necessary information like the module namespace and the inline key. This has the nice side-effect of unifying the code and documentation. It also simplifies module loading, and handles several variations on field types for raw module fields (i.e. variations on json.RawMessage, such as arrays and maps). I also renamed ModuleInfo.Name -> ModuleInfo.ID, to make it clear that the ID is the "full name" which includes both the module namespace and the name. This clarity is helpful when describing module hierarchy. As of this change, Caddy modules are no longer an experimental design. I think the architecture is good enough to go forward.
291 lines
7.7 KiB
Go
291 lines
7.7 KiB
Go
// 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.
|
|
|
|
package headers
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/caddyserver/caddy/v2"
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
|
|
)
|
|
|
|
func init() {
|
|
caddy.RegisterModule(Handler{})
|
|
}
|
|
|
|
// Handler is a middleware which can mutate HTTP headers.
|
|
type Handler struct {
|
|
Request *HeaderOps `json:"request,omitempty"`
|
|
Response *RespHeaderOps `json:"response,omitempty"`
|
|
}
|
|
|
|
// CaddyModule returns the Caddy module information.
|
|
func (Handler) CaddyModule() caddy.ModuleInfo {
|
|
return caddy.ModuleInfo{
|
|
ID: "http.handlers.headers",
|
|
New: func() caddy.Module { return new(Handler) },
|
|
}
|
|
}
|
|
|
|
// Provision sets up h's configuration.
|
|
func (h *Handler) Provision(_ caddy.Context) error {
|
|
if h.Request != nil {
|
|
err := h.Request.provision()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if h.Response != nil {
|
|
err := h.Response.provision()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate ensures h's configuration is valid.
|
|
func (h Handler) Validate() error {
|
|
if h.Request != nil {
|
|
err := h.Request.validate()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if h.Response != nil {
|
|
err := h.Response.validate()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (h Handler) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyhttp.Handler) error {
|
|
repl := r.Context().Value(caddy.ReplacerCtxKey).(caddy.Replacer)
|
|
|
|
if h.Request != nil {
|
|
h.Request.ApplyToRequest(r)
|
|
}
|
|
|
|
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 {
|
|
h.Response.ApplyTo(w.Header(), repl)
|
|
}
|
|
}
|
|
|
|
return next.ServeHTTP(w, r)
|
|
}
|
|
|
|
// HeaderOps defines some operations to
|
|
// perform on HTTP headers.
|
|
type HeaderOps struct {
|
|
Add http.Header `json:"add,omitempty"`
|
|
Set http.Header `json:"set,omitempty"`
|
|
Delete []string `json:"delete,omitempty"`
|
|
Replace map[string][]Replacement `json:"replace,omitempty"`
|
|
}
|
|
|
|
func (ops *HeaderOps) provision() error {
|
|
for fieldName, replacements := range ops.Replace {
|
|
for i, r := range replacements {
|
|
if r.SearchRegexp != "" {
|
|
re, err := regexp.Compile(r.SearchRegexp)
|
|
if err != nil {
|
|
return fmt.Errorf("replacement %d for header field '%s': %v", i, fieldName, err)
|
|
}
|
|
replacements[i].re = re
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (ops HeaderOps) validate() error {
|
|
for fieldName, replacements := range ops.Replace {
|
|
for _, r := range replacements {
|
|
if r.Search != "" && r.SearchRegexp != "" {
|
|
return fmt.Errorf("cannot specify both a substring search and a regular expression search for field '%s'", fieldName)
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Replacement describes a string replacement,
|
|
// either a simple and fast sugbstring search
|
|
// or a slower but more powerful regex search.
|
|
type Replacement struct {
|
|
Search string `json:"search,omitempty"`
|
|
SearchRegexp string `json:"search_regexp,omitempty"`
|
|
Replace string `json:"replace,omitempty"`
|
|
|
|
re *regexp.Regexp
|
|
}
|
|
|
|
// RespHeaderOps is like HeaderOps, but
|
|
// optionally deferred until response time.
|
|
type RespHeaderOps struct {
|
|
*HeaderOps
|
|
Require *caddyhttp.ResponseMatcher `json:"require,omitempty"`
|
|
Deferred bool `json:"deferred,omitempty"`
|
|
}
|
|
|
|
// ApplyTo applies ops to hdr using repl.
|
|
func (ops HeaderOps) ApplyTo(hdr http.Header, repl caddy.Replacer) {
|
|
// add
|
|
for fieldName, vals := range ops.Add {
|
|
fieldName = repl.ReplaceAll(fieldName, "")
|
|
for _, v := range vals {
|
|
hdr.Add(fieldName, repl.ReplaceAll(v, ""))
|
|
}
|
|
}
|
|
|
|
// set
|
|
for fieldName, vals := range ops.Set {
|
|
fieldName = repl.ReplaceAll(fieldName, "")
|
|
var newVals []string
|
|
for i := range vals {
|
|
// append to new slice so we don't overwrite
|
|
// the original values in ops.Set
|
|
newVals = append(newVals, repl.ReplaceAll(vals[i], ""))
|
|
}
|
|
hdr.Set(fieldName, strings.Join(newVals, ","))
|
|
}
|
|
|
|
// delete
|
|
for _, fieldName := range ops.Delete {
|
|
hdr.Del(repl.ReplaceAll(fieldName, ""))
|
|
}
|
|
|
|
// replace
|
|
for fieldName, replacements := range ops.Replace {
|
|
fieldName = repl.ReplaceAll(fieldName, "")
|
|
|
|
// all fields...
|
|
if fieldName == "*" {
|
|
for _, r := range replacements {
|
|
search := repl.ReplaceAll(r.Search, "")
|
|
replace := repl.ReplaceAll(r.Replace, "")
|
|
for fieldName, vals := range hdr {
|
|
for i := range vals {
|
|
if r.re != nil {
|
|
hdr[fieldName][i] = r.re.ReplaceAllString(hdr[fieldName][i], replace)
|
|
} else {
|
|
hdr[fieldName][i] = strings.ReplaceAll(hdr[fieldName][i], search, replace)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
continue
|
|
}
|
|
|
|
// ...or only with the named field
|
|
for _, r := range replacements {
|
|
search := repl.ReplaceAll(r.Search, "")
|
|
replace := repl.ReplaceAll(r.Replace, "")
|
|
for i := range hdr[fieldName] {
|
|
if r.re != nil {
|
|
hdr[fieldName][i] = r.re.ReplaceAllString(hdr[fieldName][i], replace)
|
|
} else {
|
|
hdr[fieldName][i] = strings.ReplaceAll(hdr[fieldName][i], search, replace)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// ApplyToRequest applies ops to r, specially handling the Host
|
|
// header which the standard library does not include with the
|
|
// header map with all the others. This method mutates r.Host.
|
|
func (ops HeaderOps) ApplyToRequest(r *http.Request) {
|
|
repl := r.Context().Value(caddy.ReplacerCtxKey).(caddy.Replacer)
|
|
|
|
// capture the current Host header so we can
|
|
// reset to it when we're done
|
|
origHost, hadHost := r.Header["Host"]
|
|
|
|
// append r.Host; this way, we know that our value
|
|
// was last in the list, and if an Add operation
|
|
// appended something else after it, that's probably
|
|
// fine because it's weird to have multiple Host
|
|
// headers anyway and presumably the one they added
|
|
// is the one they wanted
|
|
r.Header["Host"] = append(r.Header["Host"], r.Host)
|
|
|
|
// apply header operations
|
|
ops.ApplyTo(r.Header, repl)
|
|
|
|
// retrieve the last Host value (likely the one we appended)
|
|
if len(r.Header["Host"]) > 0 {
|
|
r.Host = r.Header["Host"][len(r.Header["Host"])-1]
|
|
} else {
|
|
r.Host = ""
|
|
}
|
|
|
|
// reset the Host header slice
|
|
if hadHost {
|
|
r.Header["Host"] = origHost
|
|
} else {
|
|
delete(r.Header, "Host")
|
|
}
|
|
}
|
|
|
|
// responseWriterWrapper defers response header
|
|
// operations until WriteHeader is called.
|
|
type responseWriterWrapper struct {
|
|
*caddyhttp.ResponseWriterWrapper
|
|
replacer caddy.Replacer
|
|
require *caddyhttp.ResponseMatcher
|
|
headerOps *HeaderOps
|
|
wroteHeader bool
|
|
}
|
|
|
|
func (rww *responseWriterWrapper) WriteHeader(status int) {
|
|
if rww.wroteHeader {
|
|
return
|
|
}
|
|
rww.wroteHeader = true
|
|
if rww.require == nil || rww.require.Match(status, rww.ResponseWriterWrapper.Header()) {
|
|
if rww.headerOps != nil {
|
|
rww.headerOps.ApplyTo(rww.ResponseWriterWrapper.Header(), rww.replacer)
|
|
}
|
|
}
|
|
rww.ResponseWriterWrapper.WriteHeader(status)
|
|
}
|
|
|
|
func (rww *responseWriterWrapper) Write(d []byte) (int, error) {
|
|
if !rww.wroteHeader {
|
|
rww.WriteHeader(http.StatusOK)
|
|
}
|
|
return rww.ResponseWriterWrapper.Write(d)
|
|
}
|
|
|
|
// Interface guards
|
|
var (
|
|
_ caddy.Provisioner = (*Handler)(nil)
|
|
_ caddyhttp.MiddlewareHandler = (*Handler)(nil)
|
|
_ caddyhttp.HTTPInterfaces = (*responseWriterWrapper)(nil)
|
|
)
|