1Panel/backend/app/repo/common.go

121 lines
2.5 KiB
Go
Raw Normal View History

2022-08-16 23:30:23 +08:00
package repo
import (
"context"
"time"
2023-01-06 18:53:25 +08:00
2022-11-02 15:19:14 +08:00
"github.com/1Panel-dev/1Panel/backend/constant"
"github.com/1Panel-dev/1Panel/backend/global"
"gorm.io/gorm"
)
2022-08-16 23:30:23 +08:00
type DBOption func(*gorm.DB) *gorm.DB
type ICommonRepo interface {
WithByID(id uint) DBOption
WithByName(name string) DBOption
2023-01-06 18:53:25 +08:00
WithByType(tp string) DBOption
2022-08-16 23:30:23 +08:00
WithOrderBy(orderStr string) DBOption
WithByGroupID(groupID uint) DBOption
2022-08-16 23:30:23 +08:00
WithLikeName(name string) DBOption
WithIdsIn(ids []uint) DBOption
WithByDate(startTime, endTime time.Time) DBOption
WithByStartDate(startTime time.Time) DBOption
2022-08-16 23:30:23 +08:00
}
type CommonRepo struct{}
func (c *CommonRepo) WithByID(id uint) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("id = ?", id)
}
}
func (c *CommonRepo) WithByName(name string) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("name = ?", name)
}
}
func (c *CommonRepo) WithByDate(startTime, endTime time.Time) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("start_time > ? AND start_time < ?", startTime, endTime)
}
}
func (c *CommonRepo) WithByStartDate(startTime time.Time) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("start_time < ?", startTime)
}
}
2023-01-06 18:53:25 +08:00
func (c *CommonRepo) WithByType(tp string) DBOption {
2022-09-19 19:42:06 +08:00
return func(g *gorm.DB) *gorm.DB {
2023-01-06 18:53:25 +08:00
return g.Where("type = ?", tp)
2022-09-19 19:42:06 +08:00
}
}
func (c *CommonRepo) WithByGroupID(groupID uint) DBOption {
return func(g *gorm.DB) *gorm.DB {
if groupID == 0 {
return g
}
return g.Where("group_id = ?", groupID)
}
}
func (c *CommonRepo) WithByStatus(status string) DBOption {
return func(g *gorm.DB) *gorm.DB {
if len(status) == 0 {
return g
}
return g.Where("status = ?", status)
}
}
2022-08-16 23:30:23 +08:00
func (c *CommonRepo) WithLikeName(name string) DBOption {
return func(g *gorm.DB) *gorm.DB {
2023-02-07 18:48:32 +08:00
if len(name) == 0 {
return g
}
2022-08-16 23:30:23 +08:00
return g.Where("name like ?", "%"+name+"%")
}
}
func (c *CommonRepo) WithOrderBy(orderStr string) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Order(orderStr)
}
}
func (c *CommonRepo) WithIdsIn(ids []uint) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("id in (?)", ids)
}
}
func (c *CommonRepo) WithIdsNotIn(ids []uint) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("id not in (?)", ids)
}
}
func getTx(ctx context.Context, opts ...DBOption) *gorm.DB {
2022-11-03 17:06:48 +08:00
tx, ok := ctx.Value(constant.DB).(*gorm.DB)
if ok {
for _, opt := range opts {
tx = opt(tx)
}
2022-11-22 22:47:38 +08:00
return tx
}
2022-11-22 22:47:38 +08:00
return getDb(opts...)
}
func getDb(opts ...DBOption) *gorm.DB {
db := global.DB
for _, opt := range opts {
db = opt(db)
}
return db
}