/*
 * Copyright (c) 2024 Huawei Technologies Co., Ltd.
 * openFuyao is licensed under Mulan PSL v2.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 *          http://license.coscl.org.cn/MulanPSL2
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
 * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PSL v2 for more details.
 */

// Package tools provides a set of utilities for logging configurations and operations.
// It utilizes the zap logging library to configure and manage log outputs efficiently.
// This package supports different log output modes including console, file, and a combination of both.
// It includes configuration setup for logging levels, formats, and output destinations using
// the lumberjack library for log file rotation and management.
//
// The logging operations are categorized by severity levels and offer multiple formats and
// methods to accommodate common logging practices, such as structured and unstructured logging.
// Convenience methods for logging at various levels (e.g., Debug, LogInfo, LogWarn, LogError) are provided,
// along with capabilities for adding structured context, flushing log buffers, and configuring
// log output behaviors.
//
// Usage of this package involves setting up a LogConfig with desired settings and obtaining
// a logger instance through which all logging operations are performed.
//
// This package is designed to be easy to integrate and use within applications that require robust
// logging capabilities with minimal setup.
package tools

import (
	"fmt"
	"net/http"
	"os"
	"path/filepath"
	"strings"

	"go.uber.org/zap"
	"go.uber.org/zap/zapcore"
	"gopkg.in/natefinch/lumberjack.v2"
)

const (
	defaultLogPath = "/var/log/logging-operator"
)

// Logger is a globally available *zap.SugaredLogger instance
var Logger *zap.SugaredLogger

var logLevel = map[string]zapcore.Level{
	"debug": zapcore.DebugLevel,
	"info":  zapcore.InfoLevel,
	"warn":  zapcore.WarnLevel,
	"error": zapcore.ErrorLevel,
}

// LogConfig defines the configuration settings for the logging system.
type LogConfig struct {
	Level       string // - Level specifies the minimum level of logs to output.
	EncoderType string // - EncoderType determines the log output format (e.g., json or console).
	Path        string // - Path and FileName define where logs are stored on the file system.
	FileName    string // - Path and FileName define where logs are stored on the file system.
	MaxSize     int    // - MaxSize, MaxBackups, and MaxAge control log rotation behavior.
	MaxBackups  int    // - MaxSize, MaxBackups, and MaxAge control log rotation behavior.
	MaxAge      int    // - MaxSize, MaxBackups, and MaxAge control log rotation behavior.
	LocalTime   bool   // - LocalTime indicates whether to use the local time for log timestamps.
	Compress    bool   // - Compress determines whether to compress rotated log files.
	OutMod      string // - OutMod defines the output mode (e.g., file, console, or both).
}

func init() {

	fmt.Print("The logging backend started running.")
	conf := getDefaultConf()
	Logger = GetLogger(conf)
}

func getDefaultConf() *LogConfig {
	var defaultConf = &LogConfig{
		Level:       "info",
		EncoderType: "console",
		Path:        defaultLogPath,
		FileName:    "logging-operator.log",
		MaxSize:     20,
		MaxBackups:  0,
		MaxAge:      7,
		LocalTime:   false,
		Compress:    true,
		OutMod:      "console",
	}
	exePath, err := os.Executable()
	if err != nil {
		return defaultConf
	}
	// 获取运行文件名称,作为/var/log目录下的子目录
	serviceName := strings.TrimSuffix(filepath.Base(exePath), filepath.Ext(filepath.Base(exePath)))
	defaultConf.Path = filepath.Join(defaultLogPath, serviceName)
	return defaultConf
}

// GetLogger initializes and returns a new instance of zap.SugaredLogger based on the provided LogConfig.
func GetLogger(conf *LogConfig) *zap.SugaredLogger {
	writeSyncer := getLogWriter(conf)
	encoder := getEncoder(conf)
	level, ok := logLevel[strings.ToLower(conf.Level)]
	if !ok {
		level = logLevel["info"]
	}
	core := zapcore.NewCore(encoder, writeSyncer, level)
	logger := zap.New(core, zap.AddCaller(), zap.AddCallerSkip(1))
	return logger.Sugar()
}

// 获取编码器,NewJSONEncoder()输出json格式,NewConsoleEncoder()输出普通文本格式
func getEncoder(conf *LogConfig) zapcore.Encoder {
	encoderConfig := zap.NewProductionEncoderConfig()
	// 指定时间格式 for example: 2021-09-11t20:05:54.852+0800
	encoderConfig.EncodeTime = zapcore.ISO8601TimeEncoder
	// 按级别显示不同颜色,不需要的话取值zapcore.CapitalLevelEncoder就可以了
	encoderConfig.EncodeLevel = zapcore.CapitalLevelEncoder
	// NewJSONEncoder()输出json格式,NewConsoleEncoder()输出普通文本格式
	if strings.ToLower(conf.EncoderType) == "json" {
		return zapcore.NewJSONEncoder(encoderConfig)
	}
	return zapcore.NewConsoleEncoder(encoderConfig)
}

func getLogWriter(conf *LogConfig) zapcore.WriteSyncer {
	switch conf.OutMod {
	case "console":
		return zapcore.AddSync(os.Stdout)
	case "file":
		return zapcore.AddSync(createLumberjackLogger(conf))
	case "both":
		return zapcore.NewMultiWriteSyncer(zapcore.AddSync(createLumberjackLogger(conf)), zapcore.AddSync(os.Stdout))
	default:
		return zapcore.AddSync(os.Stdout)
	}
}

func createLumberjackLogger(conf *LogConfig) *lumberjack.Logger {
	return &lumberjack.Logger{
		Filename:   filepath.Join(conf.Path, conf.FileName),
		MaxSize:    conf.MaxSize,
		MaxBackups: conf.MaxBackups,
		MaxAge:     conf.MaxAge,
		LocalTime:  conf.LocalTime,
		Compress:   conf.Compress,
	}
}

// HandleError handles errors by logging and responding with the appropriate HTTP status code and error message.
func HandleError(response http.ResponseWriter, statusCode int, err error) {
	errorMessage := fmt.Sprintf("Error occurred: %v", err)
	// Log the error
	LogError(errorMessage)
	// Respond with error message and status code
	response.WriteHeader(statusCode)
	code, err := response.Write([]byte(errorMessage))
	if err != nil {
		errorMessage := fmt.Sprintf("Failed to write entity: %v", err)
		LogError(errorMessage)
	}
	errorMessage = fmt.Sprintf("Error code %v", code)
	LogError(errorMessage)
}

// AddContext adds a variadic number of fields to the logging context. It accepts a mix of strongly-typed Field objects
// and loosely-typed key-value pairs.
func AddContext(args ...interface{}) *zap.SugaredLogger {
	return Logger.With(args...)
}

// LogDebug writes messages at DebugLevel, inserting spaces between arguments when neither is a string.
func LogDebug(args ...interface{}) {
	Logger.Debug(args...)
}

// LogInfo logs the provided arguments at [].
// Spaces are added between arguments when neither is a string.
func LogInfo(args ...interface{}) {
	Logger.Info(args...)
}

// LogError logs the provided arguments at [ErrorLevel].
// Spaces are added between arguments when neither is a string.
func LogError(args ...interface{}) {
	Logger.Error(args...)
}