2024-07-12 18:11:21 +08:00
|
|
|
|
package whitelist
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"sync"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"github.com/qit-team/snow-core/db"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
once sync.Once
|
|
|
|
|
m *whitelistModel
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whitelist
|
|
|
|
|
*/
|
|
|
|
|
type Whitelist struct {
|
|
|
|
|
Id int64 `xorm:"pk autoincr"` //注:使用getOne 或者ID() 需要设置主键
|
|
|
|
|
MerchantId int64
|
|
|
|
|
Ip string
|
|
|
|
|
CreatedAt time.Time `xorm:"created"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 表名规则
|
|
|
|
|
* @wiki http://gobook.io/read/github.com/go-xorm/manual-zh-CN/chapter-02/3.tags.html
|
|
|
|
|
*/
|
|
|
|
|
func (m *Whitelist) TableName() string {
|
|
|
|
|
return "whitelist"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 私有化,防止被外部new
|
|
|
|
|
*/
|
|
|
|
|
type whitelistModel struct {
|
|
|
|
|
db.Model //组合基础Model,集成基础Model的属性和方法
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 单例模式
|
|
|
|
|
func GetInstance() *whitelistModel {
|
|
|
|
|
once.Do(func() {
|
|
|
|
|
m = new(whitelistModel)
|
|
|
|
|
//m.DiName = "" //设置数据库实例连接,默认db.SingletonMain
|
|
|
|
|
})
|
|
|
|
|
return m
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询主键ID的记录
|
|
|
|
|
* @param id 主键ID
|
|
|
|
|
* @return has 是否有记录
|
|
|
|
|
* @return err 错误信息
|
|
|
|
|
* @return whitelist 查询结果
|
|
|
|
|
*/
|
|
|
|
|
func (m *whitelistModel) GetById(id int64) (whitelist *Whitelist, has bool, err error) {
|
|
|
|
|
whitelist = &Whitelist{}
|
|
|
|
|
has, err = m.GetDb().ID(id).Get(whitelist)
|
2024-07-15 14:42:48 +08:00
|
|
|
|
if err != nil || !has {
|
2024-07-12 18:11:21 +08:00
|
|
|
|
whitelist = nil
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *whitelistModel) GetByIp(ip string) (whitelist *Whitelist, has bool, err error) {
|
|
|
|
|
whitelist = &Whitelist{}
|
|
|
|
|
has, err = m.GetDb().Where("ip = ?", ip).Get(whitelist)
|
2024-07-15 14:42:48 +08:00
|
|
|
|
if err != nil || !has {
|
2024-07-12 18:11:21 +08:00
|
|
|
|
whitelist = nil
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *whitelistModel) Search(id int64, merchant_id int64, ip string, startTime string, endTime string, limit int, page int) (whitelist []*Whitelist, err error) {
|
|
|
|
|
whitelist = make([]*Whitelist, 0)
|
|
|
|
|
sql := "1=1"
|
|
|
|
|
var args []interface{}
|
|
|
|
|
if id != 0 {
|
|
|
|
|
sql += " and id = ?"
|
|
|
|
|
args = append(args, id)
|
|
|
|
|
}
|
|
|
|
|
if merchant_id != 0 {
|
|
|
|
|
sql += " and merchant_id = ?"
|
|
|
|
|
args = append(args, merchant_id)
|
|
|
|
|
}
|
|
|
|
|
if ip != "" {
|
|
|
|
|
sql += " and ip = ?"
|
|
|
|
|
args = append(args, ip)
|
|
|
|
|
}
|
|
|
|
|
if startTime != "" && endTime != "" {
|
|
|
|
|
sql += " and created_at >= ? and created_at <= ?"
|
|
|
|
|
args = append(args, startTime, endTime)
|
|
|
|
|
}
|
2024-07-18 15:40:32 +08:00
|
|
|
|
err = m.GetDb().Where(sql, args...).OrderBy("created_at desc").Limit(limit, page).Find(&whitelist)
|
2024-07-12 18:11:21 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *whitelistModel) CountAll(id int64, merchant_id int64, ip string, startTime string, endTime string) (res int64, err error) {
|
|
|
|
|
sql := "1=1"
|
|
|
|
|
var args []interface{}
|
|
|
|
|
if id != 0 {
|
|
|
|
|
sql += " and id = ?"
|
|
|
|
|
args = append(args, id)
|
|
|
|
|
}
|
|
|
|
|
if merchant_id != 0 {
|
|
|
|
|
sql += " and merchant_id = ?"
|
|
|
|
|
args = append(args, merchant_id)
|
|
|
|
|
}
|
|
|
|
|
if ip != "" {
|
|
|
|
|
sql += " and ip = ?"
|
|
|
|
|
args = append(args, ip)
|
|
|
|
|
}
|
|
|
|
|
if startTime != "" && endTime != "" {
|
|
|
|
|
sql += " and created_at >= ? and created_at <= ?"
|
|
|
|
|
args = append(args, startTime, endTime)
|
|
|
|
|
}
|
|
|
|
|
res, err = m.GetDb().Table("whitelist").Where(sql, args...).Count()
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *whitelistModel) Create(whitelist *Whitelist) (affected int64, err error) {
|
2024-07-16 09:32:37 +08:00
|
|
|
|
whitelist.CreatedAt = time.Now()
|
2024-07-12 18:11:21 +08:00
|
|
|
|
affected, err = m.GetDb().Insert(whitelist)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *whitelistModel) Update(whitelist *Whitelist) (affected int64, err error) {
|
|
|
|
|
affected, err = m.GetDb().ID(whitelist.Id).Update(whitelist)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (m *whitelistModel) Delete(id int64) (affected int64, err error) {
|
|
|
|
|
affected, err = m.GetDb().ID(id).Delete(&Whitelist{})
|
|
|
|
|
return
|
|
|
|
|
}
|