mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
2 years ago
|
package repo
|
||
|
|
||
|
import (
|
||
|
"github.com/1Panel-dev/1Panel/backend/app/model"
|
||
|
"gorm.io/gorm/clause"
|
||
|
)
|
||
|
|
||
|
type WebSiteGroupRepo struct {
|
||
|
}
|
||
|
|
||
|
func (w WebSiteGroupRepo) Page(page, size int, opts ...DBOption) (int64, []model.WebSiteGroup, error) {
|
||
|
var groups []model.WebSiteGroup
|
||
|
db := getDb(opts...).Model(&model.WebSiteGroup{})
|
||
|
count := int64(0)
|
||
|
db = db.Count(&count)
|
||
|
err := db.Debug().Limit(size).Offset(size * (page - 1)).Find(&groups).Error
|
||
|
return count, groups, err
|
||
|
}
|
||
|
|
||
|
func (w WebSiteGroupRepo) GetBy(opts ...DBOption) ([]model.WebSiteGroup, error) {
|
||
|
var groups []model.WebSiteGroup
|
||
|
db := getDb(opts...).Model(&model.WebSiteGroup{})
|
||
|
if err := db.Find(&groups).Error; err != nil {
|
||
|
return groups, err
|
||
|
}
|
||
|
return groups, nil
|
||
|
}
|
||
|
|
||
|
func (w WebSiteGroupRepo) Create(app *model.WebSiteGroup) error {
|
||
|
return getDb().Omit(clause.Associations).Create(app).Error
|
||
|
}
|
||
|
|
||
|
func (w WebSiteGroupRepo) Save(app *model.WebSiteGroup) error {
|
||
|
return getDb().Omit(clause.Associations).Save(app).Error
|
||
|
}
|
||
|
|
||
|
func (w WebSiteGroupRepo) DeleteBy(opts ...DBOption) error {
|
||
|
return getDb(opts...).Delete(&model.WebSiteGroup{}).Error
|
||
|
}
|