2019-04-01 10:41:29 +08:00
|
|
|
package caddylog
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"bitbucket.org/lightcodelabs/caddy2"
|
|
|
|
"bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
caddy2.RegisterModule(caddy2.Module{
|
|
|
|
Name: "http.middleware.log",
|
2019-05-22 04:22:21 +08:00
|
|
|
New: func() interface{} { return new(Log) },
|
2019-04-01 10:41:29 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log implements a simple logging middleware.
|
|
|
|
type Log struct {
|
|
|
|
Filename string
|
2019-04-08 14:00:14 +08:00
|
|
|
counter int
|
2019-04-01 10:41:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l *Log) ServeHTTP(w http.ResponseWriter, r *http.Request, next caddyhttp.Handler) error {
|
|
|
|
start := time.Now()
|
|
|
|
|
2019-04-12 10:42:55 +08:00
|
|
|
// TODO: An example of returning errors
|
|
|
|
// return caddyhttp.Error(http.StatusBadRequest, fmt.Errorf("this is a basic error"))
|
|
|
|
// return caddyhttp.Error(http.StatusBadGateway, caddyhttp.HandlerError{
|
|
|
|
// Err: fmt.Errorf("this is a detailed error"),
|
|
|
|
// Message: "We had trouble doing the thing.",
|
|
|
|
// Recommendations: []string{
|
|
|
|
// "Try reconnecting the gizbop.",
|
|
|
|
// "Turn off the Internet.",
|
|
|
|
// },
|
|
|
|
// })
|
|
|
|
|
2019-04-01 10:41:29 +08:00
|
|
|
if err := next.ServeHTTP(w, r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-04-08 14:00:14 +08:00
|
|
|
log.Println("latency:", time.Now().Sub(start), l.counter)
|
2019-04-01 10:41:29 +08:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Interface guard
|
2019-04-26 03:54:48 +08:00
|
|
|
var _ caddyhttp.MiddlewareHandler = (*Log)(nil)
|