mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			175 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			175 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	_ "github.com/go-sql-driver/mysql"
 | 
						|
	"github.com/iwind/TeaGo/Tea"
 | 
						|
	"github.com/iwind/TeaGo/dbs"
 | 
						|
	"github.com/iwind/TeaGo/types"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	NodeIPAddressStateEnabled  = 1 // 已启用
 | 
						|
	NodeIPAddressStateDisabled = 0 // 已禁用
 | 
						|
)
 | 
						|
 | 
						|
type NodeIPAddressDAO dbs.DAO
 | 
						|
 | 
						|
func NewNodeIPAddressDAO() *NodeIPAddressDAO {
 | 
						|
	return dbs.NewDAO(&NodeIPAddressDAO{
 | 
						|
		DAOObject: dbs.DAOObject{
 | 
						|
			DB:     Tea.Env,
 | 
						|
			Table:  "edgeNodeIPAddresses",
 | 
						|
			Model:  new(NodeIPAddress),
 | 
						|
			PkName: "id",
 | 
						|
		},
 | 
						|
	}).(*NodeIPAddressDAO)
 | 
						|
}
 | 
						|
 | 
						|
var SharedNodeIPAddressDAO *NodeIPAddressDAO
 | 
						|
 | 
						|
func init() {
 | 
						|
	dbs.OnReady(func() {
 | 
						|
		SharedNodeIPAddressDAO = NewNodeIPAddressDAO()
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
// 启用条目
 | 
						|
func (this *NodeIPAddressDAO) EnableAddress(tx *dbs.Tx, id int64) (err error) {
 | 
						|
	_, err = this.Query(tx).
 | 
						|
		Pk(id).
 | 
						|
		Set("state", NodeIPAddressStateEnabled).
 | 
						|
		Update()
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// 禁用IP地址
 | 
						|
func (this *NodeIPAddressDAO) DisableAddress(tx *dbs.Tx, id int64) (err error) {
 | 
						|
	_, err = this.Query(tx).
 | 
						|
		Pk(id).
 | 
						|
		Set("state", NodeIPAddressStateDisabled).
 | 
						|
		Update()
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// 禁用节点的所有的IP地址
 | 
						|
func (this *NodeIPAddressDAO) DisableAllAddressesWithNodeId(tx *dbs.Tx, nodeId int64) error {
 | 
						|
	if nodeId <= 0 {
 | 
						|
		return errors.New("invalid nodeId")
 | 
						|
	}
 | 
						|
	_, err := this.Query(tx).
 | 
						|
		Attr("nodeId", nodeId).
 | 
						|
		Set("state", NodeIPAddressStateDisabled).
 | 
						|
		Update()
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// 查找启用中的IP地址
 | 
						|
func (this *NodeIPAddressDAO) FindEnabledAddress(tx *dbs.Tx, id int64) (*NodeIPAddress, error) {
 | 
						|
	result, err := this.Query(tx).
 | 
						|
		Pk(id).
 | 
						|
		Attr("state", NodeIPAddressStateEnabled).
 | 
						|
		Find()
 | 
						|
	if result == nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return result.(*NodeIPAddress), err
 | 
						|
}
 | 
						|
 | 
						|
// 根据主键查找名称
 | 
						|
func (this *NodeIPAddressDAO) FindAddressName(tx *dbs.Tx, id int64) (string, error) {
 | 
						|
	return this.Query(tx).
 | 
						|
		Pk(id).
 | 
						|
		Result("name").
 | 
						|
		FindStringCol("")
 | 
						|
}
 | 
						|
 | 
						|
// 创建IP地址
 | 
						|
func (this *NodeIPAddressDAO) CreateAddress(tx *dbs.Tx, nodeId int64, name string, ip string, canAccess bool) (addressId int64, err error) {
 | 
						|
	op := NewNodeIPAddressOperator()
 | 
						|
	op.NodeId = nodeId
 | 
						|
	op.Name = name
 | 
						|
	op.Ip = ip
 | 
						|
	op.CanAccess = canAccess
 | 
						|
	op.State = NodeIPAddressStateEnabled
 | 
						|
	err = this.Save(tx, op)
 | 
						|
	if err != nil {
 | 
						|
		return 0, err
 | 
						|
	}
 | 
						|
	return types.Int64(op.Id), nil
 | 
						|
}
 | 
						|
 | 
						|
// 修改IP地址
 | 
						|
func (this *NodeIPAddressDAO) UpdateAddress(tx *dbs.Tx, addressId int64, name string, ip string, canAccess bool) (err error) {
 | 
						|
	if addressId <= 0 {
 | 
						|
		return errors.New("invalid addressId")
 | 
						|
	}
 | 
						|
 | 
						|
	op := NewNodeIPAddressOperator()
 | 
						|
	op.Id = addressId
 | 
						|
	op.Name = name
 | 
						|
	op.Ip = ip
 | 
						|
	op.CanAccess = canAccess
 | 
						|
	op.State = NodeIPAddressStateEnabled // 恢复状态
 | 
						|
	err = this.Save(tx, op)
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// 修改IP地址中的IP
 | 
						|
func (this *NodeIPAddressDAO) UpdateAddressIP(tx *dbs.Tx, addressId int64, ip string) error {
 | 
						|
	if addressId <= 0 {
 | 
						|
		return errors.New("invalid addressId")
 | 
						|
	}
 | 
						|
	op := NewNodeIPAddressOperator()
 | 
						|
	op.Id = addressId
 | 
						|
	op.Ip = ip
 | 
						|
	err := this.Save(tx, op)
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// 修改IP地址所属节点
 | 
						|
func (this *NodeIPAddressDAO) UpdateAddressNodeId(tx *dbs.Tx, addressId int64, nodeId int64) error {
 | 
						|
	_, err := this.Query(tx).
 | 
						|
		Pk(addressId).
 | 
						|
		Set("nodeId", nodeId).
 | 
						|
		Set("state", NodeIPAddressStateEnabled). // 恢复状态
 | 
						|
		Update()
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// 查找节点的所有的IP地址
 | 
						|
func (this *NodeIPAddressDAO) FindAllEnabledAddressesWithNode(tx *dbs.Tx, nodeId int64) (result []*NodeIPAddress, err error) {
 | 
						|
	_, err = this.Query(tx).
 | 
						|
		Attr("nodeId", nodeId).
 | 
						|
		State(NodeIPAddressStateEnabled).
 | 
						|
		Desc("order").
 | 
						|
		AscPk().
 | 
						|
		Slice(&result).
 | 
						|
		FindAll()
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
// 查找节点的第一个可访问的IP地址
 | 
						|
func (this *NodeIPAddressDAO) FindFirstNodeIPAddress(tx *dbs.Tx, nodeId int64) (string, error) {
 | 
						|
	return this.Query(tx).
 | 
						|
		Attr("nodeId", nodeId).
 | 
						|
		State(NodeIPAddressStateEnabled).
 | 
						|
		Attr("canAccess", true).
 | 
						|
		Desc("order").
 | 
						|
		AscPk().
 | 
						|
		Result("ip").
 | 
						|
		FindStringCol("")
 | 
						|
}
 | 
						|
 | 
						|
// 查找节点的第一个可访问的IP地址ID
 | 
						|
func (this *NodeIPAddressDAO) FindFirstNodeIPAddressId(tx *dbs.Tx, nodeId int64) (int64, error) {
 | 
						|
	return this.Query(tx).
 | 
						|
		Attr("nodeId", nodeId).
 | 
						|
		State(NodeIPAddressStateEnabled).
 | 
						|
		Attr("canAccess", true).
 | 
						|
		Desc("order").
 | 
						|
		AscPk().
 | 
						|
		Result("id").
 | 
						|
		FindInt64Col(0)
 | 
						|
}
 |