caddy/middleware/replacer.go

145 lines
3.8 KiB
Go
Raw Normal View History

2015-01-14 03:43:45 +08:00
package middleware
import (
"net"
2015-01-14 03:43:45 +08:00
"net/http"
"net/url"
"path"
2015-01-14 03:43:45 +08:00
"strconv"
"strings"
"time"
)
2015-05-04 03:43:50 +08:00
// Replacer is a type which can replace placeholder
2015-01-14 03:43:45 +08:00
// substrings in a string with actual values from a
// http.Request and responseRecorder. Always use
2015-01-30 13:06:53 +08:00
// NewReplacer to get one of these.
2015-05-04 03:43:50 +08:00
type Replacer interface {
Replace(string) string
2015-12-31 03:42:03 +08:00
Set(key, value string)
2015-05-04 03:43:50 +08:00
}
type replacer struct {
replacements map[string]string
emptyValue string
}
2015-01-14 03:43:45 +08:00
// NewReplacer makes a new replacer based on r and rr.
// Do not create a new replacer until r and rr have all
2015-01-14 03:43:45 +08:00
// the needed values, because this function copies those
// values into the replacer. rr may be nil if it is not
// available. emptyValue should be the string that is used
// in place of empty string (can still be empty string).
func NewReplacer(r *http.Request, rr *responseRecorder, emptyValue string) Replacer {
2015-01-14 03:43:45 +08:00
rep := replacer{
replacements: map[string]string{
"{method}": r.Method,
"{scheme}": func() string {
if r.TLS != nil {
return "https"
}
return "http"
}(),
"{host}": r.Host,
"{path}": r.URL.Path,
"{path_escaped}": url.QueryEscape(r.URL.Path),
"{query}": r.URL.RawQuery,
"{query_escaped}": url.QueryEscape(r.URL.RawQuery),
"{fragment}": r.URL.Fragment,
"{proto}": r.Proto,
"{remote}": func() string {
if fwdFor := r.Header.Get("X-Forwarded-For"); fwdFor != "" {
return fwdFor
}
host, _, err := net.SplitHostPort(r.RemoteAddr)
if err != nil {
return r.RemoteAddr
}
return host
}(),
"{port}": func() string {
_, port, err := net.SplitHostPort(r.RemoteAddr)
if err != nil {
return ""
}
return port
}(),
"{uri}": r.URL.RequestURI(),
"{uri_escaped}": url.QueryEscape(r.URL.RequestURI()),
"{when}": func() string {
return time.Now().Format(timeFormat)
}(),
"{file}": func() string {
_, file := path.Split(r.URL.Path)
return file
}(),
"{dir}": func() string {
dir, _ := path.Split(r.URL.Path)
return dir
}(),
},
emptyValue: emptyValue,
2015-05-04 03:38:06 +08:00
}
if rr != nil {
rep.replacements["{status}"] = strconv.Itoa(rr.status)
rep.replacements["{size}"] = strconv.Itoa(rr.size)
rep.replacements["{latency}"] = time.Since(rr.start).String()
2015-01-14 03:43:45 +08:00
}
// Header placeholders (case-insensitive)
for header, values := range r.Header {
rep.replacements[headerReplacer+strings.ToLower(header)+"}"] = strings.Join(values, ",")
2015-01-14 03:43:45 +08:00
}
return rep
}
// Replace performs a replacement of values on s and returns
2015-01-14 03:43:45 +08:00
// the string with the replaced values.
2015-01-30 13:06:53 +08:00
func (r replacer) Replace(s string) string {
// Header replacements - these are case-insensitive, so we can't just use strings.Replace()
startPos := strings.Index(s, headerReplacer)
for startPos > -1 {
// carefully find end of placeholder
endOffset := strings.Index(s[startPos+1:], "}")
if endOffset == -1 {
startPos = strings.Index(s[startPos+len(headerReplacer):], headerReplacer)
continue
}
endPos := startPos + len(headerReplacer) + endOffset
// look for replacement, case-insensitive
placeholder := strings.ToLower(s[startPos:endPos])
replacement := r.replacements[placeholder]
2015-01-14 03:43:45 +08:00
if replacement == "" {
replacement = r.emptyValue
2015-01-14 03:43:45 +08:00
}
// do the replacement manually
s = s[:startPos] + replacement + s[endPos:]
// move to next one
startPos = strings.Index(s[endOffset:], headerReplacer)
2015-01-14 03:43:45 +08:00
}
// Regular replacements - these are easier because they're case-sensitive
for placeholder, replacement := range r.replacements {
if replacement == "" {
replacement = r.emptyValue
2015-01-14 03:43:45 +08:00
}
s = strings.Replace(s, placeholder, replacement, -1)
2015-01-14 03:43:45 +08:00
}
2015-01-14 03:43:45 +08:00
return s
}
2015-12-31 03:42:03 +08:00
// Set sets key to value in the replacements map.
func (r replacer) Set(key, value string) {
r.replacements["{"+key+"}"] = value
}
2015-01-14 03:43:45 +08:00
const (
timeFormat = "02/Jan/2006:15:04:05 -0700"
headerReplacer = "{>"
2015-01-14 03:43:45 +08:00
)