2014-08-29 21:49:50 +04: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-18 03:42:34 +04:00
|
|
|
package gin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"time"
|
2015-03-04 07:14:10 +03:00
|
|
|
|
|
|
|
"github.com/mattn/go-colorable"
|
2014-06-18 03:42:34 +04:00
|
|
|
)
|
|
|
|
|
2014-10-09 03:40:42 +04: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-30 05:59:21 +04:00
|
|
|
func ErrorLogger() HandlerFunc {
|
2014-07-08 02:16:41 +04:00
|
|
|
return ErrorLoggerT(ErrorTypeAll)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ErrorLoggerT(typ uint32) HandlerFunc {
|
2014-06-30 05:59:21 +04:00
|
|
|
return func(c *Context) {
|
|
|
|
c.Next()
|
2014-06-30 06:04:45 +04:00
|
|
|
|
2014-07-08 02:16:41 +04:00
|
|
|
errs := c.Errors.ByType(typ)
|
|
|
|
if len(errs) > 0 {
|
2014-06-30 06:04:45 +04:00
|
|
|
// -1 status code = do not change current one
|
|
|
|
c.JSON(-1, c.Errors)
|
|
|
|
}
|
2014-06-30 05:59:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-18 03:42:34 +04:00
|
|
|
func Logger() HandlerFunc {
|
2015-03-04 07:14:10 +03:00
|
|
|
stdlogger := log.New(colorable.NewColorableStdout(), "", 0)
|
2014-07-06 20:26:40 +04:00
|
|
|
//errlogger := log.New(os.Stderr, "", 0)
|
|
|
|
|
2014-06-18 03:42:34 +04:00
|
|
|
return func(c *Context) {
|
|
|
|
// Start timer
|
2014-07-04 02:25:12 +04:00
|
|
|
start := time.Now()
|
2014-06-18 03:42:34 +04:00
|
|
|
|
|
|
|
// Process request
|
|
|
|
c.Next()
|
|
|
|
|
2014-10-09 03:40:42 +04:00
|
|
|
// Stop timer
|
2014-07-07 05:04:06 +04:00
|
|
|
end := time.Now()
|
|
|
|
latency := end.Sub(start)
|
2014-10-09 03:40:42 +04:00
|
|
|
|
|
|
|
clientIP := c.ClientIP()
|
|
|
|
method := c.Request.Method
|
|
|
|
statusCode := c.Writer.Status()
|
|
|
|
statusColor := colorForStatus(statusCode)
|
|
|
|
methodColor := colorForMethod(method)
|
|
|
|
|
2014-09-13 17:51:29 +04:00
|
|
|
stdlogger.Printf("[GIN] %v |%s %3d %s| %12v | %s |%s %s %-7s %s\n%s",
|
2014-07-07 05:04:06 +04:00
|
|
|
end.Format("2006/01/02 - 15:04:05"),
|
2014-10-09 03:40:42 +04:00
|
|
|
statusColor, statusCode, reset,
|
2014-07-04 02:25:12 +04:00
|
|
|
latency,
|
2014-10-09 03:40:42 +04:00
|
|
|
clientIP,
|
2014-09-13 17:51:29 +04:00
|
|
|
methodColor, reset, method,
|
2014-09-05 11:53:53 +04:00
|
|
|
c.Request.URL.Path,
|
2014-07-13 02:18:33 +04:00
|
|
|
c.Errors.String(),
|
2014-07-04 02:25:12 +04:00
|
|
|
)
|
2014-06-18 03:42:34 +04:00
|
|
|
}
|
|
|
|
}
|
2014-10-09 03:40:42 +04:00
|
|
|
|
|
|
|
func colorForStatus(code int) string {
|
|
|
|
switch {
|
|
|
|
case code >= 200 && code <= 299:
|
|
|
|
return green
|
|
|
|
case code >= 300 && code <= 399:
|
|
|
|
return white
|
|
|
|
case code >= 400 && code <= 499:
|
|
|
|
return yellow
|
|
|
|
default:
|
|
|
|
return red
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func colorForMethod(method string) string {
|
|
|
|
switch {
|
|
|
|
case method == "GET":
|
|
|
|
return blue
|
|
|
|
case method == "POST":
|
|
|
|
return cyan
|
|
|
|
case method == "PUT":
|
|
|
|
return yellow
|
|
|
|
case method == "DELETE":
|
|
|
|
return red
|
|
|
|
case method == "PATCH":
|
|
|
|
return green
|
|
|
|
case method == "HEAD":
|
|
|
|
return magenta
|
|
|
|
case method == "OPTIONS":
|
|
|
|
return white
|
|
|
|
default:
|
|
|
|
return reset
|
|
|
|
}
|
|
|
|
}
|