2015-03-29 06:50:42 +08:00
|
|
|
// Package log implements basic but useful request (access) logging middleware.
|
2015-01-30 13:05:21 +08:00
|
|
|
package log
|
2015-01-14 03:43:45 +08:00
|
|
|
|
|
|
|
import (
|
2015-06-13 00:21:19 +08:00
|
|
|
"fmt"
|
2015-01-14 03:43:45 +08:00
|
|
|
"log"
|
|
|
|
"net/http"
|
2015-01-30 13:05:21 +08:00
|
|
|
|
|
|
|
"github.com/mholt/caddy/middleware"
|
2015-01-14 03:43:45 +08:00
|
|
|
)
|
|
|
|
|
2015-05-25 10:52:34 +08:00
|
|
|
// Logger is a basic request logging middleware.
|
2015-05-04 20:53:54 +08:00
|
|
|
type Logger struct {
|
2015-06-16 00:17:09 +08:00
|
|
|
Next middleware.Handler
|
|
|
|
Rules []Rule
|
|
|
|
ErrorFunc func(http.ResponseWriter, *http.Request, int) // failover error handler
|
2015-03-29 06:50:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l Logger) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
|
|
|
|
for _, rule := range l.Rules {
|
|
|
|
if middleware.Path(r.URL.Path).Matches(rule.PathScope) {
|
|
|
|
responseRecorder := middleware.NewResponseRecorder(w)
|
2015-04-03 13:30:54 +08:00
|
|
|
status, err := l.Next.ServeHTTP(responseRecorder, r)
|
2015-06-13 00:21:19 +08:00
|
|
|
if status >= 400 {
|
2015-06-16 00:17:09 +08:00
|
|
|
// There was an error up the chain, but no response has been written yet.
|
|
|
|
// The error must be handled here so the log entry will record the response size.
|
|
|
|
if l.ErrorFunc != nil {
|
|
|
|
l.ErrorFunc(responseRecorder, r, status)
|
|
|
|
} else {
|
|
|
|
// Default failover error handler
|
|
|
|
responseRecorder.WriteHeader(status)
|
|
|
|
fmt.Fprintf(responseRecorder, "%d %s", status, http.StatusText(status))
|
|
|
|
}
|
2015-06-13 00:21:19 +08:00
|
|
|
status = 0
|
|
|
|
}
|
2015-03-29 06:50:42 +08:00
|
|
|
rep := middleware.NewReplacer(r, responseRecorder)
|
|
|
|
rule.Log.Println(rep.Replace(rule.Format))
|
|
|
|
return status, err
|
2015-01-14 03:43:45 +08:00
|
|
|
}
|
|
|
|
}
|
2015-04-03 13:30:54 +08:00
|
|
|
return l.Next.ServeHTTP(w, r)
|
2015-03-29 06:50:42 +08:00
|
|
|
}
|
2015-01-14 03:43:45 +08:00
|
|
|
|
2015-05-25 10:52:34 +08:00
|
|
|
// Rule configures the logging middleware.
|
|
|
|
type Rule struct {
|
2015-03-29 06:50:42 +08:00
|
|
|
PathScope string
|
|
|
|
OutputFile string
|
|
|
|
Format string
|
|
|
|
Log *log.Logger
|
2015-01-14 03:43:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2015-05-04 20:53:54 +08:00
|
|
|
DefaultLogFilename = "access.log"
|
|
|
|
CommonLogFormat = `{remote} ` + middleware.EmptyStringReplacer + ` [{when}] "{method} {uri} {proto}" {status} {size}`
|
|
|
|
CombinedLogFormat = CommonLogFormat + ` "{>Referer}" "{>User-Agent}"`
|
|
|
|
DefaultLogFormat = CommonLogFormat
|
2015-01-14 03:43:45 +08:00
|
|
|
)
|