2015-01-14 03:43:45 +08:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
2015-03-27 13:39:36 +08:00
|
|
|
"net"
|
2015-01-14 03:43:45 +08:00
|
|
|
"net/http"
|
|
|
|
"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-07-25 00:11:34 +08:00
|
|
|
type replacer struct {
|
|
|
|
replacements map[string]string
|
|
|
|
emptyValue string
|
|
|
|
}
|
2015-01-14 03:43:45 +08:00
|
|
|
|
2015-03-27 13:39:36 +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
|
2015-08-05 08:32:27 +08:00
|
|
|
// 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).
|
2015-07-25 00:11:34 +08:00
|
|
|
func NewReplacer(r *http.Request, rr *responseRecorder, emptyValue string) Replacer {
|
2015-01-14 03:43:45 +08:00
|
|
|
rep := replacer{
|
2015-07-25 00:11:34 +08:00
|
|
|
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,
|
|
|
|
"{query}": 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(),
|
|
|
|
"{when}": func() string {
|
|
|
|
return time.Now().Format(timeFormat)
|
|
|
|
}(),
|
|
|
|
},
|
|
|
|
emptyValue: emptyValue,
|
2015-05-04 03:38:06 +08:00
|
|
|
}
|
|
|
|
if rr != nil {
|
2015-07-25 00:11:34 +08:00
|
|
|
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
|
|
|
|
for header, val := range r.Header {
|
2015-07-25 00:11:34 +08:00
|
|
|
rep.replacements[headerReplacer+header+"}"] = strings.Join(val, ",")
|
2015-01-14 03:43:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rep
|
|
|
|
}
|
|
|
|
|
2015-01-30 13:52:21 +08:00
|
|
|
// 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 {
|
2015-07-25 00:11:34 +08:00
|
|
|
for placeholder, replacement := range r.replacements {
|
2015-01-14 03:43:45 +08:00
|
|
|
if replacement == "" {
|
2015-07-25 00:11:34 +08:00
|
|
|
replacement = r.emptyValue
|
2015-01-14 03:43:45 +08:00
|
|
|
}
|
|
|
|
s = strings.Replace(s, placeholder, replacement, -1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replace any header placeholders that weren't found
|
|
|
|
for strings.Contains(s, headerReplacer) {
|
|
|
|
idxStart := strings.Index(s, headerReplacer)
|
|
|
|
endOffset := idxStart + len(headerReplacer)
|
|
|
|
idxEnd := strings.Index(s[endOffset:], "}")
|
|
|
|
if idxEnd > -1 {
|
2015-07-25 00:11:34 +08:00
|
|
|
s = s[:idxStart] + r.emptyValue + s[endOffset+idxEnd+1:]
|
2015-01-14 03:43:45 +08:00
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2015-07-25 00:11:34 +08:00
|
|
|
timeFormat = "02/Jan/2006:15:04:05 -0700"
|
|
|
|
headerReplacer = "{>"
|
2015-01-14 03:43:45 +08:00
|
|
|
)
|