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-24 03:16:34 +08:00
|
|
|
package rewrite
|
2019-05-21 13:48:43 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
|
2019-07-03 02:37:06 +08:00
|
|
|
"github.com/caddyserver/caddy/v2"
|
|
|
|
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
|
2019-10-29 04:39:37 +08:00
|
|
|
"go.uber.org/zap"
|
2019-05-21 13:48:43 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-08-22 00:46:35 +08:00
|
|
|
caddy.RegisterModule(Rewrite{})
|
2019-05-21 13:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rewrite is a middleware which can rewrite HTTP requests.
|
2019-12-24 03:45:35 +08:00
|
|
|
//
|
2020-01-12 04:47:42 +08:00
|
|
|
// The Method and URI properties are "setters": the request URI
|
|
|
|
// will be set to the given values. Other properties are "modifiers":
|
|
|
|
// they modify existing files but do not explicitly specify what the
|
|
|
|
// result will be. It is atypical to combine the use of setters and
|
|
|
|
// modifiers in a single rewrite.
|
2019-05-21 13:48:43 +08:00
|
|
|
type Rewrite struct {
|
2019-12-24 03:45:35 +08:00
|
|
|
// Changes the request's HTTP verb.
|
2019-10-20 09:22:29 +08:00
|
|
|
Method string `json:"method,omitempty"`
|
|
|
|
|
2020-01-12 04:47:42 +08:00
|
|
|
// Changes the request's URI, which consists of path and query string.
|
2019-12-24 03:45:35 +08:00
|
|
|
// Only components of the URI that are specified will be changed.
|
2020-01-12 04:47:42 +08:00
|
|
|
// For example, a value of "/foo.html" or "foo.html" will only change
|
|
|
|
// the path and will preserve any existing query string. Similarly, a
|
|
|
|
// value of "?a=b" will only change the query string and will not affect
|
|
|
|
// the path. Both can also be changed: "/foo?a=b" - this sets both the
|
|
|
|
// path and query string at the same time.
|
|
|
|
//
|
|
|
|
// You can also use placeholders. For example, to preserve the existing
|
|
|
|
// query string, you might use: "?{http.request.uri.query}&a=b". Any
|
|
|
|
// key-value pairs you add to the query string will not overwrite
|
|
|
|
// existing values.
|
|
|
|
//
|
|
|
|
// To clear the query string, explicitly set an empty one: "?"
|
2019-12-24 03:45:35 +08:00
|
|
|
URI string `json:"uri,omitempty"`
|
|
|
|
|
|
|
|
// Strips the given prefix from the beginning of the URI path.
|
2020-01-12 04:47:42 +08:00
|
|
|
StripPathPrefix string `json:"strip_path_prefix,omitempty"`
|
2019-10-20 09:22:29 +08:00
|
|
|
|
2019-12-24 03:45:35 +08:00
|
|
|
// Strips the given suffix from the end of the URI path.
|
2020-01-12 04:47:42 +08:00
|
|
|
StripPathSuffix string `json:"strip_path_suffix,omitempty"`
|
2019-12-24 03:45:35 +08:00
|
|
|
|
|
|
|
// Performs substring replacements on the URI.
|
|
|
|
URISubstring []replacer `json:"uri_substring,omitempty"`
|
|
|
|
|
2019-10-29 04:39:37 +08:00
|
|
|
logger *zap.Logger
|
2019-05-21 13:48:43 +08:00
|
|
|
}
|
|
|
|
|
2019-08-22 00:46:35 +08:00
|
|
|
// CaddyModule returns the Caddy module information.
|
|
|
|
func (Rewrite) CaddyModule() caddy.ModuleInfo {
|
|
|
|
return caddy.ModuleInfo{
|
2019-12-11 04:36:46 +08:00
|
|
|
ID: "http.handlers.rewrite",
|
|
|
|
New: func() caddy.Module { return new(Rewrite) },
|
2019-08-22 00:46:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-29 04:39:37 +08:00
|
|
|
// Provision sets up rewr.
|
|
|
|
func (rewr *Rewrite) Provision(ctx caddy.Context) error {
|
|
|
|
rewr.logger = ctx.Logger(rewr)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-21 13:48:43 +08:00
|
|
|
func (rewr Rewrite) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyhttp.Handler) error {
|
2019-12-30 04:12:52 +08:00
|
|
|
repl := r.Context().Value(caddy.ReplacerCtxKey).(*caddy.Replacer)
|
2019-05-21 13:48:43 +08:00
|
|
|
|
2019-10-29 04:39:37 +08:00
|
|
|
logger := rewr.logger.With(
|
|
|
|
zap.Object("request", caddyhttp.LoggableHTTPRequest{Request: r}),
|
|
|
|
)
|
|
|
|
|
2019-12-13 05:32:35 +08:00
|
|
|
changed := rewr.rewrite(r, repl, logger)
|
|
|
|
|
|
|
|
if changed {
|
|
|
|
logger.Debug("rewrote request",
|
|
|
|
zap.String("method", r.Method),
|
|
|
|
zap.String("uri", r.RequestURI),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return next.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
2020-01-11 07:59:57 +08:00
|
|
|
// rewrite performs the rewrites on r using repl, which should
|
|
|
|
// have been obtained from r, but is passed in for efficiency.
|
|
|
|
// It returns true if any changes were made to r.
|
2019-12-30 04:12:52 +08:00
|
|
|
func (rewr Rewrite) rewrite(r *http.Request, repl *caddy.Replacer, logger *zap.Logger) bool {
|
2019-12-13 05:32:35 +08:00
|
|
|
oldMethod := r.Method
|
|
|
|
oldURI := r.RequestURI
|
|
|
|
|
|
|
|
// method
|
2019-05-21 13:48:43 +08:00
|
|
|
if rewr.Method != "" {
|
|
|
|
r.Method = strings.ToUpper(repl.ReplaceAll(rewr.Method, ""))
|
|
|
|
}
|
|
|
|
|
2020-01-16 02:44:21 +08:00
|
|
|
// uri (path, query string, and fragment... because why not)
|
2020-01-11 07:59:57 +08:00
|
|
|
if uri := rewr.URI; uri != "" {
|
|
|
|
// find the bounds of each part of the URI that exist
|
|
|
|
pathStart, qsStart, fragStart := -1, -1, -1
|
|
|
|
pathEnd, qsEnd := -1, -1
|
|
|
|
for i, ch := range uri {
|
|
|
|
switch {
|
|
|
|
case ch == '?' && qsStart < 0:
|
|
|
|
pathEnd, qsStart = i, i+1
|
|
|
|
case ch == '#' && fragStart < 0:
|
|
|
|
qsEnd, fragStart = i, i+1
|
|
|
|
case pathStart < 0 && qsStart < 0 && fragStart < 0:
|
|
|
|
pathStart = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pathStart >= 0 && pathEnd < 0 {
|
|
|
|
pathEnd = len(uri)
|
|
|
|
}
|
|
|
|
if qsStart >= 0 && qsEnd < 0 {
|
|
|
|
qsEnd = len(uri)
|
2019-05-21 13:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-16 02:44:21 +08:00
|
|
|
// build components which are specified, and store them
|
|
|
|
// in a temporary variable so that they all read the
|
|
|
|
// same version of the URI
|
|
|
|
var newPath, newQuery, newFrag string
|
2020-01-11 07:59:57 +08:00
|
|
|
if pathStart >= 0 {
|
2020-01-16 02:44:21 +08:00
|
|
|
newPath = repl.ReplaceAll(uri[pathStart:pathEnd], "")
|
2019-05-21 13:48:43 +08:00
|
|
|
}
|
2020-01-11 07:59:57 +08:00
|
|
|
if qsStart >= 0 {
|
2020-01-16 02:44:21 +08:00
|
|
|
newQuery = buildQueryString(uri[qsStart:qsEnd], repl)
|
2019-05-21 13:48:43 +08:00
|
|
|
}
|
2020-01-11 07:59:57 +08:00
|
|
|
if fragStart >= 0 {
|
2020-01-16 02:44:21 +08:00
|
|
|
newFrag = repl.ReplaceAll(uri[fragStart:], "")
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the URI with the new components
|
|
|
|
// only after building them
|
|
|
|
if pathStart >= 0 {
|
|
|
|
r.URL.Path = newPath
|
|
|
|
}
|
|
|
|
if qsStart >= 0 {
|
|
|
|
r.URL.RawQuery = newQuery
|
|
|
|
}
|
|
|
|
if fragStart >= 0 {
|
|
|
|
r.URL.Fragment = newFrag
|
2019-05-21 13:48:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-20 09:22:29 +08:00
|
|
|
// strip path prefix or suffix
|
2020-01-12 04:47:42 +08:00
|
|
|
if rewr.StripPathPrefix != "" {
|
|
|
|
prefix := repl.ReplaceAll(rewr.StripPathPrefix, "")
|
2019-10-20 09:22:29 +08:00
|
|
|
r.URL.Path = strings.TrimPrefix(r.URL.Path, prefix)
|
|
|
|
}
|
2020-01-12 04:47:42 +08:00
|
|
|
if rewr.StripPathSuffix != "" {
|
|
|
|
suffix := repl.ReplaceAll(rewr.StripPathSuffix, "")
|
2019-10-20 09:22:29 +08:00
|
|
|
r.URL.Path = strings.TrimSuffix(r.URL.Path, suffix)
|
|
|
|
}
|
|
|
|
|
2019-12-13 05:32:35 +08:00
|
|
|
// substring replacements in URI
|
|
|
|
for _, rep := range rewr.URISubstring {
|
|
|
|
rep.do(r, repl)
|
2019-10-20 09:22:29 +08:00
|
|
|
}
|
|
|
|
|
2019-12-13 05:32:35 +08:00
|
|
|
// update the encoded copy of the URI
|
|
|
|
r.RequestURI = r.URL.RequestURI()
|
|
|
|
|
|
|
|
// return true if anything changed
|
|
|
|
return r.Method != oldMethod || r.RequestURI != oldURI
|
|
|
|
}
|
|
|
|
|
2020-01-11 07:59:57 +08:00
|
|
|
// buildQueryString takes an input query string and
|
|
|
|
// performs replacements on each component, returning
|
2020-01-12 02:40:03 +08:00
|
|
|
// the resulting query string. This function appends
|
|
|
|
// duplicate keys rather than replaces.
|
2020-01-11 07:59:57 +08:00
|
|
|
func buildQueryString(qs string, repl *caddy.Replacer) string {
|
|
|
|
var sb strings.Builder
|
2020-01-12 02:40:03 +08:00
|
|
|
|
|
|
|
// first component must be key, which is the same
|
|
|
|
// as if we just wrote a value in previous iteration
|
|
|
|
wroteVal := true
|
2020-01-11 07:59:57 +08:00
|
|
|
|
|
|
|
for len(qs) > 0 {
|
2020-01-12 02:40:03 +08:00
|
|
|
// determine the end of this component, which will be at
|
|
|
|
// the next equal sign or ampersand, whichever comes first
|
2020-01-11 07:59:57 +08:00
|
|
|
nextEq, nextAmp := strings.Index(qs, "="), strings.Index(qs, "&")
|
2020-01-12 02:40:03 +08:00
|
|
|
ampIsNext := nextAmp >= 0 && (nextAmp < nextEq || nextEq < 0)
|
|
|
|
end := len(qs) // assume no delimiter remains...
|
|
|
|
if ampIsNext {
|
|
|
|
end = nextAmp // ...unless ampersand is first...
|
|
|
|
} else if nextEq >= 0 && (nextEq < nextAmp || nextAmp < 0) {
|
|
|
|
end = nextEq // ...or unless equal is first.
|
2020-01-11 07:59:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// consume the component and write the result
|
|
|
|
comp := qs[:end]
|
|
|
|
comp, _ = repl.ReplaceFunc(comp, func(name, val string) (string, error) {
|
2020-01-12 02:40:03 +08:00
|
|
|
if name == "http.request.uri.query" && wroteVal {
|
2020-01-11 07:59:57 +08:00
|
|
|
return val, nil // already escaped
|
|
|
|
}
|
|
|
|
return url.QueryEscape(val), nil
|
|
|
|
})
|
|
|
|
if end < len(qs) {
|
|
|
|
end++ // consume delimiter
|
|
|
|
}
|
|
|
|
qs = qs[end:]
|
|
|
|
|
2020-01-12 02:40:03 +08:00
|
|
|
// if previous iteration wrote a value,
|
|
|
|
// that means we are writing a key
|
|
|
|
if wroteVal {
|
2020-01-16 02:44:21 +08:00
|
|
|
if sb.Len() > 0 && len(comp) > 0 {
|
2020-01-12 02:40:03 +08:00
|
|
|
sb.WriteRune('&')
|
|
|
|
}
|
|
|
|
} else {
|
2020-01-11 07:59:57 +08:00
|
|
|
sb.WriteRune('=')
|
|
|
|
}
|
|
|
|
sb.WriteString(comp)
|
2020-01-12 02:40:03 +08:00
|
|
|
|
|
|
|
// remember for the next iteration that we just wrote a value,
|
|
|
|
// which means the next iteration MUST write a key
|
|
|
|
wroteVal = ampIsNext
|
2020-01-11 07:59:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
2019-12-13 05:32:35 +08:00
|
|
|
// replacer describes a simple and fast substring replacement.
|
|
|
|
type replacer struct {
|
|
|
|
// The substring to find. Supports placeholders.
|
|
|
|
Find string `json:"find,omitempty"`
|
|
|
|
|
|
|
|
// The substring to replace. Supports placeholders.
|
|
|
|
Replace string `json:"replace,omitempty"`
|
|
|
|
|
|
|
|
// Maximum number of replacements per string.
|
|
|
|
// Set to <= 0 for no limit (default).
|
|
|
|
Limit int `json:"limit,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// do performs the replacement on r and returns true if any changes were made.
|
2019-12-30 04:12:52 +08:00
|
|
|
func (rep replacer) do(r *http.Request, repl *caddy.Replacer) bool {
|
2019-12-13 05:32:35 +08:00
|
|
|
if rep.Find == "" || rep.Replace == "" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
lim := rep.Limit
|
|
|
|
if lim == 0 {
|
|
|
|
lim = -1
|
|
|
|
}
|
|
|
|
|
|
|
|
find := repl.ReplaceAll(rep.Find, "")
|
|
|
|
replace := repl.ReplaceAll(rep.Replace, "")
|
|
|
|
|
|
|
|
oldPath := r.URL.Path
|
|
|
|
oldQuery := r.URL.RawQuery
|
|
|
|
|
|
|
|
r.URL.Path = strings.Replace(oldPath, find, replace, lim)
|
|
|
|
r.URL.RawQuery = strings.Replace(oldQuery, find, replace, lim)
|
|
|
|
|
|
|
|
return r.URL.Path != oldPath && r.URL.RawQuery != oldQuery
|
2019-05-21 13:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Interface guard
|
|
|
|
var _ caddyhttp.MiddlewareHandler = (*Rewrite)(nil)
|