mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
823 lines
21 KiB
Go
823 lines
21 KiB
Go
package models
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"github.com/TeaOSLab/EdgeAPI/internal/utils/numberutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/dnsconfigs"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/iwind/TeaGo/Tea"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
"github.com/iwind/TeaGo/maps"
|
|
"github.com/iwind/TeaGo/rands"
|
|
"github.com/iwind/TeaGo/types"
|
|
"strconv"
|
|
)
|
|
|
|
const (
|
|
NodeClusterStateEnabled = 1 // 已启用
|
|
NodeClusterStateDisabled = 0 // 已禁用
|
|
)
|
|
|
|
type NodeClusterDAO dbs.DAO
|
|
|
|
func NewNodeClusterDAO() *NodeClusterDAO {
|
|
return dbs.NewDAO(&NodeClusterDAO{
|
|
DAOObject: dbs.DAOObject{
|
|
DB: Tea.Env,
|
|
Table: "edgeNodeClusters",
|
|
Model: new(NodeCluster),
|
|
PkName: "id",
|
|
},
|
|
}).(*NodeClusterDAO)
|
|
}
|
|
|
|
var SharedNodeClusterDAO *NodeClusterDAO
|
|
|
|
func init() {
|
|
dbs.OnReady(func() {
|
|
SharedNodeClusterDAO = NewNodeClusterDAO()
|
|
})
|
|
}
|
|
|
|
// 启用条目
|
|
func (this *NodeClusterDAO) EnableNodeCluster(tx *dbs.Tx, id int64) error {
|
|
_, err := this.Query(tx).
|
|
Pk(id).
|
|
Set("state", NodeClusterStateEnabled).
|
|
Update()
|
|
return err
|
|
}
|
|
|
|
// 禁用条目
|
|
func (this *NodeClusterDAO) DisableNodeCluster(tx *dbs.Tx, id int64) error {
|
|
_, err := this.Query(tx).
|
|
Pk(id).
|
|
Set("state", NodeClusterStateDisabled).
|
|
Update()
|
|
return err
|
|
}
|
|
|
|
// 查找集群
|
|
func (this *NodeClusterDAO) FindEnabledNodeCluster(tx *dbs.Tx, id int64) (*NodeCluster, error) {
|
|
result, err := this.Query(tx).
|
|
Pk(id).
|
|
Attr("state", NodeClusterStateEnabled).
|
|
Find()
|
|
if result == nil {
|
|
return nil, err
|
|
}
|
|
return result.(*NodeCluster), err
|
|
}
|
|
|
|
// 根据UniqueId获取ID
|
|
// TODO 增加缓存
|
|
func (this *NodeClusterDAO) FindEnabledClusterIdWithUniqueId(tx *dbs.Tx, uniqueId string) (int64, error) {
|
|
return this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("uniqueId", uniqueId).
|
|
ResultPk().
|
|
FindInt64Col(0)
|
|
}
|
|
|
|
// 根据主键查找名称
|
|
func (this *NodeClusterDAO) FindNodeClusterName(tx *dbs.Tx, id int64) (string, error) {
|
|
return this.Query(tx).
|
|
Pk(id).
|
|
Result("name").
|
|
FindStringCol("")
|
|
}
|
|
|
|
// 查找所有可用的集群
|
|
func (this *NodeClusterDAO) FindAllEnableClusters(tx *dbs.Tx) (result []*NodeCluster, err error) {
|
|
_, err = this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Slice(&result).
|
|
Desc("order").
|
|
DescPk().
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// 查找所有可用的集群Ids
|
|
func (this *NodeClusterDAO) FindAllEnableClusterIds(tx *dbs.Tx) (result []int64, err error) {
|
|
ones, err := this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
ResultPk().
|
|
FindAll()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, one := range ones {
|
|
result = append(result, int64(one.(*NodeCluster).Id))
|
|
}
|
|
return
|
|
}
|
|
|
|
// 创建集群
|
|
func (this *NodeClusterDAO) CreateCluster(tx *dbs.Tx, adminId int64, name string, grantId int64, installDir string, dnsDomainId int64, dnsName string, cachePolicyId int64, httpFirewallPolicyId int64, systemServices map[string]maps.Map) (clusterId int64, err error) {
|
|
uniqueId, err := this.genUniqueId(tx)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
secret := rands.String(32)
|
|
err = SharedApiTokenDAO.CreateAPIToken(tx, uniqueId, secret, NodeRoleCluster)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
op := NewNodeClusterOperator()
|
|
op.AdminId = adminId
|
|
op.Name = name
|
|
op.GrantId = grantId
|
|
op.InstallDir = installDir
|
|
|
|
// DNS设置
|
|
op.DnsDomainId = dnsDomainId
|
|
op.DnsName = dnsName
|
|
dnsConfig := &dnsconfigs.ClusterDNSConfig{
|
|
NodesAutoSync: true,
|
|
ServersAutoSync: true,
|
|
}
|
|
dnsJSON, err := json.Marshal(dnsConfig)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
op.Dns = dnsJSON
|
|
|
|
// 缓存策略
|
|
op.CachePolicyId = cachePolicyId
|
|
|
|
// WAF策略
|
|
op.HttpFirewallPolicyId = httpFirewallPolicyId
|
|
|
|
// 系统服务
|
|
systemServicesJSON, err := json.Marshal(systemServices)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
op.SystemServices = systemServicesJSON
|
|
|
|
op.UseAllAPINodes = 1
|
|
op.ApiNodes = "[]"
|
|
op.UniqueId = uniqueId
|
|
op.Secret = secret
|
|
op.State = NodeClusterStateEnabled
|
|
err = this.Save(tx, op)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
return types.Int64(op.Id), nil
|
|
}
|
|
|
|
// 修改集群
|
|
func (this *NodeClusterDAO) UpdateCluster(tx *dbs.Tx, clusterId int64, name string, grantId int64, installDir string) error {
|
|
if clusterId <= 0 {
|
|
return errors.New("invalid clusterId")
|
|
}
|
|
op := NewNodeClusterOperator()
|
|
op.Id = clusterId
|
|
op.Name = name
|
|
op.GrantId = grantId
|
|
op.InstallDir = installDir
|
|
err := this.Save(tx, op)
|
|
return err
|
|
}
|
|
|
|
// 计算所有集群数量
|
|
func (this *NodeClusterDAO) CountAllEnabledClusters(tx *dbs.Tx, keyword string) (int64, error) {
|
|
query := this.Query(tx).
|
|
State(NodeClusterStateEnabled)
|
|
if len(keyword) > 0 {
|
|
query.Where("(name LIKE :keyword OR dnsName like :keyword)").
|
|
Param("keyword", "%"+keyword+"%")
|
|
}
|
|
return query.Count()
|
|
}
|
|
|
|
// 列出单页集群
|
|
func (this *NodeClusterDAO) ListEnabledClusters(tx *dbs.Tx, keyword string, offset, size int64) (result []*NodeCluster, err error) {
|
|
query := this.Query(tx).
|
|
State(NodeClusterStateEnabled)
|
|
if len(keyword) > 0 {
|
|
query.Where("(name LIKE :keyword OR dnsName like :keyword)").
|
|
Param("keyword", "%"+keyword+"%")
|
|
}
|
|
_, err = query.
|
|
Offset(offset).
|
|
Limit(size).
|
|
Slice(&result).
|
|
DescPk().
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// 查找所有API节点地址
|
|
func (this *NodeClusterDAO) FindAllAPINodeAddrsWithCluster(tx *dbs.Tx, clusterId int64) (result []string, err error) {
|
|
one, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("useAllAPINodes", "apiNodes").
|
|
Find()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if one == nil {
|
|
return nil, nil
|
|
}
|
|
cluster := one.(*NodeCluster)
|
|
if cluster.UseAllAPINodes == 1 {
|
|
apiNodes, err := SharedAPINodeDAO.FindAllEnabledAPINodes(tx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, apiNode := range apiNodes {
|
|
if apiNode.IsOn != 1 {
|
|
continue
|
|
}
|
|
addrs, err := apiNode.DecodeAccessAddrStrings()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
result = append(result, addrs...)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
apiNodeIds := []int64{}
|
|
if !IsNotNull(cluster.ApiNodes) {
|
|
return
|
|
}
|
|
err = json.Unmarshal([]byte(cluster.ApiNodes), &apiNodeIds)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, apiNodeId := range apiNodeIds {
|
|
apiNode, err := SharedAPINodeDAO.FindEnabledAPINode(tx, apiNodeId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if apiNode == nil || apiNode.IsOn != 1 {
|
|
continue
|
|
}
|
|
addrs, err := apiNode.DecodeAccessAddrStrings()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
result = append(result, addrs...)
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// 查找健康检查设置
|
|
func (this *NodeClusterDAO) FindClusterHealthCheckConfig(tx *dbs.Tx, clusterId int64) (*serverconfigs.HealthCheckConfig, error) {
|
|
col, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("healthCheck").
|
|
FindStringCol("")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(col) == 0 || col == "null" {
|
|
return nil, nil
|
|
}
|
|
|
|
config := &serverconfigs.HealthCheckConfig{}
|
|
err = json.Unmarshal([]byte(col), config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return config, nil
|
|
}
|
|
|
|
// 修改健康检查设置
|
|
func (this *NodeClusterDAO) UpdateClusterHealthCheck(tx *dbs.Tx, clusterId int64, healthCheckJSON []byte) error {
|
|
if clusterId <= 0 {
|
|
return errors.New("invalid clusterId '" + strconv.FormatInt(clusterId, 10) + "'")
|
|
}
|
|
op := NewNodeClusterOperator()
|
|
op.Id = clusterId
|
|
op.HealthCheck = healthCheckJSON
|
|
err := this.Save(tx, op)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return this.NotifyUpdate(tx, clusterId)
|
|
}
|
|
|
|
// 计算使用某个认证的集群数量
|
|
func (this *NodeClusterDAO) CountAllEnabledClustersWithGrantId(tx *dbs.Tx, grantId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("grantId", grantId).
|
|
Count()
|
|
}
|
|
|
|
// 获取使用某个认证的所有集群
|
|
func (this *NodeClusterDAO) FindAllEnabledClustersWithGrantId(tx *dbs.Tx, grantId int64) (result []*NodeCluster, err error) {
|
|
_, err = this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("grantId", grantId).
|
|
Slice(&result).
|
|
DescPk().
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// 计算使用某个DNS服务商的集群数量
|
|
func (this *NodeClusterDAO) CountAllEnabledClustersWithDNSProviderId(tx *dbs.Tx, dnsProviderId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Where("dnsDomainId IN (SELECT id FROM "+SharedDNSDomainDAO.Table+" WHERE state=1 AND providerId=:providerId)").
|
|
Param("providerId", dnsProviderId).
|
|
Count()
|
|
}
|
|
|
|
// 获取所有使用某个DNS服务商的集群
|
|
func (this *NodeClusterDAO) FindAllEnabledClustersWithDNSProviderId(tx *dbs.Tx, dnsProviderId int64) (result []*NodeCluster, err error) {
|
|
_, err = this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Where("dnsDomainId IN (SELECT id FROM "+SharedDNSDomainDAO.Table+" WHERE state=1 AND providerId=:providerId)").
|
|
Param("providerId", dnsProviderId).
|
|
Slice(&result).
|
|
DescPk().
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// 计算使用某个DNS域名的集群数量
|
|
func (this *NodeClusterDAO) CountAllEnabledClustersWithDNSDomainId(tx *dbs.Tx, dnsDomainId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("dnsDomainId", dnsDomainId).
|
|
Count()
|
|
}
|
|
|
|
// 查询使用某个DNS域名的集群ID列表
|
|
func (this *NodeClusterDAO) FindAllEnabledClusterIdsWithDNSDomainId(tx *dbs.Tx, dnsDomainId int64) ([]int64, error) {
|
|
ones, err := this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("dnsDomainId", dnsDomainId).
|
|
ResultPk().
|
|
FindAll()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
result := []int64{}
|
|
for _, one := range ones {
|
|
result = append(result, int64(one.(*NodeCluster).Id))
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// 查询使用某个DNS域名的所有集群域名
|
|
func (this *NodeClusterDAO) FindAllEnabledClustersWithDNSDomainId(tx *dbs.Tx, dnsDomainId int64) (result []*NodeCluster, err error) {
|
|
_, err = this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("dnsDomainId", dnsDomainId).
|
|
Result("id", "name", "dnsName", "dnsDomainId").
|
|
Slice(&result).
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// 查询已经设置了域名的集群
|
|
func (this *NodeClusterDAO) FindAllEnabledClustersHaveDNSDomain(tx *dbs.Tx) (result []*NodeCluster, err error) {
|
|
_, err = this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Gt("dnsDomainId", 0).
|
|
Result("id", "name", "dnsName", "dnsDomainId").
|
|
Slice(&result).
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// 查找集群的认证ID
|
|
func (this *NodeClusterDAO) FindClusterGrantId(tx *dbs.Tx, clusterId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("grantId").
|
|
FindInt64Col(0)
|
|
}
|
|
|
|
// 查找DNS信息
|
|
func (this *NodeClusterDAO) FindClusterDNSInfo(tx *dbs.Tx, clusterId int64) (*NodeCluster, error) {
|
|
one, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("id", "name", "dnsName", "dnsDomainId", "dns").
|
|
Find()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if one == nil {
|
|
return nil, nil
|
|
}
|
|
return one.(*NodeCluster), nil
|
|
}
|
|
|
|
// 检查某个子域名是否可用
|
|
func (this *NodeClusterDAO) ExistClusterDNSName(tx *dbs.Tx, dnsName string, excludeClusterId int64) (bool, error) {
|
|
return this.Query(tx).
|
|
Attr("dnsName", dnsName).
|
|
State(NodeClusterStateEnabled).
|
|
Where("id!=:clusterId").
|
|
Param("clusterId", excludeClusterId).
|
|
Exist()
|
|
}
|
|
|
|
// 修改集群DNS相关信息
|
|
func (this *NodeClusterDAO) UpdateClusterDNS(tx *dbs.Tx, clusterId int64, dnsName string, dnsDomainId int64, nodesAutoSync bool, serversAutoSync bool) error {
|
|
if clusterId <= 0 {
|
|
return errors.New("invalid clusterId")
|
|
}
|
|
op := NewNodeClusterOperator()
|
|
op.Id = clusterId
|
|
op.DnsName = dnsName
|
|
op.DnsDomainId = dnsDomainId
|
|
|
|
dnsConfig := &dnsconfigs.ClusterDNSConfig{
|
|
NodesAutoSync: nodesAutoSync,
|
|
ServersAutoSync: serversAutoSync,
|
|
}
|
|
dnsJSON, err := json.Marshal(dnsConfig)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
op.Dns = dnsJSON
|
|
|
|
err = this.Save(tx, op)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return this.NotifyUpdate(tx, clusterId)
|
|
}
|
|
|
|
// 检查集群的DNS问题
|
|
func (this *NodeClusterDAO) CheckClusterDNS(tx *dbs.Tx, cluster *NodeCluster) (issues []*pb.DNSIssue, err error) {
|
|
clusterId := int64(cluster.Id)
|
|
domainId := int64(cluster.DnsDomainId)
|
|
|
|
// 检查域名
|
|
domain, err := SharedDNSDomainDAO.FindEnabledDNSDomain(tx, domainId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if domain == nil {
|
|
issues = append(issues, &pb.DNSIssue{
|
|
Target: cluster.Name,
|
|
TargetId: clusterId,
|
|
Type: "cluster",
|
|
Description: "域名选择错误,需要重新选择",
|
|
Params: nil,
|
|
})
|
|
return
|
|
}
|
|
|
|
// 检查二级域名
|
|
if len(cluster.DnsName) == 0 {
|
|
issues = append(issues, &pb.DNSIssue{
|
|
Target: cluster.Name,
|
|
TargetId: clusterId,
|
|
Type: "cluster",
|
|
Description: "没有设置二级域名",
|
|
Params: nil,
|
|
})
|
|
return
|
|
}
|
|
|
|
// TODO 检查域名格式
|
|
|
|
// TODO 检查域名是否已解析
|
|
|
|
// 检查节点
|
|
nodes, err := SharedNodeDAO.FindAllEnabledNodesDNSWithClusterId(tx, clusterId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// TODO 检查节点数量不能为0
|
|
|
|
for _, node := range nodes {
|
|
nodeId := int64(node.Id)
|
|
|
|
routeCodes, err := node.DNSRouteCodesForDomainId(domainId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(routeCodes) == 0 {
|
|
issues = append(issues, &pb.DNSIssue{
|
|
Target: node.Name,
|
|
TargetId: nodeId,
|
|
Type: "node",
|
|
Description: "没有选择节点所属线路",
|
|
Params: map[string]string{
|
|
"clusterName": cluster.Name,
|
|
"clusterId": numberutils.FormatInt64(clusterId),
|
|
},
|
|
})
|
|
continue
|
|
}
|
|
|
|
// 检查线路是否在已有线路中
|
|
for _, routeCode := range routeCodes {
|
|
routeOk, err := domain.ContainsRouteCode(routeCode)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if !routeOk {
|
|
issues = append(issues, &pb.DNSIssue{
|
|
Target: node.Name,
|
|
TargetId: nodeId,
|
|
Type: "node",
|
|
Description: "线路已经失效,请重新选择",
|
|
Params: map[string]string{
|
|
"clusterName": cluster.Name,
|
|
"clusterId": numberutils.FormatInt64(clusterId),
|
|
},
|
|
})
|
|
continue
|
|
}
|
|
}
|
|
|
|
// 检查IP地址
|
|
ipAddr, err := SharedNodeIPAddressDAO.FindFirstNodeIPAddress(tx, nodeId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(ipAddr) == 0 {
|
|
issues = append(issues, &pb.DNSIssue{
|
|
Target: node.Name,
|
|
TargetId: nodeId,
|
|
Type: "node",
|
|
Description: "没有设置IP地址",
|
|
Params: map[string]string{
|
|
"clusterName": cluster.Name,
|
|
"clusterId": numberutils.FormatInt64(clusterId),
|
|
},
|
|
})
|
|
continue
|
|
}
|
|
|
|
// TODO 检查是否有解析记录
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
// 查找集群所属管理员
|
|
func (this *NodeClusterDAO) FindClusterAdminId(tx *dbs.Tx, clusterId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("adminId").
|
|
FindInt64Col(0)
|
|
}
|
|
|
|
// 查找集群的TOA设置
|
|
func (this *NodeClusterDAO) FindClusterTOAConfig(tx *dbs.Tx, clusterId int64) (*nodeconfigs.TOAConfig, error) {
|
|
toa, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("toa").
|
|
FindStringCol("")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if !IsNotNull(toa) {
|
|
return nodeconfigs.DefaultTOAConfig(), nil
|
|
}
|
|
|
|
config := &nodeconfigs.TOAConfig{}
|
|
err = json.Unmarshal([]byte(toa), config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return config, nil
|
|
}
|
|
|
|
// 修改集群的TOA设置
|
|
func (this *NodeClusterDAO) UpdateClusterTOA(tx *dbs.Tx, clusterId int64, toaJSON []byte) error {
|
|
if clusterId <= 0 {
|
|
return errors.New("invalid clusterId")
|
|
}
|
|
op := NewNodeClusterOperator()
|
|
op.Id = clusterId
|
|
op.Toa = toaJSON
|
|
err := this.Save(tx, op)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return this.NotifyUpdate(tx, clusterId)
|
|
}
|
|
|
|
// 计算使用某个缓存策略的集群数量
|
|
func (this *NodeClusterDAO) CountAllEnabledNodeClustersWithHTTPCachePolicyId(tx *dbs.Tx, httpCachePolicyId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("cachePolicyId", httpCachePolicyId).
|
|
Count()
|
|
}
|
|
|
|
// 查找使用缓存策略的所有集群
|
|
func (this *NodeClusterDAO) FindAllEnabledNodeClustersWithHTTPCachePolicyId(tx *dbs.Tx, httpCachePolicyId int64) (result []*NodeCluster, err error) {
|
|
_, err = this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("cachePolicyId", httpCachePolicyId).
|
|
DescPk().
|
|
Slice(&result).
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// 计算使用某个WAF策略的集群数量
|
|
func (this *NodeClusterDAO) CountAllEnabledNodeClustersWithHTTPFirewallPolicyId(tx *dbs.Tx, httpFirewallPolicyId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("httpFirewallPolicyId", httpFirewallPolicyId).
|
|
Count()
|
|
}
|
|
|
|
// 查找使用WAF策略的所有集群
|
|
func (this *NodeClusterDAO) FindAllEnabledNodeClustersWithHTTPFirewallPolicyId(tx *dbs.Tx, httpFirewallPolicyId int64) (result []*NodeCluster, err error) {
|
|
_, err = this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("httpFirewallPolicyId", httpFirewallPolicyId).
|
|
DescPk().
|
|
Slice(&result).
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// 查找使用WAF策略的所有集群Ids
|
|
func (this *NodeClusterDAO) FindAllEnabledNodeClusterIdsWithHTTPFirewallPolicyId(tx *dbs.Tx, httpFirewallPolicyId int64) (result []int64, err error) {
|
|
ones, err := this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("httpFirewallPolicyId", httpFirewallPolicyId).
|
|
ResultPk().
|
|
FindAll()
|
|
for _, one := range ones {
|
|
result = append(result, int64(one.(*NodeCluster).Id))
|
|
}
|
|
return
|
|
}
|
|
|
|
// 查找使用缓存策略的所有集群Ids
|
|
func (this *NodeClusterDAO) FindAllEnabledNodeClusterIdsWithCachePolicyId(tx *dbs.Tx, cachePolicyId int64) (result []int64, err error) {
|
|
ones, err := this.Query(tx).
|
|
State(NodeClusterStateEnabled).
|
|
Attr("cachePolicyId", cachePolicyId).
|
|
ResultPk().
|
|
FindAll()
|
|
for _, one := range ones {
|
|
result = append(result, int64(one.(*NodeCluster).Id))
|
|
}
|
|
return
|
|
}
|
|
|
|
// 获取集群的WAF策略ID
|
|
func (this *NodeClusterDAO) FindClusterHTTPFirewallPolicyId(tx *dbs.Tx, clusterId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("httpFirewallPolicyId").
|
|
FindInt64Col(0)
|
|
}
|
|
|
|
// 设置集群的缓存策略
|
|
func (this *NodeClusterDAO) UpdateNodeClusterHTTPCachePolicyId(tx *dbs.Tx, clusterId int64, httpCachePolicyId int64) error {
|
|
_, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Set("cachePolicyId", httpCachePolicyId).
|
|
Update()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return this.NotifyUpdate(tx, clusterId)
|
|
}
|
|
|
|
// 获取集群的缓存策略ID
|
|
func (this *NodeClusterDAO) FindClusterHTTPCachePolicyId(tx *dbs.Tx, clusterId int64) (int64, error) {
|
|
return this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("cachePolicyId").
|
|
FindInt64Col(0)
|
|
}
|
|
|
|
// 设置集群的WAF策略
|
|
func (this *NodeClusterDAO) UpdateNodeClusterHTTPFirewallPolicyId(tx *dbs.Tx, clusterId int64, httpFirewallPolicyId int64) error {
|
|
_, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Set("httpFirewallPolicyId", httpFirewallPolicyId).
|
|
Update()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return this.NotifyUpdate(tx, clusterId)
|
|
}
|
|
|
|
// 修改集群的系统服务设置
|
|
func (this *NodeClusterDAO) UpdateNodeClusterSystemService(tx *dbs.Tx, clusterId int64, serviceType nodeconfigs.SystemServiceType, params maps.Map) error {
|
|
if clusterId <= 0 {
|
|
return errors.New("invalid clusterId")
|
|
}
|
|
service, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("systemServices").
|
|
FindStringCol("")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
servicesMap := map[string]maps.Map{}
|
|
if IsNotNull(service) {
|
|
err = json.Unmarshal([]byte(service), &servicesMap)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if params == nil {
|
|
params = maps.Map{}
|
|
}
|
|
servicesMap[serviceType] = params
|
|
servicesJSON, err := json.Marshal(servicesMap)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = this.Query(tx).
|
|
Pk(clusterId).
|
|
Set("systemServices", servicesJSON).
|
|
Update()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return this.NotifyUpdate(tx, clusterId)
|
|
}
|
|
|
|
// 查找集群的系统服务设置
|
|
func (this *NodeClusterDAO) FindNodeClusterSystemServiceParams(tx *dbs.Tx, clusterId int64, serviceType nodeconfigs.SystemServiceType) (params maps.Map, err error) {
|
|
if clusterId <= 0 {
|
|
return nil, errors.New("invalid clusterId")
|
|
}
|
|
service, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("systemServices").
|
|
FindStringCol("")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
servicesMap := map[string]maps.Map{}
|
|
if IsNotNull(service) {
|
|
err = json.Unmarshal([]byte(service), &servicesMap)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return servicesMap[serviceType], nil
|
|
}
|
|
|
|
// 查找集群的所有服务设置
|
|
func (this *NodeClusterDAO) FindNodeClusterSystemServices(tx *dbs.Tx, clusterId int64) (services map[string]maps.Map, err error) {
|
|
if clusterId <= 0 {
|
|
return nil, errors.New("invalid clusterId")
|
|
}
|
|
service, err := this.Query(tx).
|
|
Pk(clusterId).
|
|
Result("systemServices").
|
|
FindStringCol("")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
servicesMap := map[string]maps.Map{}
|
|
if IsNotNull(service) {
|
|
err = json.Unmarshal([]byte(service), &servicesMap)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return servicesMap, nil
|
|
}
|
|
|
|
// 生成唯一ID
|
|
func (this *NodeClusterDAO) genUniqueId(tx *dbs.Tx) (string, error) {
|
|
for {
|
|
uniqueId := rands.HexString(32)
|
|
ok, err := this.Query(tx).
|
|
Attr("uniqueId", uniqueId).
|
|
Exist()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if ok {
|
|
continue
|
|
}
|
|
return uniqueId, nil
|
|
}
|
|
}
|
|
|
|
// 通知更新
|
|
func (this *NodeClusterDAO) NotifyUpdate(tx *dbs.Tx, clusterId int64) error {
|
|
return SharedNodeTaskDAO.CreateClusterTask(tx, clusterId, NodeTaskTypeConfigChanged)
|
|
}
|