mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			184 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			184 lines
		
	
	
		
			5.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import (
 | 
						|
	"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"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	NodeThresholdStateEnabled  = 1 // 已启用
 | 
						|
	NodeThresholdStateDisabled = 0 // 已禁用
 | 
						|
)
 | 
						|
 | 
						|
type NodeThresholdDAO dbs.DAO
 | 
						|
 | 
						|
func NewNodeThresholdDAO() *NodeThresholdDAO {
 | 
						|
	return dbs.NewDAO(&NodeThresholdDAO{
 | 
						|
		DAOObject: dbs.DAOObject{
 | 
						|
			DB:     Tea.Env,
 | 
						|
			Table:  "edgeNodeThresholds",
 | 
						|
			Model:  new(NodeThreshold),
 | 
						|
			PkName: "id",
 | 
						|
		},
 | 
						|
	}).(*NodeThresholdDAO)
 | 
						|
}
 | 
						|
 | 
						|
var SharedNodeThresholdDAO *NodeThresholdDAO
 | 
						|
 | 
						|
func init() {
 | 
						|
	dbs.OnReady(func() {
 | 
						|
		SharedNodeThresholdDAO = NewNodeThresholdDAO()
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
// EnableNodeThreshold 启用条目
 | 
						|
func (this *NodeThresholdDAO) EnableNodeThreshold(tx *dbs.Tx, id int64) error {
 | 
						|
	_, err := this.Query(tx).
 | 
						|
		Pk(id).
 | 
						|
		Set("state", NodeThresholdStateEnabled).
 | 
						|
		Update()
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// DisableNodeThreshold 禁用条目
 | 
						|
func (this *NodeThresholdDAO) DisableNodeThreshold(tx *dbs.Tx, id int64) error {
 | 
						|
	_, err := this.Query(tx).
 | 
						|
		Pk(id).
 | 
						|
		Set("state", NodeThresholdStateDisabled).
 | 
						|
		Update()
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// FindEnabledNodeThreshold 查找启用中的条目
 | 
						|
func (this *NodeThresholdDAO) FindEnabledNodeThreshold(tx *dbs.Tx, id int64) (*NodeThreshold, error) {
 | 
						|
	result, err := this.Query(tx).
 | 
						|
		Pk(id).
 | 
						|
		Attr("state", NodeThresholdStateEnabled).
 | 
						|
		Find()
 | 
						|
	if result == nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return result.(*NodeThreshold), err
 | 
						|
}
 | 
						|
 | 
						|
// CreateThreshold 创建阈值
 | 
						|
func (this *NodeThresholdDAO) CreateThreshold(tx *dbs.Tx, role string, clusterId int64, nodeId int64, item nodeconfigs.NodeValueItem, param string, operator nodeconfigs.NodeValueOperator, valueJSON []byte, message string, sumMethod nodeconfigs.NodeValueSumMethod, duration int32, durationUnit nodeconfigs.NodeValueDurationUnit, notifyDuration int32) (int64, error) {
 | 
						|
	var op = NewNodeThresholdOperator()
 | 
						|
	op.Role = role
 | 
						|
	op.ClusterId = clusterId
 | 
						|
	op.NodeId = nodeId
 | 
						|
	op.Item = item
 | 
						|
	op.Param = param
 | 
						|
	op.Operator = operator
 | 
						|
	op.Value = valueJSON
 | 
						|
	op.Message = message
 | 
						|
	op.SumMethod = sumMethod
 | 
						|
	op.Duration = duration
 | 
						|
	op.DurationUnit = durationUnit
 | 
						|
	op.NotifyDuration = notifyDuration
 | 
						|
	op.IsOn = true
 | 
						|
	op.State = NodeThresholdStateEnabled
 | 
						|
	return this.SaveInt64(tx, op)
 | 
						|
}
 | 
						|
 | 
						|
// UpdateThreshold 修改阈值
 | 
						|
func (this *NodeThresholdDAO) UpdateThreshold(tx *dbs.Tx, thresholdId int64, item nodeconfigs.NodeValueItem, param string, operator nodeconfigs.NodeValueOperator, valueJSON []byte, message string, sumMethod nodeconfigs.NodeValueSumMethod, duration int32, durationUnit nodeconfigs.NodeValueDurationUnit, notifyDuration int32, isOn bool) error {
 | 
						|
	if thresholdId <= 0 {
 | 
						|
		return errors.New("invalid thresholdId")
 | 
						|
	}
 | 
						|
	var op = NewNodeThresholdOperator()
 | 
						|
	op.Id = thresholdId
 | 
						|
	op.Item = item
 | 
						|
	op.Param = param
 | 
						|
	op.Operator = operator
 | 
						|
	op.Value = valueJSON
 | 
						|
	op.Message = message
 | 
						|
	op.SumMethod = sumMethod
 | 
						|
	op.Duration = duration
 | 
						|
	op.DurationUnit = durationUnit
 | 
						|
	op.NotifyDuration = notifyDuration
 | 
						|
	op.IsOn = isOn
 | 
						|
	return this.Save(tx, op)
 | 
						|
}
 | 
						|
 | 
						|
// FindAllEnabledThresholds 列出所有阈值
 | 
						|
func (this *NodeThresholdDAO) FindAllEnabledThresholds(tx *dbs.Tx, role string, clusterId int64, nodeId int64) (result []*NodeThreshold, err error) {
 | 
						|
	if clusterId <= 0 && nodeId <= 0 {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	query := this.Query(tx)
 | 
						|
	if clusterId > 0 {
 | 
						|
		query.Attr("clusterId", clusterId)
 | 
						|
	}
 | 
						|
	if nodeId > 0 {
 | 
						|
		query.Attr("nodeId", nodeId)
 | 
						|
	}
 | 
						|
	query.State(NodeThresholdStateEnabled)
 | 
						|
	query.Slice(&result)
 | 
						|
	_, err = query.
 | 
						|
		Attr("role", role).
 | 
						|
		Asc("IF(nodeId>0, 1, 0)").
 | 
						|
		Desc("order").
 | 
						|
		AscPk().
 | 
						|
		FindAll()
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
// FindAllEnabledAndOnClusterThresholds 查询集群专属的阈值设置
 | 
						|
func (this *NodeThresholdDAO) FindAllEnabledAndOnClusterThresholds(tx *dbs.Tx, role string, clusterId int64, item string) (result []*NodeThreshold, err error) {
 | 
						|
	if clusterId <= 0 {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	_, err = this.Query(tx).
 | 
						|
		Attr("role", role).
 | 
						|
		Attr("clusterId", clusterId).
 | 
						|
		Attr("nodeId", 0).
 | 
						|
		Attr("item", item).
 | 
						|
		Attr("isOn", true).
 | 
						|
		State(NodeThresholdStateEnabled).
 | 
						|
		Desc("order").
 | 
						|
		AscPk().
 | 
						|
		Slice(&result).
 | 
						|
		FindAll()
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
// FindAllEnabledAndOnNodeThresholds 查询节点专属的阈值设置
 | 
						|
func (this *NodeThresholdDAO) FindAllEnabledAndOnNodeThresholds(tx *dbs.Tx, role string, clusterId int64, nodeId int64, item string) (result []*NodeThreshold, err error) {
 | 
						|
	if clusterId <= 0 || nodeId <= 0 {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	_, err = this.Query(tx).
 | 
						|
		Attr("role", role).
 | 
						|
		Attr("clusterId", clusterId).
 | 
						|
		Attr("nodeId", nodeId).
 | 
						|
		Attr("item", item).
 | 
						|
		Attr("isOn", true).
 | 
						|
		State(NodeThresholdStateEnabled).
 | 
						|
		Desc("order").
 | 
						|
		AscPk().
 | 
						|
		Slice(&result).
 | 
						|
		FindAll()
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
// CountAllEnabledThresholds 计算阈值的数量
 | 
						|
func (this *NodeThresholdDAO) CountAllEnabledThresholds(tx *dbs.Tx, role string, clusterId int64, nodeId int64) (int64, error) {
 | 
						|
	if clusterId <= 0 && nodeId <= 0 {
 | 
						|
		return 0, nil
 | 
						|
	}
 | 
						|
	query := this.Query(tx)
 | 
						|
	query.Attr("role", role)
 | 
						|
	if clusterId > 0 {
 | 
						|
		query.Attr("clusterId", clusterId)
 | 
						|
	}
 | 
						|
	if nodeId > 0 {
 | 
						|
		query.Attr("nodeId", nodeId)
 | 
						|
	}
 | 
						|
	query.State(NodeThresholdStateEnabled)
 | 
						|
	return query.Count()
 | 
						|
}
 |