e13545c5f1
modified: begushiybashkir/bbvue/src/stores/auth.js modified: begushiybashkir/bbvue/src/views/Profile.vue modified: begushiybashkir/bbvue/src/views/ProfileEdit.vue modified: serv_nginx/api_bb/go.mod modified: serv_nginx/api_bb/go.sum modified: serv_nginx/api_bb/internal/handlers/auth.go new file: serv_nginx/api_bb/internal/handlers/avatar.go modified: serv_nginx/api_bb/internal/handlers/news_handler.go modified: serv_nginx/api_bb/internal/handlers/user.go modified: serv_nginx/api_bb/internal/models/user.go modified: serv_nginx/api_bb/internal/repository/user_repository.go modified: serv_nginx/api_bb/internal/routes/routes.go modified: serv_nginx/api_bb/internal/service/auth_service.go new file: serv_nginx/api_bb/internal/service/avatar_service.go modified: serv_nginx/api_bb/internal/service/news_service.go modified: serv_nginx/api_bb/internal/service/user_service.go modified: serv_nginx/api_bb/pkg/logger/interface.go new file: serv_nginx/api_bb/pkg/logger/route_logger.go add structure fix, page, path, routes, component, authStore for upload, renew and delete avatar
76 lines
2.0 KiB
Go
76 lines
2.0 KiB
Go
// pkg/logger/interface.go
|
|
package logger
|
|
|
|
import "go.uber.org/zap"
|
|
|
|
// LoggerInterface определяет контракт для логгера
|
|
type LoggerInterface interface {
|
|
Debug(msg string, fields ...zap.Field)
|
|
Info(msg string, fields ...zap.Field)
|
|
Warn(msg string, fields ...zap.Field)
|
|
Error(msg string, fields ...zap.Field)
|
|
Fatal(msg string, fields ...zap.Field)
|
|
|
|
Debugf(template string, args ...interface{})
|
|
Infof(template string, args ...interface{})
|
|
Warnf(template string, args ...interface{})
|
|
Errorf(template string, args ...interface{})
|
|
Fatalf(template string, args ...interface{})
|
|
|
|
With(fields ...zap.Field) LoggerInterface
|
|
}
|
|
|
|
// wrapper обертка для zap.Logger
|
|
type wrapper struct {
|
|
logger *zap.Logger
|
|
}
|
|
|
|
// NewWrapper создает новую обертку
|
|
func NewWrapper(logger *zap.Logger) LoggerInterface {
|
|
return &wrapper{logger: logger}
|
|
}
|
|
|
|
func (w *wrapper) Debug(msg string, fields ...zap.Field) {
|
|
w.logger.Debug(msg, fields...)
|
|
}
|
|
|
|
func (w *wrapper) Info(msg string, fields ...zap.Field) {
|
|
w.logger.Info(msg, fields...)
|
|
}
|
|
|
|
func (w *wrapper) Warn(msg string, fields ...zap.Field) {
|
|
w.logger.Warn(msg, fields...)
|
|
}
|
|
|
|
func (w *wrapper) Error(msg string, fields ...zap.Field) {
|
|
w.logger.Error(msg, fields...)
|
|
}
|
|
|
|
func (w *wrapper) Fatal(msg string, fields ...zap.Field) {
|
|
w.logger.Fatal(msg, fields...)
|
|
}
|
|
|
|
func (w *wrapper) Debugf(template string, args ...interface{}) {
|
|
w.logger.Sugar().Debugf(template, args...)
|
|
}
|
|
|
|
func (w *wrapper) Infof(template string, args ...interface{}) {
|
|
w.logger.Sugar().Infof(template, args...)
|
|
}
|
|
|
|
func (w *wrapper) Warnf(template string, args ...interface{}) {
|
|
w.logger.Sugar().Warnf(template, args...)
|
|
}
|
|
|
|
func (w *wrapper) Errorf(template string, args ...interface{}) {
|
|
w.logger.Sugar().Errorf(template, args...)
|
|
}
|
|
|
|
func (w *wrapper) Fatalf(template string, args ...interface{}) {
|
|
w.logger.Sugar().Fatalf(template, args...)
|
|
}
|
|
|
|
func (w *wrapper) With(fields ...zap.Field) LoggerInterface {
|
|
return &wrapper{logger: w.logger.With(fields...)}
|
|
}
|