0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00
caddy/middleware/log/log.go

50 lines
1.3 KiB
Go
Raw Normal View History

2015-03-28 17:50:42 -05:00
// Package log implements basic but useful request (access) logging middleware.
package log
2015-01-13 14:43:45 -05:00
import (
"fmt"
2015-01-13 14:43:45 -05:00
"log"
"net/http"
"github.com/mholt/caddy/middleware"
2015-01-13 14:43:45 -05:00
)
2015-05-24 21:52:34 -05:00
// Logger is a basic request logging middleware.
type Logger struct {
Next middleware.Handler
2015-05-24 21:52:34 -05:00
Rules []Rule
2015-03-28 17:50:42 -05: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)
status, err := l.Next.ServeHTTP(responseRecorder, r)
if status >= 400 {
responseRecorder.WriteHeader(status)
fmt.Fprintf(responseRecorder, "%d %s", status, http.StatusText(status))
status = 0
}
2015-03-28 17:50:42 -05:00
rep := middleware.NewReplacer(r, responseRecorder)
rule.Log.Println(rep.Replace(rule.Format))
return status, err
2015-01-13 14:43:45 -05:00
}
}
return l.Next.ServeHTTP(w, r)
2015-03-28 17:50:42 -05:00
}
2015-01-13 14:43:45 -05:00
2015-05-24 21:52:34 -05:00
// Rule configures the logging middleware.
type Rule struct {
2015-03-28 17:50:42 -05:00
PathScope string
OutputFile string
Format string
Log *log.Logger
2015-01-13 14:43:45 -05:00
}
const (
DefaultLogFilename = "access.log"
CommonLogFormat = `{remote} ` + middleware.EmptyStringReplacer + ` [{when}] "{method} {uri} {proto}" {status} {size}`
CombinedLogFormat = CommonLogFormat + ` "{>Referer}" "{>User-Agent}"`
DefaultLogFormat = CommonLogFormat
2015-01-13 14:43:45 -05:00
)