gin/logger.go

106 lines
2.5 KiB
Go
Raw Normal View History

2014-08-29 17:49:50 +00:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
2014-06-17 23:42:34 +00:00
package gin
import (
"log"
"os"
2014-06-17 23:42:34 +00:00
"time"
)
2014-06-30 01:59:21 +00:00
func ErrorLogger() HandlerFunc {
2014-07-07 22:16:41 +00:00
return ErrorLoggerT(ErrorTypeAll)
}
func ErrorLoggerT(typ uint32) HandlerFunc {
2014-06-30 01:59:21 +00:00
return func(c *Context) {
c.Next()
2014-07-07 22:16:41 +00:00
errs := c.Errors.ByType(typ)
if len(errs) > 0 {
// -1 status code = do not change current one
c.JSON(-1, c.Errors)
}
2014-06-30 01:59:21 +00:00
}
}
var (
green = string([]byte{27, 91, 57, 55, 59, 52, 50, 109})
white = string([]byte{27, 91, 57, 48, 59, 52, 55, 109})
yellow = string([]byte{27, 91, 57, 55, 59, 52, 51, 109})
red = string([]byte{27, 91, 57, 55, 59, 52, 49, 109})
blue = string([]byte{27, 91, 57, 55, 59, 52, 52, 109})
magenta = string([]byte{27, 91, 57, 55, 59, 52, 53, 109})
cyan = string([]byte{27, 91, 57, 55, 59, 52, 54, 109})
reset = string([]byte{27, 91, 48, 109})
)
2014-06-17 23:42:34 +00:00
func Logger() HandlerFunc {
2014-07-06 16:26:40 +00:00
stdlogger := log.New(os.Stdout, "", 0)
//errlogger := log.New(os.Stderr, "", 0)
2014-06-17 23:42:34 +00:00
return func(c *Context) {
// Start timer
start := time.Now()
2014-06-17 23:42:34 +00:00
// Process request
c.Next()
2014-07-06 16:26:40 +00:00
// save the IP of the requester
requester := c.Request.Header.Get("X-Real-IP")
2014-07-06 16:26:40 +00:00
// if the requester-header is empty, check the forwarded-header
if len(requester) == 0 {
requester = c.Request.Header.Get("X-Forwarded-For")
2014-07-06 16:26:40 +00:00
}
// if the requester is still empty, use the hard-coded address from the socket
if len(requester) == 0 {
requester = c.Request.RemoteAddr
2014-07-06 16:26:40 +00:00
}
var color string
code := c.Writer.Status()
switch {
case code >= 200 && code <= 299:
color = green
case code >= 300 && code <= 399:
color = white
case code >= 400 && code <= 499:
color = yellow
default:
color = red
}
var methodColor string
method := c.Request.Method
switch {
case method == "GET":
methodColor = blue
case method == "POST":
methodColor = cyan
case method == "PUT":
methodColor = yellow
case method == "DELETE":
methodColor = red
case method == "PATCH":
methodColor = green
case method == "HEAD":
methodColor = magenta
case method == "OPTIONS":
methodColor = white
}
2014-07-07 01:04:06 +00:00
end := time.Now()
latency := end.Sub(start)
stdlogger.Printf("[GIN] %v |%s %3d %s| %12v | %s |%s %s %-7s %s\n%s",
2014-07-07 01:04:06 +00:00
end.Format("2006/01/02 - 15:04:05"),
2014-07-08 12:07:59 +00:00
color, code, reset,
latency,
2014-07-06 16:26:40 +00:00
requester,
methodColor, reset, method,
c.Request.URL.Path,
c.Errors.String(),
)
2014-06-17 23:42:34 +00:00
}
}