monorepo/cloud/maplefile-backend/internal/usecase/collection/find_by_parent.go

54 lines
1.5 KiB
Go

// monorepo/cloud/backend/internal/maplefile/usecase/collection/find_by_parent.go
package collection
import (
"context"
"go.uber.org/zap"
"github.com/gocql/gocql"
"codeberg.org/mapleopentech/monorepo/cloud/maplefile-backend/config"
dom_collection "codeberg.org/mapleopentech/monorepo/cloud/maplefile-backend/internal/domain/collection"
"codeberg.org/mapleopentech/monorepo/cloud/maplefile-backend/pkg/httperror"
)
type FindCollectionsByParentUseCase interface {
Execute(ctx context.Context, parentID gocql.UUID) ([]*dom_collection.Collection, error)
}
type findCollectionsByParentUseCaseImpl struct {
config *config.Configuration
logger *zap.Logger
repo dom_collection.CollectionRepository
}
func NewFindCollectionsByParentUseCase(
config *config.Configuration,
logger *zap.Logger,
repo dom_collection.CollectionRepository,
) FindCollectionsByParentUseCase {
logger = logger.Named("FindCollectionsByParentUseCase")
return &findCollectionsByParentUseCaseImpl{config, logger, repo}
}
func (uc *findCollectionsByParentUseCaseImpl) Execute(ctx context.Context, parentID gocql.UUID) ([]*dom_collection.Collection, error) {
//
// STEP 1: Validation.
//
e := make(map[string]string)
if parentID.String() == "" {
e["parent_id"] = "Parent ID is required"
}
if len(e) != 0 {
uc.logger.Warn("Failed validating find collections by parent",
zap.Any("error", e))
return nil, httperror.NewForBadRequest(&e)
}
//
// STEP 2: Find collections by parent.
//
return uc.repo.FindByParent(ctx, parentID)
}