2020-10-29 20:53:40 +08:00
|
|
|
package services
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"github.com/TeaOSLab/EdgeAPI/internal/db/models"
|
|
|
|
|
rpcutils "github.com/TeaOSLab/EdgeAPI/internal/rpc/utils"
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 服务分组相关服务
|
|
|
|
|
type ServerGroupService struct {
|
2020-11-24 15:02:44 +08:00
|
|
|
BaseService
|
2020-10-29 20:53:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 创建分组
|
|
|
|
|
func (this *ServerGroupService) CreateServerGroup(ctx context.Context, req *pb.CreateServerGroupRequest) (*pb.CreateServerGroupResponse, error) {
|
|
|
|
|
// 校验请求
|
|
|
|
|
_, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
tx := this.NullTx()
|
|
|
|
|
|
|
|
|
|
groupId, err := models.SharedServerGroupDAO.CreateGroup(tx, req.Name)
|
2020-10-29 20:53:40 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
return &pb.CreateServerGroupResponse{GroupId: groupId}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 修改分组
|
2020-11-13 18:22:22 +08:00
|
|
|
func (this *ServerGroupService) UpdateServerGroup(ctx context.Context, req *pb.UpdateServerGroupRequest) (*pb.RPCSuccess, error) {
|
2020-10-29 20:53:40 +08:00
|
|
|
// 校验请求
|
|
|
|
|
_, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
tx := this.NullTx()
|
|
|
|
|
|
|
|
|
|
err = models.SharedServerGroupDAO.UpdateGroup(tx, req.GroupId, req.Name)
|
2020-10-29 20:53:40 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-24 15:02:44 +08:00
|
|
|
return this.Success()
|
2020-10-29 20:53:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 删除分组
|
2020-11-13 18:22:22 +08:00
|
|
|
func (this *ServerGroupService) DeleteServerGroup(ctx context.Context, req *pb.DeleteServerGroupRequest) (*pb.RPCSuccess, error) {
|
2020-10-29 20:53:40 +08:00
|
|
|
// 校验请求
|
|
|
|
|
_, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
tx := this.NullTx()
|
|
|
|
|
|
|
|
|
|
err = models.SharedServerGroupDAO.DisableServerGroup(tx, req.GroupId)
|
2020-10-29 20:53:40 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-24 15:02:44 +08:00
|
|
|
return this.Success()
|
2020-10-29 20:53:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 查询所有分组
|
|
|
|
|
func (this *ServerGroupService) FindAllEnabledServerGroups(ctx context.Context, req *pb.FindAllEnabledServerGroupsRequest) (*pb.FindAllEnabledServerGroupsResponse, error) {
|
|
|
|
|
// 校验请求
|
|
|
|
|
_, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
tx := this.NullTx()
|
|
|
|
|
|
|
|
|
|
groups, err := models.SharedServerGroupDAO.FindAllEnabledGroups(tx)
|
2020-10-29 20:53:40 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
result := []*pb.ServerGroup{}
|
|
|
|
|
for _, group := range groups {
|
|
|
|
|
result = append(result, &pb.ServerGroup{
|
|
|
|
|
Id: int64(group.Id),
|
|
|
|
|
Name: group.Name,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
return &pb.FindAllEnabledServerGroupsResponse{Groups: result}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 修改分组排序
|
2020-11-13 18:22:22 +08:00
|
|
|
func (this *ServerGroupService) UpdateServerGroupOrders(ctx context.Context, req *pb.UpdateServerGroupOrdersRequest) (*pb.RPCSuccess, error) {
|
2020-10-29 20:53:40 +08:00
|
|
|
// 校验请求
|
|
|
|
|
_, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
tx := this.NullTx()
|
|
|
|
|
|
|
|
|
|
err = models.SharedServerGroupDAO.UpdateGroupOrders(tx, req.GroupIds)
|
2020-10-29 20:53:40 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2020-11-24 15:02:44 +08:00
|
|
|
return this.Success()
|
2020-10-29 20:53:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 查找单个分组信息
|
|
|
|
|
func (this *ServerGroupService) FindEnabledServerGroup(ctx context.Context, req *pb.FindEnabledServerGroupRequest) (*pb.FindEnabledServerGroupResponse, error) {
|
|
|
|
|
// 校验请求
|
|
|
|
|
_, _, err := rpcutils.ValidateRequest(ctx, rpcutils.UserTypeAdmin)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
tx := this.NullTx()
|
|
|
|
|
|
|
|
|
|
group, err := models.SharedServerGroupDAO.FindEnabledServerGroup(tx, req.GroupId)
|
2020-10-29 20:53:40 +08:00
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if group == nil {
|
|
|
|
|
return &pb.FindEnabledServerGroupResponse{
|
|
|
|
|
Group: nil,
|
|
|
|
|
}, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &pb.FindEnabledServerGroupResponse{
|
|
|
|
|
Group: &pb.ServerGroup{
|
|
|
|
|
Id: int64(group.Id),
|
|
|
|
|
Name: group.Name,
|
|
|
|
|
},
|
|
|
|
|
}, nil
|
|
|
|
|
}
|