mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
198 lines
4.9 KiB
Go
198 lines
4.9 KiB
Go
package models
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"strings"
|
|
|
|
"github.com/TeaOSLab/EdgeAPI/internal/encrypt"
|
|
"github.com/TeaOSLab/EdgeAPI/internal/errors"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/iwind/TeaGo/Tea"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
"github.com/iwind/TeaGo/types"
|
|
)
|
|
|
|
const (
|
|
DBNodeStateEnabled = 1 // 已启用
|
|
DBNodeStateDisabled = 0 // 已禁用
|
|
)
|
|
|
|
type DBNodeDAO dbs.DAO
|
|
|
|
const DBNodePasswordEncodedPrefix = "EDGE_ENCODED:"
|
|
|
|
func NewDBNodeDAO() *DBNodeDAO {
|
|
return dbs.NewDAO(&DBNodeDAO{
|
|
DAOObject: dbs.DAOObject{
|
|
DB: Tea.Env,
|
|
Table: "edgeDBNodes",
|
|
Model: new(DBNode),
|
|
PkName: "id",
|
|
},
|
|
}).(*DBNodeDAO)
|
|
}
|
|
|
|
var SharedDBNodeDAO *DBNodeDAO
|
|
|
|
func init() {
|
|
dbs.OnReady(func() {
|
|
SharedDBNodeDAO = NewDBNodeDAO()
|
|
})
|
|
}
|
|
|
|
// EnableDBNode 启用条目
|
|
func (this *DBNodeDAO) EnableDBNode(tx *dbs.Tx, id int64) error {
|
|
_, err := this.Query(tx).
|
|
Pk(id).
|
|
Set("state", DBNodeStateEnabled).
|
|
Update()
|
|
return err
|
|
}
|
|
|
|
// DisableDBNode 禁用条目
|
|
func (this *DBNodeDAO) DisableDBNode(tx *dbs.Tx, nodeId int64) error {
|
|
_, err := this.Query(tx).
|
|
Pk(nodeId).
|
|
Set("state", DBNodeStateDisabled).
|
|
Update()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// 删除运行日志
|
|
return SharedNodeLogDAO.DeleteNodeLogs(tx, nodeconfigs.NodeRoleDatabase, nodeId)
|
|
}
|
|
|
|
// FindEnabledDBNode 查找启用中的条目
|
|
func (this *DBNodeDAO) FindEnabledDBNode(tx *dbs.Tx, id int64) (*DBNode, error) {
|
|
result, err := this.Query(tx).
|
|
Pk(id).
|
|
Attr("state", DBNodeStateEnabled).
|
|
Find()
|
|
if result == nil {
|
|
return nil, err
|
|
}
|
|
node := result.(*DBNode)
|
|
node.Password = this.DecodePassword(node.Password)
|
|
return node, nil
|
|
}
|
|
|
|
// FindDBNodeName 根据主键查找名称
|
|
func (this *DBNodeDAO) FindDBNodeName(tx *dbs.Tx, id int64) (string, error) {
|
|
return this.Query(tx).
|
|
Pk(id).
|
|
Result("name").
|
|
FindStringCol("")
|
|
}
|
|
|
|
// CountAllEnabledNodes 计算可用的节点数量
|
|
func (this *DBNodeDAO) CountAllEnabledNodes(tx *dbs.Tx) (int64, error) {
|
|
return this.Query(tx).
|
|
State(DBNodeStateEnabled).
|
|
Count()
|
|
}
|
|
|
|
// ListEnabledNodes 获取单页的节点
|
|
func (this *DBNodeDAO) ListEnabledNodes(tx *dbs.Tx, offset int64, size int64) (result []*DBNode, err error) {
|
|
_, err = this.Query(tx).
|
|
State(DBNodeStateEnabled).
|
|
Offset(offset).
|
|
Limit(size).
|
|
Slice(&result).
|
|
DescPk().
|
|
FindAll()
|
|
for _, node := range result {
|
|
node.Password = this.DecodePassword(node.Password)
|
|
}
|
|
return
|
|
}
|
|
|
|
// CreateDBNode 创建节点
|
|
func (this *DBNodeDAO) CreateDBNode(tx *dbs.Tx, isOn bool, name string, description string, host string, port int32, database string, username string, password string, charset string) (int64, error) {
|
|
var op = NewDBNodeOperator()
|
|
op.State = NodeStateEnabled
|
|
op.IsOn = isOn
|
|
op.Name = name
|
|
op.Description = description
|
|
op.Host = host
|
|
op.Port = port
|
|
op.Database = database
|
|
op.Username = username
|
|
op.Password = this.EncodePassword(password)
|
|
op.Charset = charset
|
|
err := this.Save(tx, op)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return types.Int64(op.Id), nil
|
|
}
|
|
|
|
// UpdateNode 修改节点
|
|
func (this *DBNodeDAO) UpdateNode(tx *dbs.Tx, nodeId int64, isOn bool, name string, description string, host string, port int32, database string, username string, password string, charset string) error {
|
|
if nodeId <= 0 {
|
|
return errors.New("invalid nodeId")
|
|
}
|
|
var op = NewDBNodeOperator()
|
|
op.Id = nodeId
|
|
op.IsOn = isOn
|
|
op.Name = name
|
|
op.Description = description
|
|
op.Host = host
|
|
op.Port = port
|
|
op.Database = database
|
|
op.Username = username
|
|
op.Password = this.EncodePassword(password)
|
|
op.Charset = charset
|
|
err := this.Save(tx, op)
|
|
return err
|
|
}
|
|
|
|
// FindAllEnabledAndOnDBNodes 查找所有可用的数据库节点
|
|
func (this *DBNodeDAO) FindAllEnabledAndOnDBNodes(tx *dbs.Tx) (result []*DBNode, err error) {
|
|
_, err = this.Query(tx).
|
|
State(DBNodeStateEnabled).
|
|
Attr("isOn", true).
|
|
Slice(&result).
|
|
DescPk().
|
|
FindAll()
|
|
for _, node := range result {
|
|
node.Password = this.DecodePassword(node.Password)
|
|
}
|
|
return
|
|
}
|
|
|
|
// EncodePassword 加密密码
|
|
func (this *DBNodeDAO) EncodePassword(password string) string {
|
|
if strings.HasPrefix(password, DBNodePasswordEncodedPrefix) {
|
|
return password
|
|
}
|
|
encodedString := base64.StdEncoding.EncodeToString(encrypt.MagicKeyEncode([]byte(password)))
|
|
return DBNodePasswordEncodedPrefix + encodedString
|
|
}
|
|
|
|
// DecodePassword 解密密码
|
|
func (this *DBNodeDAO) DecodePassword(password string) string {
|
|
if !strings.HasPrefix(password, DBNodePasswordEncodedPrefix) {
|
|
return password
|
|
}
|
|
dataString := password[len(DBNodePasswordEncodedPrefix):]
|
|
data, err := base64.StdEncoding.DecodeString(dataString)
|
|
if err != nil {
|
|
return password
|
|
}
|
|
return string(encrypt.MagicKeyDecode(data))
|
|
}
|
|
|
|
// CheckNodeIsOn 检查节点是否已经启用
|
|
func (this *DBNodeDAO) CheckNodeIsOn(tx *dbs.Tx, nodeId int64) (bool, error) {
|
|
isOn, err := this.Query(tx).
|
|
Pk(nodeId).
|
|
Result("isOn").
|
|
FindIntCol(0)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return isOn == 1, nil
|
|
}
|