/vendor/github.com/jpillora/requestlog/wrap.go

https://bitbucket.org/admknight/insane-torrent · Go · 88 lines · 76 code · 12 blank · 0 comment · 12 complexity · 84594a2542009d2049c2f618a93457ee MD5 · raw file

  1. package requestlog
  2. import (
  3. "io"
  4. "net/http"
  5. "os"
  6. "regexp"
  7. "text/template"
  8. "time"
  9. "github.com/andrew-d/go-termutil"
  10. "github.com/jpillora/ansi"
  11. "github.com/jpillora/sizestr"
  12. )
  13. func init() {
  14. sizestr.LowerCase()
  15. }
  16. type Colors struct {
  17. Grey, Green, Cyan, Yellow, Red, Reset string
  18. }
  19. var basicColors = &Colors{string(ansi.ResetBytes), string(ansi.GreenBytes), string(ansi.CyanBytes), string(ansi.YellowBytes), string(ansi.YellowBytes), string(ansi.ResetBytes)}
  20. var noColors = &Colors{} //no colors
  21. type Options struct {
  22. Writer io.Writer
  23. TimeFormat string
  24. Format string
  25. formatTmpl *template.Template
  26. Colors *Colors
  27. Filter func(r *http.Request, code int, duration time.Duration, size int64) bool
  28. }
  29. var DefaultOptions = Options{
  30. Writer: os.Stdout,
  31. TimeFormat: "2006/01/02 15:04:05.000",
  32. Format: `{{ if .Timestamp }}{{ .Timestamp }} {{end}}` +
  33. `{{ .Method }} {{ .Path }} {{ .CodeColor }}{{ .Code }}{{ .Reset }} ` +
  34. `{{ .Duration }}{{ if .Size }} {{ .Size }}{{end}}` +
  35. `{{ if .IP }} ({{ .IP }}){{end}}` + "\n",
  36. Colors: defaultColors(),
  37. }
  38. func defaultColors() *Colors {
  39. sizestr.ToggleCase()
  40. if termutil.Isatty(os.Stdout.Fd()) {
  41. return basicColors
  42. } else {
  43. return noColors
  44. }
  45. }
  46. func Wrap(next http.Handler) http.Handler {
  47. return WrapWith(next, Options{})
  48. }
  49. func WrapWith(next http.Handler, opts Options) http.Handler {
  50. if opts.Writer == nil {
  51. opts.Writer = DefaultOptions.Writer
  52. }
  53. if opts.TimeFormat == "" {
  54. opts.TimeFormat = DefaultOptions.TimeFormat
  55. }
  56. if opts.Format == "" {
  57. opts.Format = DefaultOptions.Format
  58. }
  59. if opts.Colors == nil {
  60. opts.Colors = DefaultOptions.Colors
  61. }
  62. var err error
  63. opts.formatTmpl, err = template.New("format").Parse(opts.Format)
  64. if err != nil {
  65. panic(err)
  66. }
  67. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  68. m := monitorWriter(w, r, &opts)
  69. next.ServeHTTP(m, r)
  70. m.Log()
  71. })
  72. }
  73. var fmtDurationRe = regexp.MustCompile(`\.\d+`)
  74. func fmtDuration(t time.Duration) string {
  75. return fmtDurationRe.ReplaceAllString(t.String(), "")
  76. }