2020-09-06 16:19:34 +08:00
|
|
|
|
package clusters
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2020-11-10 21:37:48 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
|
2020-09-06 16:19:34 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
2020-11-15 16:28:25 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/dns/domains/domainutils"
|
2020-11-10 21:37:48 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
2020-09-06 16:19:34 +08:00
|
|
|
|
"github.com/iwind/TeaGo/actions"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type CreateAction struct {
|
|
|
|
|
|
actionutils.ParentAction
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (this *CreateAction) Init() {
|
|
|
|
|
|
this.Nav("", "cluster", "create")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (this *CreateAction) RunGet(params struct{}) {
|
2020-11-15 16:28:25 +08:00
|
|
|
|
hasDomainsResp, err := this.RPC().DNSDomainRPC().ExistAvailableDomains(this.AdminContext(), &pb.ExistAvailableDomainsRequest{})
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
this.Data["hasDomains"] = hasDomainsResp.Exist
|
|
|
|
|
|
|
2020-09-06 16:19:34 +08:00
|
|
|
|
this.Show()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (this *CreateAction) RunPost(params struct {
|
2020-11-15 16:28:25 +08:00
|
|
|
|
Name string
|
|
|
|
|
|
|
2020-12-17 15:50:44 +08:00
|
|
|
|
// 缓存策略
|
|
|
|
|
|
CachePolicyId int64
|
|
|
|
|
|
|
|
|
|
|
|
// WAF策略
|
|
|
|
|
|
HttpFirewallPolicyId int64
|
|
|
|
|
|
|
2020-11-15 16:28:25 +08:00
|
|
|
|
// SSH相关
|
2020-09-06 16:19:34 +08:00
|
|
|
|
GrantId int64
|
|
|
|
|
|
InstallDir string
|
|
|
|
|
|
|
2020-11-15 16:28:25 +08:00
|
|
|
|
// DNS相关
|
|
|
|
|
|
DnsDomainId int64
|
|
|
|
|
|
DnsName string
|
|
|
|
|
|
|
2020-09-06 16:19:34 +08:00
|
|
|
|
Must *actions.Must
|
|
|
|
|
|
}) {
|
|
|
|
|
|
params.Must.
|
|
|
|
|
|
Field("name", params.Name).
|
|
|
|
|
|
Require("请输入集群名称")
|
|
|
|
|
|
|
2020-12-17 15:50:44 +08:00
|
|
|
|
if params.CachePolicyId <= 0 {
|
|
|
|
|
|
this.Fail("请选择或者创建缓存策略")
|
|
|
|
|
|
}
|
|
|
|
|
|
if params.HttpFirewallPolicyId <= 0 {
|
|
|
|
|
|
this.Fail("请选择或者创建WAF策略")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-15 16:28:25 +08:00
|
|
|
|
// 检查DNS名称
|
|
|
|
|
|
if len(params.DnsName) > 0 {
|
|
|
|
|
|
if !domainutils.ValidateDomainFormat(params.DnsName) {
|
|
|
|
|
|
this.FailField("dnsName", "请输入正确的DNS子域名")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 检查是否已经被使用
|
|
|
|
|
|
resp, err := this.RPC().NodeClusterRPC().CheckNodeClusterDNSName(this.AdminContext(), &pb.CheckNodeClusterDNSNameRequest{
|
|
|
|
|
|
NodeClusterId: 0,
|
|
|
|
|
|
DnsName: params.DnsName,
|
|
|
|
|
|
})
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
if resp.IsUsed {
|
|
|
|
|
|
this.FailField("dnsName", "此DNS子域名已经被使用,请换一个再试")
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// TODO 检查DnsDomainId的有效性
|
|
|
|
|
|
|
2020-11-10 21:37:48 +08:00
|
|
|
|
createResp, err := this.RPC().NodeClusterRPC().CreateNodeCluster(this.AdminContext(), &pb.CreateNodeClusterRequest{
|
2020-12-17 15:50:44 +08:00
|
|
|
|
Name: params.Name,
|
|
|
|
|
|
GrantId: params.GrantId,
|
|
|
|
|
|
InstallDir: params.InstallDir,
|
|
|
|
|
|
DnsDomainId: params.DnsDomainId,
|
|
|
|
|
|
DnsName: params.DnsName,
|
|
|
|
|
|
HttpCachePolicyId: params.CachePolicyId,
|
|
|
|
|
|
HttpFirewallPolicyId: params.HttpFirewallPolicyId,
|
2020-09-06 16:19:34 +08:00
|
|
|
|
})
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-10 21:37:48 +08:00
|
|
|
|
// 创建日志
|
2020-12-17 15:50:44 +08:00
|
|
|
|
defer this.CreateLog(oplogs.LevelInfo, "创建节点集群:%d", createResp.NodeClusterId)
|
2020-11-10 21:37:48 +08:00
|
|
|
|
|
2020-09-06 16:19:34 +08:00
|
|
|
|
this.Success()
|
|
|
|
|
|
}
|