mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			194 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			194 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package dns
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeAPI/internal/errors"
 | 
						|
	_ "github.com/go-sql-driver/mysql"
 | 
						|
	"github.com/iwind/TeaGo/Tea"
 | 
						|
	"github.com/iwind/TeaGo/dbs"
 | 
						|
	"github.com/iwind/TeaGo/maps"
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
type DNSTaskType = string
 | 
						|
 | 
						|
const (
 | 
						|
	DNSTaskTypeClusterChange       DNSTaskType = "clusterChange"
 | 
						|
	DNSTaskTypeClusterRemoveDomain DNSTaskType = "clusterRemoveDomain" // 从集群中移除域名
 | 
						|
	DNSTaskTypeNodeChange          DNSTaskType = "nodeChange"
 | 
						|
	DNSTaskTypeServerChange        DNSTaskType = "serverChange"
 | 
						|
	DNSTaskTypeDomainChange        DNSTaskType = "domainChange"
 | 
						|
)
 | 
						|
 | 
						|
type DNSTaskDAO dbs.DAO
 | 
						|
 | 
						|
func NewDNSTaskDAO() *DNSTaskDAO {
 | 
						|
	return dbs.NewDAO(&DNSTaskDAO{
 | 
						|
		DAOObject: dbs.DAOObject{
 | 
						|
			DB:     Tea.Env,
 | 
						|
			Table:  "edgeDNSTasks",
 | 
						|
			Model:  new(DNSTask),
 | 
						|
			PkName: "id",
 | 
						|
		},
 | 
						|
	}).(*DNSTaskDAO)
 | 
						|
}
 | 
						|
 | 
						|
var SharedDNSTaskDAO *DNSTaskDAO
 | 
						|
 | 
						|
func init() {
 | 
						|
	dbs.OnReady(func() {
 | 
						|
		SharedDNSTaskDAO = NewDNSTaskDAO()
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
// CreateDNSTask 生成任务
 | 
						|
func (this *DNSTaskDAO) CreateDNSTask(tx *dbs.Tx, clusterId int64, serverId int64, nodeId int64, domainId int64, recordName string, taskType string) error {
 | 
						|
	if clusterId <= 0 && serverId <= 0 && nodeId <= 0 && domainId <= 0 {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
	err := this.Query(tx).InsertOrUpdateQuickly(maps.Map{
 | 
						|
		"clusterId":  clusterId,
 | 
						|
		"serverId":   serverId,
 | 
						|
		"nodeId":     nodeId,
 | 
						|
		"domainId":   domainId,
 | 
						|
		"recordName": recordName,
 | 
						|
		"updatedAt":  time.Now().Unix(),
 | 
						|
		"type":       taskType,
 | 
						|
		"isDone":     false,
 | 
						|
		"isOk":       false,
 | 
						|
		"error":      "",
 | 
						|
		"version":    time.Now().UnixNano(),
 | 
						|
	}, maps.Map{
 | 
						|
		"updatedAt": time.Now().Unix(),
 | 
						|
		"isDone":    false,
 | 
						|
		"isOk":      false,
 | 
						|
		"error":     "",
 | 
						|
		"version":   time.Now().UnixNano(),
 | 
						|
	})
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// CreateClusterTask 生成集群变更任务
 | 
						|
func (this *DNSTaskDAO) CreateClusterTask(tx *dbs.Tx, clusterId int64, taskType DNSTaskType) error {
 | 
						|
	return this.CreateDNSTask(tx, clusterId, 0, 0, 0, "", taskType)
 | 
						|
}
 | 
						|
 | 
						|
// CreateClusterRemoveTask 生成集群删除域名任务
 | 
						|
func (this *DNSTaskDAO) CreateClusterRemoveTask(tx *dbs.Tx, clusterId int64, domainId int64, recordName string) error {
 | 
						|
	return this.CreateDNSTask(tx, clusterId, 0, 0, domainId, recordName, DNSTaskTypeClusterRemoveDomain)
 | 
						|
}
 | 
						|
 | 
						|
// CreateNodeTask 生成节点任务
 | 
						|
func (this *DNSTaskDAO) CreateNodeTask(tx *dbs.Tx, clusterId int64, nodeId int64, taskType DNSTaskType) error {
 | 
						|
	return this.CreateDNSTask(tx, clusterId, 0, nodeId, 0, "", taskType)
 | 
						|
}
 | 
						|
 | 
						|
// CreateServerTask 生成服务任务
 | 
						|
func (this *DNSTaskDAO) CreateServerTask(tx *dbs.Tx, clusterId int64, serverId int64, taskType DNSTaskType) error {
 | 
						|
	return this.CreateDNSTask(tx, clusterId, serverId, 0, 0, "", taskType)
 | 
						|
}
 | 
						|
 | 
						|
// CreateDomainTask 生成域名更新任务
 | 
						|
func (this *DNSTaskDAO) CreateDomainTask(tx *dbs.Tx, domainId int64, taskType DNSTaskType) error {
 | 
						|
	return this.CreateDNSTask(tx, 0, 0, 0, domainId, "", taskType)
 | 
						|
}
 | 
						|
 | 
						|
// FindAllDoingTasks 查找所有正在执行的任务
 | 
						|
func (this *DNSTaskDAO) FindAllDoingTasks(tx *dbs.Tx) (result []*DNSTask, err error) {
 | 
						|
	_, err = this.Query(tx).
 | 
						|
		Attr("isDone", 0).
 | 
						|
		Asc("version").
 | 
						|
		AscPk().
 | 
						|
		Slice(&result).
 | 
						|
		FindAll()
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
// FindAllDoingOrErrorTasks 查找正在执行的和错误的任务
 | 
						|
func (this *DNSTaskDAO) FindAllDoingOrErrorTasks(tx *dbs.Tx, nodeClusterId int64) (result []*DNSTask, err error) {
 | 
						|
	var query = this.Query(tx)
 | 
						|
	if nodeClusterId > 0 {
 | 
						|
		query.Attr("clusterId", nodeClusterId)
 | 
						|
	}
 | 
						|
	_, err = query.
 | 
						|
		Where("(isDone=0 OR (isDone=1 AND isOk=0))").
 | 
						|
		Asc("updatedAt").
 | 
						|
		Asc("version").
 | 
						|
		AscPk().
 | 
						|
		Slice(&result).
 | 
						|
		FindAll()
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
// ExistDoingTasks 检查是否有正在执行的任务
 | 
						|
func (this *DNSTaskDAO) ExistDoingTasks(tx *dbs.Tx) (bool, error) {
 | 
						|
	return this.Query(tx).
 | 
						|
		Attr("isDone", 0).
 | 
						|
		Exist()
 | 
						|
}
 | 
						|
 | 
						|
// ExistErrorTasks 检查是否有错误的任务
 | 
						|
func (this *DNSTaskDAO) ExistErrorTasks(tx *dbs.Tx) (bool, error) {
 | 
						|
	return this.Query(tx).
 | 
						|
		Attr("isDone", 1).
 | 
						|
		Attr("isOk", 0).
 | 
						|
		Exist()
 | 
						|
}
 | 
						|
 | 
						|
// DeleteDNSTask 删除任务
 | 
						|
func (this *DNSTaskDAO) DeleteDNSTask(tx *dbs.Tx, taskId int64) error {
 | 
						|
	_, err := this.Query(tx).
 | 
						|
		Pk(taskId).
 | 
						|
		Delete()
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// UpdateDNSTaskError 设置任务错误
 | 
						|
func (this *DNSTaskDAO) UpdateDNSTaskError(tx *dbs.Tx, taskId int64, err string) error {
 | 
						|
	if taskId <= 0 {
 | 
						|
		return errors.New("invalid taskId")
 | 
						|
	}
 | 
						|
	var op = NewDNSTaskOperator()
 | 
						|
	op.Id = taskId
 | 
						|
	op.IsDone = true
 | 
						|
	op.Error = err
 | 
						|
	op.IsOk = false
 | 
						|
	return this.Save(tx, op)
 | 
						|
}
 | 
						|
 | 
						|
// UpdateDNSTaskDone 设置任务完成
 | 
						|
func (this *DNSTaskDAO) UpdateDNSTaskDone(tx *dbs.Tx, taskId int64, taskVersion int64) error {
 | 
						|
	if taskId <= 0 {
 | 
						|
		return errors.New("invalid taskId")
 | 
						|
	}
 | 
						|
 | 
						|
	currentVersion, err := this.Query(tx).
 | 
						|
		Pk(taskId).
 | 
						|
		Result("version").
 | 
						|
		FindInt64Col(0)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	// 如果版本号发生变化,则说明有新的要执行的任务
 | 
						|
	if taskVersion > 0 && currentVersion > 0 && currentVersion != taskVersion {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	var op = NewDNSTaskOperator()
 | 
						|
	op.Id = taskId
 | 
						|
	op.IsDone = true
 | 
						|
	op.IsOk = true
 | 
						|
	op.Error = ""
 | 
						|
	return this.Save(tx, op)
 | 
						|
}
 | 
						|
 | 
						|
// DeleteDNSTasksWithClusterId 删除集群相关任务
 | 
						|
func (this *DNSTaskDAO) DeleteDNSTasksWithClusterId(tx *dbs.Tx, clusterId int64) error {
 | 
						|
	if clusterId <= 0 {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
	return this.Query(tx).
 | 
						|
		Attr("clusterId", clusterId).
 | 
						|
		DeleteQuickly()
 | 
						|
}
 |