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

51 lines
1.2 KiB
Go
Raw Normal View History

2022-09-15 10:44:43 +08:00
package repo
import (
"github.com/1Panel-dev/1Panel/app/model"
"github.com/1Panel-dev/1Panel/global"
2022-09-08 18:47:15 +08:00
"gorm.io/gorm"
2022-09-15 10:44:43 +08:00
)
type SettingRepo struct{}
type ISettingRepo interface {
2022-09-08 18:47:15 +08:00
GetList(opts ...DBOption) ([]model.Setting, error)
Get(opts ...DBOption) (model.Setting, error)
2022-09-15 10:44:43 +08:00
Update(key, value string) error
2022-09-08 18:47:15 +08:00
WithByKey(key string) DBOption
2022-09-15 10:44:43 +08:00
}
2022-09-08 18:47:15 +08:00
func NewISettingRepo() ISettingRepo {
2022-09-15 10:44:43 +08:00
return &SettingRepo{}
}
2022-09-08 18:47:15 +08:00
func (u *SettingRepo) GetList(opts ...DBOption) ([]model.Setting, error) {
2022-09-15 10:44:43 +08:00
var settings []model.Setting
db := global.DB.Model(&model.Setting{})
for _, opt := range opts {
db = opt(db)
}
err := db.Find(&settings).Error
return settings, err
}
2022-09-08 18:47:15 +08:00
func (u *SettingRepo) Get(opts ...DBOption) (model.Setting, error) {
var settings model.Setting
db := global.DB.Model(&model.Setting{})
for _, opt := range opts {
db = opt(db)
}
err := db.First(&settings).Error
return settings, err
}
func (c *SettingRepo) WithByKey(key string) DBOption {
return func(g *gorm.DB) *gorm.DB {
return g.Where("key = ?", key)
}
}
2022-09-15 10:44:43 +08:00
func (u *SettingRepo) Update(key, value string) error {
return global.DB.Model(&model.Setting{}).Where("key = ?", key).Updates(map[string]interface{}{"value": value}).Error
}