mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
105 lines
2.4 KiB
Go
105 lines
2.4 KiB
Go
package models
|
|
|
|
import (
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/iwind/TeaGo/Tea"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
"github.com/iwind/TeaGo/types"
|
|
)
|
|
|
|
const (
|
|
IPLibraryStateEnabled = 1 // 已启用
|
|
IPLibraryStateDisabled = 0 // 已禁用
|
|
)
|
|
|
|
type IPLibraryDAO dbs.DAO
|
|
|
|
func NewIPLibraryDAO() *IPLibraryDAO {
|
|
return dbs.NewDAO(&IPLibraryDAO{
|
|
DAOObject: dbs.DAOObject{
|
|
DB: Tea.Env,
|
|
Table: "edgeIPLibraries",
|
|
Model: new(IPLibrary),
|
|
PkName: "id",
|
|
},
|
|
}).(*IPLibraryDAO)
|
|
}
|
|
|
|
var SharedIPLibraryDAO *IPLibraryDAO
|
|
|
|
func init() {
|
|
dbs.OnReady(func() {
|
|
SharedIPLibraryDAO = NewIPLibraryDAO()
|
|
})
|
|
}
|
|
|
|
// EnableIPLibrary 启用条目
|
|
func (this *IPLibraryDAO) EnableIPLibrary(tx *dbs.Tx, id int64) error {
|
|
_, err := this.Query(tx).
|
|
Pk(id).
|
|
Set("state", IPLibraryStateEnabled).
|
|
Update()
|
|
return err
|
|
}
|
|
|
|
// DisableIPLibrary 禁用条目
|
|
func (this *IPLibraryDAO) DisableIPLibrary(tx *dbs.Tx, id int64) error {
|
|
_, err := this.Query(tx).
|
|
Pk(id).
|
|
Set("state", IPLibraryStateDisabled).
|
|
Update()
|
|
return err
|
|
}
|
|
|
|
// FindEnabledIPLibrary 查找启用中的条目
|
|
func (this *IPLibraryDAO) FindEnabledIPLibrary(tx *dbs.Tx, id int64) (*IPLibrary, error) {
|
|
result, err := this.Query(tx).
|
|
Pk(id).
|
|
Attr("state", IPLibraryStateEnabled).
|
|
Find()
|
|
if result == nil {
|
|
return nil, err
|
|
}
|
|
return result.(*IPLibrary), err
|
|
}
|
|
|
|
// FindAllEnabledIPLibrariesWithType 查找某个类型的IP库列表
|
|
func (this *IPLibraryDAO) FindAllEnabledIPLibrariesWithType(tx *dbs.Tx, libraryType string) (result []*IPLibrary, err error) {
|
|
_, err = this.Query(tx).
|
|
State(IPLibraryStateEnabled).
|
|
Attr("type", libraryType).
|
|
DescPk().
|
|
Slice(&result).
|
|
FindAll()
|
|
return
|
|
}
|
|
|
|
// FindLatestIPLibraryWithType 查找某个类型的最新的IP库
|
|
func (this *IPLibraryDAO) FindLatestIPLibraryWithType(tx *dbs.Tx, libraryType string) (*IPLibrary, error) {
|
|
one, err := this.Query(tx).
|
|
State(IPLibraryStateEnabled).
|
|
Attr("type", libraryType).
|
|
DescPk().
|
|
Find()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if one == nil {
|
|
return nil, nil
|
|
}
|
|
return one.(*IPLibrary), nil
|
|
}
|
|
|
|
// CreateIPLibrary 创建新的IP库
|
|
func (this *IPLibraryDAO) CreateIPLibrary(tx *dbs.Tx, libraryType string, fileId int64) (int64, error) {
|
|
var op = NewIPLibraryOperator()
|
|
op.Type = libraryType
|
|
op.FileId = fileId
|
|
op.State = IPLibraryStateEnabled
|
|
err := this.Save(tx, op)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return types.Int64(op.Id), nil
|
|
}
|