78 lines
1.9 KiB
Go
78 lines
1.9 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"github.com/google/uuid"
|
|
"github.com/ocdp/cluster-service/internal/domain/entity"
|
|
"github.com/ocdp/cluster-service/internal/domain/repository"
|
|
)
|
|
|
|
// ClusterService 集群管理领域服务
|
|
type ClusterService struct {
|
|
clusterRepo repository.ClusterRepository
|
|
}
|
|
|
|
// NewClusterService 创建集群服务
|
|
func NewClusterService(clusterRepo repository.ClusterRepository) *ClusterService {
|
|
return &ClusterService{
|
|
clusterRepo: clusterRepo,
|
|
}
|
|
}
|
|
|
|
// CreateCluster 创建新集群
|
|
func (s *ClusterService) CreateCluster(ctx context.Context, cluster *entity.Cluster) error {
|
|
// 生成 ID
|
|
cluster.ID = uuid.New().String()
|
|
|
|
// 验证
|
|
if err := cluster.Validate(); err != nil {
|
|
return err
|
|
}
|
|
|
|
// 检查是否已存在
|
|
existingCluster, _ := s.clusterRepo.GetByName(ctx, cluster.Name)
|
|
if existingCluster != nil {
|
|
return entity.ErrClusterExists
|
|
}
|
|
|
|
return s.clusterRepo.Create(ctx, cluster)
|
|
}
|
|
|
|
// GetCluster 获取集群
|
|
func (s *ClusterService) GetCluster(ctx context.Context, id string) (*entity.Cluster, error) {
|
|
return s.clusterRepo.GetByID(ctx, id)
|
|
}
|
|
|
|
// UpdateCluster 更新集群
|
|
func (s *ClusterService) UpdateCluster(ctx context.Context, cluster *entity.Cluster) error {
|
|
// 检查是否存在
|
|
_, err := s.clusterRepo.GetByID(ctx, cluster.ID)
|
|
if err != nil {
|
|
return entity.ErrClusterNotFound
|
|
}
|
|
|
|
// 验证
|
|
if err := cluster.Validate(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return s.clusterRepo.Update(ctx, cluster)
|
|
}
|
|
|
|
// DeleteCluster 删除集群
|
|
func (s *ClusterService) DeleteCluster(ctx context.Context, id string) error {
|
|
// 检查是否存在
|
|
_, err := s.clusterRepo.GetByID(ctx, id)
|
|
if err != nil {
|
|
return entity.ErrClusterNotFound
|
|
}
|
|
|
|
return s.clusterRepo.Delete(ctx, id)
|
|
}
|
|
|
|
// ListClusters 列出所有集群
|
|
func (s *ClusterService) ListClusters(ctx context.Context) ([]*entity.Cluster, error) {
|
|
return s.clusterRepo.List(ctx)
|
|
}
|
|
|