refactor(logging): Refactor error handling in CreateTag, CreateTagInBatch, and DeleteTag functions
Some checks failed
Gitea Build Check / Build (push) Failing after 29s
Some checks failed
Gitea Build Check / Build (push) Failing after 29s
Improve error handling in the CreateTag, CreateTagInBatch, and DeleteTag functions by utilizing a new utility function. Simplify logging and error management, ensuring more consistent error responses throughout these operations.
This commit is contained in:
parent
4707ea3f00
commit
c17b78cc48
@ -3,6 +3,7 @@ package database
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
"git.anthrove.art/Anthrove/otter-space-sdk/v2/internal/utils"
|
||||||
otterError "git.anthrove.art/Anthrove/otter-space-sdk/v2/pkg/error"
|
otterError "git.anthrove.art/Anthrove/otter-space-sdk/v2/pkg/error"
|
||||||
"git.anthrove.art/Anthrove/otter-space-sdk/v2/pkg/models"
|
"git.anthrove.art/Anthrove/otter-space-sdk/v2/pkg/models"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
@ -22,9 +23,7 @@ func CreateTag(ctx context.Context, tagName models.TagName, tagType models.TagTy
|
|||||||
span.AddEvent("Starting tag creation")
|
span.AddEvent("Starting tag creation")
|
||||||
|
|
||||||
if client == nil {
|
if client == nil {
|
||||||
logger.WithContext(ctx).Error(otterError.DatabaseIsNotConnected)
|
return models.Tag{}, utils.HandleError(ctx, span, logger, nil, &otterError.Database{Reason: otterError.DatabaseIsNotConnected})
|
||||||
span.RecordError(&otterError.Database{Reason: otterError.DatabaseIsNotConnected})
|
|
||||||
return models.Tag{}, &otterError.Database{Reason: otterError.DatabaseIsNotConnected}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tag := models.Tag{
|
tag := models.Tag{
|
||||||
@ -41,24 +40,18 @@ func CreateTag(ctx context.Context, tagName models.TagName, tagType models.TagTy
|
|||||||
if result.Error != nil {
|
if result.Error != nil {
|
||||||
if errors.Is(result.Error, gorm.ErrDuplicatedKey) {
|
if errors.Is(result.Error, gorm.ErrDuplicatedKey) {
|
||||||
|
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
loggerFields := log.Fields{
|
||||||
"name": tagName,
|
"name": tagName,
|
||||||
"type": tagType,
|
"type": tagType,
|
||||||
}).Error(otterError.DuplicateKey)
|
}
|
||||||
|
return models.Tag{}, utils.HandleError(ctx, span, logger, loggerFields, &otterError.Database{Reason: otterError.DuplicateKey})
|
||||||
span.RecordError(&otterError.Database{Reason: otterError.DuplicateKey})
|
|
||||||
|
|
||||||
return models.Tag{}, &otterError.Database{Reason: otterError.DuplicateKey}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
loggerFields := log.Fields{
|
||||||
"name": tagName,
|
"name": tagName,
|
||||||
"type": tagType,
|
"type": tagType,
|
||||||
}).Error(result.Error)
|
}
|
||||||
|
return models.Tag{}, utils.HandleError(ctx, span, logger, loggerFields, result.Error)
|
||||||
span.RecordError(result.Error)
|
|
||||||
|
|
||||||
return models.Tag{}, result.Error
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
logger.WithContext(ctx).WithFields(log.Fields{
|
||||||
@ -81,21 +74,15 @@ func CreateTagInBatch(ctx context.Context, tags []models.Tag, batchSize int) err
|
|||||||
span.AddEvent("Starting batch tag creation")
|
span.AddEvent("Starting batch tag creation")
|
||||||
|
|
||||||
if client == nil {
|
if client == nil {
|
||||||
logger.WithContext(ctx).Error(otterError.DatabaseIsNotConnected)
|
return utils.HandleError(ctx, span, logger, nil, &otterError.Database{Reason: otterError.DatabaseIsNotConnected})
|
||||||
span.RecordError(&otterError.Database{Reason: otterError.DatabaseIsNotConnected})
|
|
||||||
return &otterError.Database{Reason: otterError.DatabaseIsNotConnected}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if tags == nil || len(tags) == 0 {
|
if tags == nil || len(tags) == 0 {
|
||||||
logger.WithContext(ctx).Error(otterError.TagListIsEmpty)
|
return utils.HandleError(ctx, span, logger, nil, &otterError.EntityValidationFailed{Reason: otterError.TagListIsEmpty})
|
||||||
span.RecordError(&otterError.EntityValidationFailed{Reason: otterError.TagListIsEmpty})
|
|
||||||
return &otterError.EntityValidationFailed{Reason: otterError.TagListIsEmpty}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if batchSize == 0 {
|
if batchSize == 0 {
|
||||||
logger.WithContext(ctx).Error(otterError.BatchSizeIsEmpty)
|
return utils.HandleError(ctx, span, logger, nil, &otterError.EntityValidationFailed{Reason: otterError.BatchSizeIsEmpty})
|
||||||
span.RecordError(&otterError.EntityValidationFailed{Reason: otterError.BatchSizeIsEmpty})
|
|
||||||
return &otterError.EntityValidationFailed{Reason: otterError.BatchSizeIsEmpty}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
logger.WithContext(ctx).WithFields(log.Fields{
|
||||||
@ -105,17 +92,16 @@ func CreateTagInBatch(ctx context.Context, tags []models.Tag, batchSize int) err
|
|||||||
result := client.WithContext(ctx).CreateInBatches(&tags, batchSize)
|
result := client.WithContext(ctx).CreateInBatches(&tags, batchSize)
|
||||||
if result.Error != nil {
|
if result.Error != nil {
|
||||||
if errors.Is(result.Error, gorm.ErrDuplicatedKey) {
|
if errors.Is(result.Error, gorm.ErrDuplicatedKey) {
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
loggerFields := log.Fields{
|
||||||
"tag_length": len(tags),
|
"tag_length": len(tags),
|
||||||
}).Error(otterError.DuplicateKey)
|
}
|
||||||
span.RecordError(&otterError.Database{Reason: otterError.DuplicateKey})
|
return utils.HandleError(ctx, span, logger, loggerFields, &otterError.Database{Reason: otterError.DuplicateKey})
|
||||||
return &otterError.Database{Reason: otterError.DuplicateKey}
|
|
||||||
}
|
}
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
|
||||||
|
loggerFields := log.Fields{
|
||||||
"tag_length": len(tags),
|
"tag_length": len(tags),
|
||||||
}).Error(result.Error)
|
}
|
||||||
span.RecordError(result.Error)
|
return utils.HandleError(ctx, span, logger, loggerFields, result.Error)
|
||||||
return result.Error
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
logger.WithContext(ctx).WithFields(log.Fields{
|
||||||
@ -139,15 +125,11 @@ func DeleteTag(ctx context.Context, tagName models.TagName) error {
|
|||||||
var tag models.Tag
|
var tag models.Tag
|
||||||
|
|
||||||
if client == nil {
|
if client == nil {
|
||||||
logger.WithContext(ctx).Error(otterError.DatabaseIsNotConnected)
|
return utils.HandleError(ctx, span, logger, nil, &otterError.Database{Reason: otterError.DatabaseIsNotConnected})
|
||||||
span.RecordError(&otterError.Database{Reason: otterError.DatabaseIsNotConnected})
|
|
||||||
return &otterError.Database{Reason: otterError.DatabaseIsNotConnected}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(tagName) == 0 {
|
if len(tagName) == 0 {
|
||||||
logger.WithContext(ctx).Error(otterError.TagNameIsEmpty)
|
return utils.HandleError(ctx, span, logger, nil, &otterError.Database{Reason: otterError.TagNameIsEmpty})
|
||||||
span.RecordError(&otterError.EntityValidationFailed{Reason: otterError.TagNameIsEmpty})
|
|
||||||
return &otterError.EntityValidationFailed{Reason: otterError.TagNameIsEmpty}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
logger.WithContext(ctx).WithFields(log.Fields{
|
||||||
@ -157,11 +139,17 @@ func DeleteTag(ctx context.Context, tagName models.TagName) error {
|
|||||||
result := client.WithContext(ctx).Delete(&tag, tagName)
|
result := client.WithContext(ctx).Delete(&tag, tagName)
|
||||||
if result.Error != nil {
|
if result.Error != nil {
|
||||||
if errors.Is(result.Error, gorm.ErrRecordNotFound) {
|
if errors.Is(result.Error, gorm.ErrRecordNotFound) {
|
||||||
span.RecordError(&otterError.Database{Reason: otterError.NoDataFound})
|
|
||||||
return &otterError.Database{Reason: otterError.NoDataFound}
|
loggerFields := log.Fields{
|
||||||
|
"tag_name": tagName,
|
||||||
|
}
|
||||||
|
return utils.HandleError(ctx, span, logger, loggerFields, &otterError.Database{Reason: otterError.NoDataFound})
|
||||||
}
|
}
|
||||||
span.RecordError(result.Error)
|
|
||||||
return result.Error
|
loggerFields := log.Fields{
|
||||||
|
"tag_name": tagName,
|
||||||
|
}
|
||||||
|
return utils.HandleError(ctx, span, logger, loggerFields, result.Error)
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.WithContext(ctx).WithFields(log.Fields{
|
logger.WithContext(ctx).WithFields(log.Fields{
|
||||||
|
Loading…
Reference in New Issue
Block a user