2020-09-06 16:19:54 +08:00
|
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2020-10-13 20:05:13 +08:00
|
|
|
|
"encoding/json"
|
2020-09-06 16:19:54 +08:00
|
|
|
|
"errors"
|
2024-07-27 14:15:25 +08:00
|
|
|
|
"net"
|
|
|
|
|
|
"strconv"
|
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
2022-04-23 12:32:30 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeAPI/internal/configs"
|
|
|
|
|
|
"github.com/TeaOSLab/EdgeAPI/internal/remotelogs"
|
2021-05-11 22:48:04 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeAPI/internal/utils"
|
2021-05-26 14:40:05 +08:00
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
2020-09-06 16:19:54 +08:00
|
|
|
|
_ "github.com/go-sql-driver/mysql"
|
|
|
|
|
|
"github.com/iwind/TeaGo/Tea"
|
|
|
|
|
|
"github.com/iwind/TeaGo/dbs"
|
2021-12-06 10:09:37 +08:00
|
|
|
|
"github.com/iwind/TeaGo/lists"
|
2020-10-13 20:05:13 +08:00
|
|
|
|
"github.com/iwind/TeaGo/maps"
|
2020-09-06 16:19:54 +08:00
|
|
|
|
"github.com/iwind/TeaGo/rands"
|
|
|
|
|
|
"github.com/iwind/TeaGo/types"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
|
APINodeStateEnabled = 1 // 已启用
|
|
|
|
|
|
APINodeStateDisabled = 0 // 已禁用
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type APINodeDAO dbs.DAO
|
|
|
|
|
|
|
|
|
|
|
|
func NewAPINodeDAO() *APINodeDAO {
|
|
|
|
|
|
return dbs.NewDAO(&APINodeDAO{
|
|
|
|
|
|
DAOObject: dbs.DAOObject{
|
|
|
|
|
|
DB: Tea.Env,
|
2020-09-23 10:12:57 +08:00
|
|
|
|
Table: "edgeAPINodes",
|
2020-09-06 16:19:54 +08:00
|
|
|
|
Model: new(APINode),
|
|
|
|
|
|
PkName: "id",
|
|
|
|
|
|
},
|
|
|
|
|
|
}).(*APINodeDAO)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-13 20:05:13 +08:00
|
|
|
|
var SharedAPINodeDAO *APINodeDAO
|
|
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
|
dbs.OnReady(func() {
|
|
|
|
|
|
SharedAPINodeDAO = NewAPINodeDAO()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2020-09-06 16:19:54 +08:00
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// EnableAPINode 启用条目
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) EnableAPINode(tx *dbs.Tx, id int64) error {
|
|
|
|
|
|
_, err := this.Query(tx).
|
2020-09-06 16:19:54 +08:00
|
|
|
|
Pk(id).
|
|
|
|
|
|
Set("state", APINodeStateEnabled).
|
|
|
|
|
|
Update()
|
2022-04-23 12:32:30 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
return this.NotifyUpdate(tx, id)
|
2020-09-06 16:19:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// DisableAPINode 禁用条目
|
2022-07-07 20:31:12 +08:00
|
|
|
|
func (this *APINodeDAO) DisableAPINode(tx *dbs.Tx, nodeId int64) error {
|
2021-01-01 23:31:30 +08:00
|
|
|
|
_, err := this.Query(tx).
|
2022-07-07 20:31:12 +08:00
|
|
|
|
Pk(nodeId).
|
2020-09-06 16:19:54 +08:00
|
|
|
|
Set("state", APINodeStateDisabled).
|
|
|
|
|
|
Update()
|
2022-04-23 12:32:30 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
2022-07-07 20:31:12 +08:00
|
|
|
|
|
|
|
|
|
|
err = this.NotifyUpdate(tx, nodeId)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 删除运行日志
|
|
|
|
|
|
return SharedNodeLogDAO.DeleteNodeLogs(tx, nodeconfigs.NodeRoleAPI, nodeId)
|
2020-09-06 16:19:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// FindEnabledAPINode 查找启用中的条目
|
2022-01-19 16:53:52 +08:00
|
|
|
|
func (this *APINodeDAO) FindEnabledAPINode(tx *dbs.Tx, id int64, cacheMap *utils.CacheMap) (*APINode, error) {
|
|
|
|
|
|
var cacheKey = this.Table + ":FindEnabledAPINode:" + types.String(id)
|
|
|
|
|
|
if cacheMap != nil {
|
|
|
|
|
|
cache, ok := cacheMap.Get(cacheKey)
|
|
|
|
|
|
if ok {
|
|
|
|
|
|
return cache.(*APINode), nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
|
result, err := this.Query(tx).
|
2020-09-06 16:19:54 +08:00
|
|
|
|
Pk(id).
|
|
|
|
|
|
Attr("state", APINodeStateEnabled).
|
|
|
|
|
|
Find()
|
|
|
|
|
|
if result == nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
2022-01-19 16:53:52 +08:00
|
|
|
|
|
|
|
|
|
|
if cacheMap != nil {
|
|
|
|
|
|
cacheMap.Put(cacheKey, result)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-06 16:19:54 +08:00
|
|
|
|
return result.(*APINode), err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// FindEnabledAPINodeWithUniqueIdAndSecret 根据ID和Secret查找节点
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) FindEnabledAPINodeWithUniqueIdAndSecret(tx *dbs.Tx, uniqueId string, secret string) (*APINode, error) {
|
|
|
|
|
|
one, err := this.Query(tx).
|
2020-10-04 14:27:14 +08:00
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Attr("uniqueId", uniqueId).
|
|
|
|
|
|
Attr("secret", secret).
|
|
|
|
|
|
Find()
|
|
|
|
|
|
if err != nil || one == nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
return one.(*APINode), nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// FindAPINodeName 根据主键查找名称
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) FindAPINodeName(tx *dbs.Tx, id int64) (string, error) {
|
|
|
|
|
|
return this.Query(tx).
|
2020-09-06 16:19:54 +08:00
|
|
|
|
Pk(id).
|
|
|
|
|
|
Result("name").
|
|
|
|
|
|
FindStringCol("")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// CreateAPINode 创建API节点
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) CreateAPINode(tx *dbs.Tx, name string, description string, httpJSON []byte, httpsJSON []byte, restIsOn bool, restHTTPJSON []byte, restHTTPSJSON []byte, accessAddrsJSON []byte, isOn bool) (nodeId int64, err error) {
|
|
|
|
|
|
uniqueId, err := this.genUniqueId(tx)
|
2020-09-06 16:19:54 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return 0, err
|
|
|
|
|
|
}
|
|
|
|
|
|
secret := rands.String(32)
|
2021-05-26 14:40:05 +08:00
|
|
|
|
err = NewApiTokenDAO().CreateAPIToken(tx, uniqueId, secret, nodeconfigs.NodeRoleAPI)
|
2020-09-06 16:19:54 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-07-24 09:56:27 +08:00
|
|
|
|
var op = NewAPINodeOperator()
|
2020-10-04 14:27:14 +08:00
|
|
|
|
op.IsOn = isOn
|
2020-09-06 16:19:54 +08:00
|
|
|
|
op.UniqueId = uniqueId
|
|
|
|
|
|
op.Secret = secret
|
|
|
|
|
|
op.Name = name
|
|
|
|
|
|
op.Description = description
|
2020-10-04 14:27:14 +08:00
|
|
|
|
|
|
|
|
|
|
if len(httpJSON) > 0 {
|
|
|
|
|
|
op.Http = httpJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
if len(httpsJSON) > 0 {
|
|
|
|
|
|
op.Https = httpsJSON
|
|
|
|
|
|
}
|
2021-01-01 20:49:09 +08:00
|
|
|
|
op.RestIsOn = restIsOn
|
|
|
|
|
|
if len(restHTTPJSON) > 0 {
|
|
|
|
|
|
op.RestHTTP = restHTTPJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
if len(restHTTPSJSON) > 0 {
|
|
|
|
|
|
op.RestHTTPS = restHTTPSJSON
|
|
|
|
|
|
}
|
2020-10-04 14:27:14 +08:00
|
|
|
|
if len(accessAddrsJSON) > 0 {
|
|
|
|
|
|
op.AccessAddrs = accessAddrsJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-06 16:19:54 +08:00
|
|
|
|
op.State = NodeStateEnabled
|
2021-01-01 23:31:30 +08:00
|
|
|
|
err = this.Save(tx, op)
|
2020-09-06 16:19:54 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-23 12:32:30 +08:00
|
|
|
|
err = this.NotifyUpdate(tx, types.Int64(op.Id))
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
remotelogs.Error("API_NODE_DAO", err.Error())
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-06 16:19:54 +08:00
|
|
|
|
return types.Int64(op.Id), nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// UpdateAPINode 修改API节点
|
2022-04-23 12:32:30 +08:00
|
|
|
|
func (this *APINodeDAO) UpdateAPINode(tx *dbs.Tx, nodeId int64, name string, description string, httpJSON []byte, httpsJSON []byte, restIsOn bool, restHTTPJSON []byte, restHTTPSJSON []byte, accessAddrsJSON []byte, isOn bool, isPrimary bool) error {
|
2020-09-06 16:19:54 +08:00
|
|
|
|
if nodeId <= 0 {
|
|
|
|
|
|
return errors.New("invalid nodeId")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-23 12:32:30 +08:00
|
|
|
|
// 取消别的Primary
|
|
|
|
|
|
if isPrimary {
|
|
|
|
|
|
err := this.Query(tx).
|
|
|
|
|
|
Neq("id", nodeId).
|
|
|
|
|
|
Attr("isPrimary", true).
|
|
|
|
|
|
Set("isPrimary", false).
|
|
|
|
|
|
UpdateQuickly()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var op = NewAPINodeOperator()
|
2020-09-06 16:19:54 +08:00
|
|
|
|
op.Id = nodeId
|
|
|
|
|
|
op.Name = name
|
|
|
|
|
|
op.Description = description
|
2020-10-04 14:27:14 +08:00
|
|
|
|
op.IsOn = isOn
|
|
|
|
|
|
|
|
|
|
|
|
if len(httpJSON) > 0 {
|
|
|
|
|
|
op.Http = httpJSON
|
|
|
|
|
|
} else {
|
2021-01-01 20:49:09 +08:00
|
|
|
|
op.Http = "{}"
|
2020-10-04 14:27:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
if len(httpsJSON) > 0 {
|
|
|
|
|
|
op.Https = httpsJSON
|
|
|
|
|
|
} else {
|
2021-01-01 20:49:09 +08:00
|
|
|
|
op.Https = "{}"
|
|
|
|
|
|
}
|
|
|
|
|
|
op.RestIsOn = restIsOn
|
|
|
|
|
|
if len(restHTTPJSON) > 0 {
|
|
|
|
|
|
op.RestHTTP = restHTTPJSON
|
|
|
|
|
|
} else {
|
|
|
|
|
|
op.RestHTTP = "{}"
|
|
|
|
|
|
}
|
|
|
|
|
|
if len(restHTTPSJSON) > 0 {
|
|
|
|
|
|
op.RestHTTPS = restHTTPSJSON
|
|
|
|
|
|
} else {
|
|
|
|
|
|
op.RestHTTPS = "{}"
|
2020-10-04 14:27:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
if len(accessAddrsJSON) > 0 {
|
|
|
|
|
|
op.AccessAddrs = accessAddrsJSON
|
|
|
|
|
|
} else {
|
2021-01-01 20:49:09 +08:00
|
|
|
|
op.AccessAddrs = "[]"
|
2020-10-04 14:27:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-23 12:32:30 +08:00
|
|
|
|
op.IsPrimary = isPrimary
|
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
|
err := this.Save(tx, op)
|
2022-04-23 12:32:30 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
return this.NotifyUpdate(tx, nodeId)
|
2020-09-06 16:19:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// FindAllEnabledAPINodes 列出所有可用API节点
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) FindAllEnabledAPINodes(tx *dbs.Tx) (result []*APINode, err error) {
|
|
|
|
|
|
_, err = this.Query(tx).
|
2020-09-06 16:19:54 +08:00
|
|
|
|
Attr("clusterId", 0). // 非集群专用
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Desc("order").
|
|
|
|
|
|
AscPk().
|
|
|
|
|
|
Slice(&result).
|
|
|
|
|
|
FindAll()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// FindAllEnabledAndOnAPINodes 列出所有可用而且启用的API节点
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) FindAllEnabledAndOnAPINodes(tx *dbs.Tx) (result []*APINode, err error) {
|
|
|
|
|
|
_, err = this.Query(tx).
|
2020-10-26 21:14:56 +08:00
|
|
|
|
Attr("clusterId", 0). // 非集群专用
|
|
|
|
|
|
Attr("isOn", true).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Desc("order").
|
|
|
|
|
|
AscPk().
|
|
|
|
|
|
Slice(&result).
|
|
|
|
|
|
FindAll()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// CountAllEnabledAPINodes 计算API节点数量
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) CountAllEnabledAPINodes(tx *dbs.Tx) (int64, error) {
|
|
|
|
|
|
return this.Query(tx).
|
2020-09-06 16:19:54 +08:00
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Count()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-09-27 09:23:41 +08:00
|
|
|
|
// CountAllEnabledAndOnAPINodes 计算启用中的API节点数量
|
|
|
|
|
|
func (this *APINodeDAO) CountAllEnabledAndOnAPINodes(tx *dbs.Tx) (int64, error) {
|
|
|
|
|
|
return this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Attr("isOn", true).
|
|
|
|
|
|
Count()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CountAllEnabledAndOnOfflineAPINodes 计算API节点数量
|
|
|
|
|
|
func (this *APINodeDAO) CountAllEnabledAndOnOfflineAPINodes(tx *dbs.Tx) (int64, error) {
|
|
|
|
|
|
return this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Attr("isOn", true).
|
|
|
|
|
|
Where("(status IS NULL OR NOT JSON_EXTRACT(status, '$.isActive') OR UNIX_TIMESTAMP()-JSON_EXTRACT(status, '$.updatedAt')>60)").
|
|
|
|
|
|
Count()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// ListEnabledAPINodes 列出单页的API节点
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) ListEnabledAPINodes(tx *dbs.Tx, offset int64, size int64) (result []*APINode, err error) {
|
|
|
|
|
|
_, err = this.Query(tx).
|
2020-09-06 16:19:54 +08:00
|
|
|
|
Attr("clusterId", 0). // 非集群专用
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Offset(offset).
|
|
|
|
|
|
Limit(size).
|
|
|
|
|
|
Desc("order").
|
|
|
|
|
|
DescPk().
|
|
|
|
|
|
Slice(&result).
|
|
|
|
|
|
FindAll()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// FindEnabledAPINodeIdWithAddr 根据主机名和端口获取ID
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) FindEnabledAPINodeIdWithAddr(tx *dbs.Tx, protocol string, host string, port int) (int64, error) {
|
2020-10-13 20:05:13 +08:00
|
|
|
|
addr := maps.Map{
|
|
|
|
|
|
"protocol": protocol,
|
|
|
|
|
|
"host": host,
|
|
|
|
|
|
"portRange": strconv.Itoa(port),
|
|
|
|
|
|
}
|
|
|
|
|
|
addrJSON, err := json.Marshal(addr)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return 0, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-01-01 23:31:30 +08:00
|
|
|
|
one, err := this.Query(tx).
|
2020-10-13 20:05:13 +08:00
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Where("JSON_CONTAINS(accessAddrs, :addr)").
|
|
|
|
|
|
Param("addr", string(addrJSON)).
|
|
|
|
|
|
ResultPk().
|
|
|
|
|
|
Find()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return 0, err
|
|
|
|
|
|
}
|
|
|
|
|
|
if one == nil {
|
|
|
|
|
|
return 0, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
return int64(one.(*APINode).Id), nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// UpdateAPINodeStatus 设置API节点状态
|
2021-01-01 23:31:30 +08:00
|
|
|
|
func (this *APINodeDAO) UpdateAPINodeStatus(tx *dbs.Tx, apiNodeId int64, statusJSON []byte) error {
|
|
|
|
|
|
_, err := this.Query(tx).
|
2020-12-29 18:28:07 +08:00
|
|
|
|
Pk(apiNodeId).
|
|
|
|
|
|
Set("status", statusJSON).
|
|
|
|
|
|
Update()
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-11 22:48:04 +08:00
|
|
|
|
// CountAllLowerVersionNodes 计算所有节点中低于某个版本的节点数量
|
|
|
|
|
|
func (this *APINodeDAO) CountAllLowerVersionNodes(tx *dbs.Tx, version string) (int64, error) {
|
|
|
|
|
|
return this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
2023-06-12 14:04:50 +08:00
|
|
|
|
Attr("isOn", true).
|
2021-05-11 22:48:04 +08:00
|
|
|
|
Where("status IS NOT NULL").
|
|
|
|
|
|
Where("(JSON_EXTRACT(status, '$.buildVersionCode') IS NULL OR JSON_EXTRACT(status, '$.buildVersionCode')<:version)").
|
|
|
|
|
|
Param("version", utils.VersionToLong(version)).
|
|
|
|
|
|
Count()
|
|
|
|
|
|
}
|
2021-11-05 17:56:35 +08:00
|
|
|
|
|
|
|
|
|
|
// CountAllEnabledAPINodesWithSSLPolicyIds 计算使用SSL策略的所有API节点数量
|
|
|
|
|
|
func (this *APINodeDAO) CountAllEnabledAPINodesWithSSLPolicyIds(tx *dbs.Tx, sslPolicyIds []int64) (count int64, err error) {
|
|
|
|
|
|
if len(sslPolicyIds) == 0 {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
policyStringIds := []string{}
|
|
|
|
|
|
for _, policyId := range sslPolicyIds {
|
|
|
|
|
|
policyStringIds = append(policyStringIds, strconv.FormatInt(policyId, 10))
|
|
|
|
|
|
}
|
|
|
|
|
|
return this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Where("(FIND_IN_SET(JSON_EXTRACT(https, '$.sslPolicyRef.sslPolicyId'), :policyIds) OR FIND_IN_SET(JSON_EXTRACT(restHTTPS, '$.sslPolicyRef.sslPolicyId'), :policyIds))").
|
|
|
|
|
|
Param("policyIds", strings.Join(policyStringIds, ",")).
|
|
|
|
|
|
Count()
|
|
|
|
|
|
}
|
2021-12-06 10:09:37 +08:00
|
|
|
|
|
|
|
|
|
|
// FindAllEnabledAPIAccessIPs 获取所有的API可访问IP地址
|
|
|
|
|
|
func (this *APINodeDAO) FindAllEnabledAPIAccessIPs(tx *dbs.Tx, cacheMap *utils.CacheMap) ([]string, error) {
|
|
|
|
|
|
var cacheKey = this.Table + ":FindAllEnabledAPIAccessIPs"
|
|
|
|
|
|
if cacheMap != nil {
|
|
|
|
|
|
cache, ok := cacheMap.Get(cacheKey)
|
|
|
|
|
|
if ok {
|
|
|
|
|
|
return cache.([]string), nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ones, _, err := this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Result("JSON_EXTRACT(accessAddrs, '$[*].host') AS host").
|
|
|
|
|
|
FindOnes()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
var result = []string{}
|
|
|
|
|
|
for _, one := range ones {
|
|
|
|
|
|
var host = one.GetString("host")
|
|
|
|
|
|
if len(host) == 0 {
|
|
|
|
|
|
continue
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var ips = []string{}
|
|
|
|
|
|
err = json.Unmarshal([]byte(host), &ips)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
continue
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for _, ip := range ips {
|
|
|
|
|
|
if !lists.ContainsString(result, ip) {
|
|
|
|
|
|
if net.ParseIP(ip) == nil {
|
|
|
|
|
|
continue
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
result = append(result, ip)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if cacheMap != nil {
|
|
|
|
|
|
cacheMap.Put(cacheKey, result)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
|
|
}
|
2022-04-23 12:32:30 +08:00
|
|
|
|
|
|
|
|
|
|
// CheckAPINodeIsPrimary 检查当前节点是否为Primary节点
|
|
|
|
|
|
func (this *APINodeDAO) CheckAPINodeIsPrimary(tx *dbs.Tx) (bool, error) {
|
|
|
|
|
|
config, err := configs.SharedAPIConfig()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return false, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
isPrimary, err := this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Attr("uniqueId", config.NodeId).
|
|
|
|
|
|
Attr("isPrimary", true).
|
|
|
|
|
|
Exist()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return false, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if isPrimary {
|
|
|
|
|
|
return true, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 检查是否有别的Primary节点
|
|
|
|
|
|
count, err := this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Attr("isOn", true).
|
|
|
|
|
|
Attr("isPrimary", true).
|
|
|
|
|
|
Count()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return false, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if count == 0 {
|
|
|
|
|
|
err = this.ResetPrimaryAPINode(tx)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return false, err
|
|
|
|
|
|
}
|
|
|
|
|
|
return true, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
return false, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CheckAPINodeIsPrimaryWithoutErr 检查当前节点是否为Primary节点,并忽略错误
|
|
|
|
|
|
func (this *APINodeDAO) CheckAPINodeIsPrimaryWithoutErr() bool {
|
|
|
|
|
|
b, err := this.CheckAPINodeIsPrimary(nil)
|
|
|
|
|
|
return b && err == nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ResetPrimaryAPINode 重置Primary节点
|
|
|
|
|
|
func (this *APINodeDAO) ResetPrimaryAPINode(tx *dbs.Tx) error {
|
|
|
|
|
|
// 当前是否有Primary节点
|
|
|
|
|
|
apiNode, err := this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Attr("isOn", true).
|
|
|
|
|
|
Attr("isPrimary", true).
|
|
|
|
|
|
Find()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
if apiNode == nil {
|
|
|
|
|
|
// 选择一个作为Primary
|
|
|
|
|
|
// TODO 将来需要考虑API节点离线的情况
|
|
|
|
|
|
apiNodeId, err := this.Query(tx).
|
|
|
|
|
|
State(APINodeStateEnabled).
|
|
|
|
|
|
Attr("isOn", true).
|
|
|
|
|
|
ResultPk().
|
|
|
|
|
|
FindInt64Col(0)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
if apiNodeId > 0 {
|
|
|
|
|
|
err = this.Query(tx).
|
|
|
|
|
|
Pk(apiNodeId).
|
|
|
|
|
|
Set("isPrimary", true).
|
|
|
|
|
|
UpdateQuickly()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// NotifyUpdate 通知变更
|
|
|
|
|
|
func (this *APINodeDAO) NotifyUpdate(tx *dbs.Tx, apiNodeId int64) error {
|
|
|
|
|
|
// suppress IDE warning
|
|
|
|
|
|
_ = apiNodeId
|
|
|
|
|
|
|
|
|
|
|
|
err := this.ResetPrimaryAPINode(tx)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 生成唯一ID
|
|
|
|
|
|
func (this *APINodeDAO) 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
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|