utils

package
v0.0.0-...-485fdd6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 13, 2024 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

Functions

func MakeDir

func MakeDir(fullPath string) error

func NewValidator

func NewValidator() *validator.Validate

Types

type Config

type Config struct {
	Mode           string `env:"MODE" envDefault:"dev"`
	Listen         string `env:"LISTEN" envDefault:":8080"`
	DataPath       string `env:"DATA_PATH" envDefault:"./data"`
	Log            LogConfig
	Storage        StorageConfig
	DatabaseConfig DatabaseConfig
}

func NewConfig

func NewConfig() (*Config, error)

type DatabaseConfig

type DatabaseConfig struct {
	Type string `env:"DB_TYPE" envDefault:"sqlite3"`
	Path string `env:"DB_PATH" envDefault:"jaha.db"`
}

type LogConfig

type LogConfig struct {
	Path       string `env:"LOG_PATH" envDefault:"./log"`
	FileName   string `env:"LOG_FILE_NAME" envDefault:"./jaha.log"`
	Level      string `env:"LOG_LEVEL" envDefault:"debug"`
	MaxBackups int    `env:"LOG_MAX_BACKUPS" envDefault:"10"`
	MaxAge     int    `env:"LOG_MAX_AGE" envDefault:"7"`
}

type Logger

type Logger interface {
	Debugf(template string, args ...interface{})
	Debugw(template string, keysAndValues ...interface{})
	Infof(template string, args ...interface{})
	Infow(template string, keysAndValues ...interface{})
	Warnf(template string, args ...interface{})
	Warnw(template string, keysAndValues ...interface{})
	Errorf(template string, args ...interface{})
	Errorw(template string, keysAndValues ...interface{})
	Panicf(template string, args ...interface{})
	Panicw(template string, keysAndValues ...interface{})
}

func NewLogger

func NewLogger(cfg *Config) Logger

type StorageConfig

type StorageConfig struct {
	Type       string `env:"STORAGE_TYPE" envDefault:"local"`
	Path       string `env:"STORAGE_PATH" envDefault:"./data/cover"`
	Endpoint   string `env:"STORAGE_ENDPOINT" envDefault:"localhost:9000"`
	BucketName string `env:"STORAGE_BUCKET_NAME" envDefault:"jav-cover"`
	AccessKey  string `env:"STORAGE_ACCESS_KEY"`
	SecretKey  string `env:"STORAGE_SECRET_KEY"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL