File size: 11,418 Bytes
530729e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package logger
import (
"fmt"
"os"
"path/filepath"
"strconv"
"github.com/GoAdminGroup/go-admin/context"
"github.com/GoAdminGroup/go-admin/modules/trace"
"github.com/GoAdminGroup/go-admin/modules/utils"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"gopkg.in/natefinch/lumberjack.v2"
)
var (
defaultEncoderCfg = EncoderCfg{
TimeKey: "ts",
LevelKey: "level",
NameKey: "logger",
CallerKey: "caller",
MessageKey: "msg",
StacktraceKey: "stacktrace",
Level: "capitalColor",
Time: "ISO8601",
Duration: "seconds",
Caller: "short",
Encoding: "console",
}
defaultRotateCfg = RotateCfg{
MaxSize: 10,
MaxBackups: 5,
MaxAge: 30,
Compress: false,
}
logger = &Logger{
rotate: defaultRotateCfg,
encoder: defaultEncoderCfg,
Level: zapcore.InfoLevel,
}
infoLevelEnabler = zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl == zapcore.InfoLevel
})
errorLevelEnabler = zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl >= zapcore.ErrorLevel
})
accessLevelEnabler = zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl == zapcore.WarnLevel
})
)
func init() {
logger.Init()
}
type Logger struct {
logger *zap.Logger
sugaredLogger *zap.SugaredLogger
infoLogOff bool
errorLogOff bool
accessLogOff bool
accessAssetsLogOff bool
debug bool
sqlLogOpen bool
infoLogPath string
errorLogPath string
accessLogPath string
rotate RotateCfg
encoder EncoderCfg
Level zapcore.Level
}
type EncoderCfg struct {
TimeKey string
LevelKey string
NameKey string
CallerKey string
MessageKey string
StacktraceKey string
Level string
Time string
Duration string
Caller string
Encoding string
}
type RotateCfg struct {
MaxSize int
MaxBackups int
MaxAge int
Compress bool
}
func (l *Logger) Init() {
zapLogger := zap.New(zapcore.NewTee(
zapcore.NewCore(l.getEncoder(l.encoder.LevelKey), l.getLogWriter(l.infoLogPath), infoLevelEnabler),
zapcore.NewCore(l.getEncoder(l.encoder.LevelKey), l.getLogWriter(l.errorLogPath), errorLevelEnabler),
zapcore.NewCore(l.getEncoder(""), l.getLogWriter(l.accessLogPath), accessLevelEnabler),
), zap.AddCaller(), zap.AddCallerSkip(1), zap.AddStacktrace(errorLevelEnabler))
l.sugaredLogger = zapLogger.Sugar()
l.logger = zapLogger
}
func (l *Logger) getEncoder(levelKey string) zapcore.Encoder {
var (
timeEncoder = new(zapcore.TimeEncoder)
durationEncoder = new(zapcore.DurationEncoder)
callerEncoder = new(zapcore.CallerEncoder)
nameEncoder = new(zapcore.NameEncoder)
levelEncoder = new(zapcore.LevelEncoder)
)
_ = timeEncoder.UnmarshalText([]byte(l.encoder.Time))
_ = durationEncoder.UnmarshalText([]byte(l.encoder.Duration))
_ = callerEncoder.UnmarshalText([]byte(l.encoder.Caller))
_ = nameEncoder.UnmarshalText([]byte("full"))
_ = levelEncoder.UnmarshalText([]byte(l.encoder.Level))
encoderConfig := zapcore.EncoderConfig{
TimeKey: l.encoder.TimeKey,
LevelKey: levelKey,
NameKey: l.encoder.NameKey,
CallerKey: l.encoder.CallerKey,
MessageKey: l.encoder.MessageKey,
StacktraceKey: l.encoder.StacktraceKey,
LineEnding: zapcore.DefaultLineEnding,
EncodeLevel: *levelEncoder,
EncodeTime: *timeEncoder,
EncodeDuration: *durationEncoder,
EncodeCaller: *callerEncoder,
EncodeName: *nameEncoder,
}
return filterZapEncoder(l.encoder.Encoding, encoderConfig)
}
func (l *Logger) getLogWriter(path string) zapcore.WriteSyncer {
if path != "" {
lumberJackLogger := &lumberjack.Logger{
Filename: path,
MaxSize: l.rotate.MaxSize,
MaxBackups: l.rotate.MaxBackups,
MaxAge: l.rotate.MaxAge,
Compress: l.rotate.Compress,
}
if l.debug {
return zapcore.NewMultiWriteSyncer(zapcore.AddSync(os.Stdout), zapcore.AddSync(lumberJackLogger))
}
return zapcore.AddSync(lumberJackLogger)
}
return zapcore.AddSync(os.Stdout)
}
func (l *Logger) SetRotate(cfg RotateCfg) {
if cfg.MaxSize != 0 && cfg.MaxAge != 0 && cfg.MaxBackups != 0 {
l.rotate = cfg
}
}
func (l *Logger) SetEncoder(cfg EncoderCfg) {
cfg.TimeKey = utils.SetDefault(cfg.TimeKey, "", defaultEncoderCfg.TimeKey)
cfg.LevelKey = utils.SetDefault(cfg.LevelKey, "", defaultEncoderCfg.LevelKey)
cfg.NameKey = utils.SetDefault(cfg.NameKey, "", defaultEncoderCfg.NameKey)
cfg.CallerKey = utils.SetDefault(cfg.CallerKey, "", defaultEncoderCfg.CallerKey)
cfg.MessageKey = utils.SetDefault(cfg.MessageKey, "", defaultEncoderCfg.MessageKey)
cfg.StacktraceKey = utils.SetDefault(cfg.StacktraceKey, "", defaultEncoderCfg.StacktraceKey)
cfg.Level = utils.SetDefault(cfg.Level, "", defaultEncoderCfg.Level)
cfg.Time = utils.SetDefault(cfg.Time, "", defaultEncoderCfg.Time)
cfg.Duration = utils.SetDefault(cfg.Duration, "", defaultEncoderCfg.Duration)
cfg.Caller = utils.SetDefault(cfg.Caller, "", defaultEncoderCfg.Caller)
cfg.Encoding = utils.SetDefault(cfg.Encoding, "", defaultEncoderCfg.Encoding)
l.encoder = cfg
}
type Config struct {
InfoLogOff bool
ErrorLogOff bool
AccessLogOff bool
SqlLogOpen bool
InfoLogPath string
ErrorLogPath string
AccessLogPath string
AccessAssetsLogOff bool
Rotate RotateCfg
Encode EncoderCfg
Level int8
Debug bool
}
func InitWithConfig(cfg Config) {
logger.infoLogPath = cfg.InfoLogPath
logger.infoLogOff = cfg.InfoLogOff
logger.errorLogPath = cfg.ErrorLogPath
logger.errorLogOff = cfg.ErrorLogOff
logger.accessLogPath = cfg.AccessLogPath
logger.accessLogOff = cfg.AccessLogOff
logger.sqlLogOpen = cfg.SqlLogOpen
logger.accessAssetsLogOff = cfg.AccessAssetsLogOff
logger.debug = cfg.Debug
logger.SetRotate(cfg.Rotate)
logger.SetEncoder(cfg.Encode)
logger.Level = filterZapAtomicLevelByViper(cfg.Level)
logger.Init()
}
func SetRotate(cfg RotateCfg) {
logger.rotate = cfg
logger.Init()
}
// OpenSQLLog set the sqlLogOpen true.
func OpenSQLLog() {
logger.sqlLogOpen = true
}
// Debug print the debug message.
func Debug(info ...interface{}) {
if !logger.infoLogOff {
if logger.Level <= zapcore.DebugLevel {
logger.sugaredLogger.Info(info...)
}
}
}
// Debugf print the debug message.
func Debugf(template string, args ...interface{}) {
if !logger.infoLogOff && logger.Level <= zapcore.DebugLevel {
logger.sugaredLogger.Infof(template, args...)
}
}
// Info print the info message.
func Info(info ...interface{}) {
if !logger.infoLogOff && logger.Level <= zapcore.InfoLevel {
logger.sugaredLogger.Info(info...)
}
}
// InfoCtx print the info message with ctx.
func InfoCtx(ctx *context.Context, format string, args ...interface{}) {
if !logger.infoLogOff && logger.Level <= zapcore.InfoLevel {
logCtx(ctx, logger.logger.Info, format, args...)
}
}
type logFunc func(msg string, fields ...zapcore.Field)
func logCtx(ctx *context.Context, logFunc logFunc, format string, args ...interface{}) {
logFunc(fmt.Sprintf(format, args...), zap.String("traceID", trace.GetTraceID(ctx)))
}
// Info print the info message.
func Infof(template string, args ...interface{}) {
if !logger.infoLogOff && logger.Level <= zapcore.InfoLevel {
logger.sugaredLogger.Infof(template, args...)
}
}
// Warn print the warning message.
func Warn(info ...interface{}) {
if !logger.infoLogOff && logger.Level <= zapcore.WarnLevel {
logger.sugaredLogger.Warn(info...)
}
}
// WarnCtx print the warning message with ctx.
func WarnCtx(ctx *context.Context, format string, args ...interface{}) {
if !logger.infoLogOff && logger.Level <= zapcore.WarnLevel {
logCtx(ctx, logger.logger.Warn, format, args...)
}
}
// Warnf print the warning message.
func Warnf(template string, args ...interface{}) {
if !logger.infoLogOff && logger.Level <= zapcore.WarnLevel {
logger.sugaredLogger.Warnf(template, args...)
}
}
// Error print the error message.
func Error(err ...interface{}) {
if !logger.errorLogOff && logger.Level <= zapcore.ErrorLevel {
logger.sugaredLogger.Error(err...)
}
}
// ErrorCtx print the error message with ctx.
func ErrorCtx(ctx *context.Context, format string, args ...interface{}) {
if !logger.errorLogOff && logger.Level <= zapcore.ErrorLevel {
logCtx(ctx, logger.logger.Error, format, args...)
}
}
// Errorf print the error message.
func Errorf(template string, args ...interface{}) {
if !logger.errorLogOff && logger.Level <= zapcore.ErrorLevel {
logger.sugaredLogger.Errorf(template, args...)
}
}
// Fatal print the fatal message.
func Fatal(info ...interface{}) {
if !logger.errorLogOff && logger.Level <= zapcore.ErrorLevel {
logger.sugaredLogger.Fatal(info...)
}
}
// FatalCtx print the fatal message with ctx.
func FatalCtx(ctx *context.Context, format string, args ...interface{}) {
if !logger.errorLogOff && logger.Level <= zapcore.FatalLevel {
logCtx(ctx, logger.logger.Fatal, format, args...)
}
}
// Fatalf print the fatal message.
func Fatalf(template string, args ...interface{}) {
if !logger.errorLogOff && logger.Level <= zapcore.ErrorLevel {
logger.sugaredLogger.Fatalf(template, args...)
}
}
// Fatal print the panic message.
func Panic(info ...interface{}) {
logger.sugaredLogger.Panic(info...)
}
// PanicCtx print the panic message with ctx.
func PanicCtx(ctx *context.Context, format string, args ...interface{}) {
logCtx(ctx, logger.logger.Panic, format, args...)
}
// Panicf print the panic message.
func Panicf(template string, args ...interface{}) {
logger.sugaredLogger.Panicf(template, args...)
}
// Access print the access message.
func Access(ctx *context.Context) {
if !logger.accessLogOff && logger.Level <= zapcore.InfoLevel {
if logger.accessAssetsLogOff {
if filepath.Ext(ctx.Path()) == "" {
logger.logger.Info("[GoAdmin] access log",
zap.String("traceID", trace.GetTraceID(ctx)),
zap.String("statuscode", strconv.Itoa(ctx.Response.StatusCode)),
zap.String("method", string(ctx.Method())),
zap.String("path", ctx.Path()))
}
} else {
logger.logger.Info("[GoAdmin] access log",
zap.String("traceID", trace.GetTraceID(ctx)),
zap.String("statuscode", strconv.Itoa(ctx.Response.StatusCode)),
zap.String("method", string(ctx.Method())),
zap.String("path", ctx.Path()))
}
}
}
// LogSQL print the sql info message.
func LogSQL(statement string, args []interface{}) {
if !logger.infoLogOff && logger.sqlLogOpen && statement != "" {
if logger.Level <= zapcore.InfoLevel {
logger.sugaredLogger.With("statement", statement, "args", args).Info("[GoAdmin]")
}
}
}
func filterZapEncoder(encoding string, encoderConfig zapcore.EncoderConfig) zapcore.Encoder {
var encoder zapcore.Encoder
switch encoding {
default:
encoder = zapcore.NewConsoleEncoder(encoderConfig)
case "json":
encoder = zapcore.NewJSONEncoder(encoderConfig)
case "console":
encoder = zapcore.NewConsoleEncoder(encoderConfig)
}
return encoder
}
func filterZapAtomicLevelByViper(level int8) zapcore.Level {
var atomViper zapcore.Level
switch level {
default:
atomViper = zap.InfoLevel
case -1:
atomViper = zap.DebugLevel
case 0:
atomViper = zap.InfoLevel
case 1:
atomViper = zap.WarnLevel
case 2:
atomViper = zap.ErrorLevel
}
return atomViper
}
|