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

74 lines
1.8 KiB
Go
Raw Normal View History

2023-03-29 14:58:28 +08:00
package repo
import (
"context"
"github.com/1Panel-dev/1Panel/backend/app/model"
2023-04-02 16:54:00 +08:00
"gorm.io/gorm"
2023-03-29 14:58:28 +08:00
)
type RuntimeRepo struct {
}
type IRuntimeRepo interface {
WithName(name string) DBOption
WithImage(image string) DBOption
WithNotId(id uint) DBOption
2023-03-29 14:58:28 +08:00
Page(page, size int, opts ...DBOption) (int64, []model.Runtime, error)
Create(ctx context.Context, runtime *model.Runtime) error
Save(runtime *model.Runtime) error
DeleteBy(opts ...DBOption) error
2023-03-31 14:02:28 +08:00
GetFirst(opts ...DBOption) (*model.Runtime, error)
2023-03-29 14:58:28 +08:00
}
func NewIRunTimeRepo() IRuntimeRepo {
return &RuntimeRepo{}
}
func (r *RuntimeRepo) WithName(name string) DBOption {
2023-04-02 16:54:00 +08:00
return func(g *gorm.DB) *gorm.DB {
return g.Where("name = ?", name)
2023-04-02 16:54:00 +08:00
}
}
func (r *RuntimeRepo) WithImage(image string) DBOption {
2023-04-02 16:54:00 +08:00
return func(g *gorm.DB) *gorm.DB {
return g.Where("image = ?", image)
}
}
func (r *RuntimeRepo) WithNotId(id uint) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("id != ?", id)
2023-04-02 16:54:00 +08:00
}
}
2023-03-29 14:58:28 +08:00
func (r *RuntimeRepo) Page(page, size int, opts ...DBOption) (int64, []model.Runtime, error) {
var runtimes []model.Runtime
db := getDb(opts...).Model(&model.Runtime{})
count := int64(0)
db = db.Count(&count)
err := db.Limit(size).Offset(size * (page - 1)).Find(&runtimes).Error
return count, runtimes, err
}
func (r *RuntimeRepo) Create(ctx context.Context, runtime *model.Runtime) error {
db := getTx(ctx).Model(&model.Runtime{})
return db.Create(&runtime).Error
}
func (r *RuntimeRepo) Save(runtime *model.Runtime) error {
return getDb().Save(&runtime).Error
}
func (r *RuntimeRepo) DeleteBy(opts ...DBOption) error {
return getDb(opts...).Delete(&model.Runtime{}).Error
}
2023-03-31 14:02:28 +08:00
func (r *RuntimeRepo) GetFirst(opts ...DBOption) (*model.Runtime, error) {
var runtime model.Runtime
if err := getDb(opts...).First(&runtime).Error; err != nil {
return nil, err
}
return &runtime, nil
}