2020-10-09 12:03:32 +08:00
|
|
|
package clusters
|
2020-08-21 12:32:16 +08:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
2020-09-26 08:07:18 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
2020-08-21 12:32:16 +08:00
|
|
|
"github.com/iwind/TeaGo/maps"
|
|
|
|
|
)
|
|
|
|
|
|
2020-09-26 08:07:18 +08:00
|
|
|
// 检查变更的集群列表
|
2020-10-09 12:03:32 +08:00
|
|
|
type CheckChangeAction struct {
|
2020-08-21 12:32:16 +08:00
|
|
|
actionutils.ParentAction
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-09 12:03:32 +08:00
|
|
|
func (this *CheckChangeAction) Init() {
|
2020-08-21 12:32:16 +08:00
|
|
|
this.Nav("", "", "")
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-09 12:03:32 +08:00
|
|
|
func (this *CheckChangeAction) RunPost(params struct {
|
2020-09-26 08:07:18 +08:00
|
|
|
IsNotifying bool
|
|
|
|
|
}) {
|
2020-10-15 16:41:32 +08:00
|
|
|
resp, err := this.RPC().NodeClusterRPC().FindAllChangedNodeClusters(this.AdminContext(), &pb.FindAllChangedNodeClustersRequest{})
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-09-26 08:07:18 +08:00
|
|
|
|
2020-10-15 16:41:32 +08:00
|
|
|
result := []maps.Map{}
|
|
|
|
|
for _, cluster := range resp.Clusters {
|
|
|
|
|
result = append(result, maps.Map{
|
|
|
|
|
"id": cluster.Id,
|
|
|
|
|
"name": cluster.Name,
|
|
|
|
|
})
|
2020-09-26 08:07:18 +08:00
|
|
|
}
|
2020-08-21 12:32:16 +08:00
|
|
|
|
2020-10-15 16:41:32 +08:00
|
|
|
this.Data["clusters"] = result
|
2020-08-21 12:32:16 +08:00
|
|
|
this.Success()
|
|
|
|
|
}
|