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

83 lines
2 KiB
Go
Raw Normal View History

package repo
import (
"context"
"github.com/1Panel-dev/1Panel/backend/app/model"
"gorm.io/gorm"
"gorm.io/gorm/clause"
)
type AppRepo struct {
}
2022-10-07 15:49:39 +08:00
func (a AppRepo) WithKey(key string) DBOption {
return func(db *gorm.DB) *gorm.DB {
return db.Where("key = ?", key)
}
}
2022-10-28 17:04:57 +08:00
func (a AppRepo) WithType(typeStr string) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("type = ?", typeStr)
}
}
2023-02-08 16:21:17 +08:00
func (a AppRepo) OrderByRecommend() DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Order("recommend asc")
}
}
func (a AppRepo) GetRecommend() DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("recommend < 9999")
}
}
func (a AppRepo) Page(page, size int, opts ...DBOption) (int64, []model.App, error) {
var apps []model.App
db := getDb(opts...).Model(&model.App{})
count := int64(0)
db = db.Count(&count)
2023-02-09 16:13:06 +08:00
err := db.Limit(size).Offset(size * (page - 1)).Preload("AppTags").Find(&apps).Error
return count, apps, err
}
2022-09-23 16:33:55 +08:00
func (a AppRepo) GetFirst(opts ...DBOption) (model.App, error) {
var app model.App
db := getDb(opts...).Model(&model.App{})
if err := db.Preload("AppTags").First(&app).Error; err != nil {
2022-09-23 16:33:55 +08:00
return app, err
}
return app, nil
}
2022-09-30 17:56:06 +08:00
func (a AppRepo) GetBy(opts ...DBOption) ([]model.App, error) {
var apps []model.App
db := getDb(opts...).Model(&model.App{})
2022-09-30 17:56:06 +08:00
if err := db.Preload("Details").Preload("AppTags").Find(&apps).Error; err != nil {
return apps, err
}
return apps, nil
}
func (a AppRepo) BatchCreate(ctx context.Context, apps []model.App) error {
return getTx(ctx).Omit(clause.Associations).Create(&apps).Error
}
func (a AppRepo) GetByKey(ctx context.Context, key string) (model.App, error) {
var app model.App
if err := getTx(ctx).Where("key = ?", key).First(&app).Error; err != nil {
return app, err
}
return app, nil
}
func (a AppRepo) Create(ctx context.Context, app *model.App) error {
return getTx(ctx).Omit(clause.Associations).Create(app).Error
}
func (a AppRepo) Save(ctx context.Context, app *model.App) error {
return getTx(ctx).Omit(clause.Associations).Save(app).Error
}