Files
EdgeAdmin/internal/web/actions/default/clusters/cluster/groups/updatePopup.go

64 lines
1.3 KiB
Go
Raw Normal View History

2020-10-28 18:21:11 +08:00
package groups
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
2023-06-30 18:08:30 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/langs/codes"
2020-10-28 18:21:11 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
"github.com/iwind/TeaGo/actions"
"github.com/iwind/TeaGo/maps"
)
type UpdatePopupAction struct {
actionutils.ParentAction
}
func (this *UpdatePopupAction) Init() {
this.Nav("", "", "")
}
func (this *UpdatePopupAction) RunGet(params struct {
GroupId int64
}) {
2021-05-25 17:48:51 +08:00
groupResp, err := this.RPC().NodeGroupRPC().FindEnabledNodeGroup(this.AdminContext(), &pb.FindEnabledNodeGroupRequest{NodeGroupId: params.GroupId})
2020-10-28 18:21:11 +08:00
if err != nil {
this.ErrorPage(err)
return
}
2021-05-25 17:48:51 +08:00
group := groupResp.NodeGroup
2020-10-28 18:21:11 +08:00
if group == nil {
this.NotFound("nodeGroup", params.GroupId)
return
}
this.Data["group"] = maps.Map{
"id": group.Id,
"name": group.Name,
}
this.Show()
}
func (this *UpdatePopupAction) RunPost(params struct {
GroupId int64
Name string
Must *actions.Must
}) {
params.Must.
Field("name", params.Name).
Require("请输入分组名称")
_, err := this.RPC().NodeGroupRPC().UpdateNodeGroup(this.AdminContext(), &pb.UpdateNodeGroupRequest{
2021-05-25 17:48:51 +08:00
NodeGroupId: params.GroupId,
Name: params.Name,
2020-10-28 18:21:11 +08:00
})
if err != nil {
this.ErrorPage(err)
return
}
2020-11-10 21:37:48 +08:00
// 创建日志
2023-06-30 18:08:30 +08:00
defer this.CreateLogInfo(codes.NodeGroup_LogUpdateNodeGroup, params.GroupId)
2020-11-10 21:37:48 +08:00
2020-10-28 18:21:11 +08:00
this.Success()
}