mirror of https://github.com/1Panel-dev/1Panel
92 lines
2.3 KiB
Go
92 lines
2.3 KiB
Go
|
package repo
|
||
|
|
||
|
import (
|
||
|
"github.com/1Panel-dev/1Panel/backend/app/model"
|
||
|
"github.com/1Panel-dev/1Panel/backend/global"
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
type DatabaseRepo struct{}
|
||
|
|
||
|
type IDatabaseRepo interface {
|
||
|
GetList(opts ...DBOption) ([]model.Database, error)
|
||
|
Page(limit, offset int, opts ...DBOption) (int64, []model.Database, error)
|
||
|
Create(database *model.Database) error
|
||
|
Update(id uint, vars map[string]interface{}) error
|
||
|
Delete(opts ...DBOption) error
|
||
|
Get(opts ...DBOption) (model.Database, error)
|
||
|
WithByFrom(from string) DBOption
|
||
|
WithoutByFrom(from string) DBOption
|
||
|
WithByMysqlList() DBOption
|
||
|
}
|
||
|
|
||
|
func NewIDatabaseRepo() IDatabaseRepo {
|
||
|
return &DatabaseRepo{}
|
||
|
}
|
||
|
|
||
|
func (u *DatabaseRepo) Get(opts ...DBOption) (model.Database, error) {
|
||
|
var database model.Database
|
||
|
db := global.DB
|
||
|
for _, opt := range opts {
|
||
|
db = opt(db)
|
||
|
}
|
||
|
err := db.First(&database).Error
|
||
|
return database, err
|
||
|
}
|
||
|
|
||
|
func (u *DatabaseRepo) Page(page, size int, opts ...DBOption) (int64, []model.Database, error) {
|
||
|
var users []model.Database
|
||
|
db := global.DB.Model(&model.Database{})
|
||
|
for _, opt := range opts {
|
||
|
db = opt(db)
|
||
|
}
|
||
|
count := int64(0)
|
||
|
db = db.Count(&count)
|
||
|
err := db.Limit(size).Offset(size * (page - 1)).Find(&users).Error
|
||
|
return count, users, err
|
||
|
}
|
||
|
|
||
|
func (u *DatabaseRepo) GetList(opts ...DBOption) ([]model.Database, error) {
|
||
|
var databases []model.Database
|
||
|
db := global.DB.Model(&model.Database{})
|
||
|
for _, opt := range opts {
|
||
|
db = opt(db)
|
||
|
}
|
||
|
err := db.Find(&databases).Error
|
||
|
return databases, err
|
||
|
}
|
||
|
|
||
|
func (c *DatabaseRepo) WithByMysqlList() DBOption {
|
||
|
return func(g *gorm.DB) *gorm.DB {
|
||
|
return g.Where("type == ? OR type == ?", "mysql", "mariadb")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (c *DatabaseRepo) WithByFrom(from string) DBOption {
|
||
|
return func(g *gorm.DB) *gorm.DB {
|
||
|
return g.Where("`from` == ?", from)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (c *DatabaseRepo) WithoutByFrom(from string) DBOption {
|
||
|
return func(g *gorm.DB) *gorm.DB {
|
||
|
return g.Where("`from` != ?", from)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (u *DatabaseRepo) Create(database *model.Database) error {
|
||
|
return global.DB.Create(database).Error
|
||
|
}
|
||
|
|
||
|
func (u *DatabaseRepo) Update(id uint, vars map[string]interface{}) error {
|
||
|
return global.DB.Model(&model.Database{}).Where("id = ?", id).Updates(vars).Error
|
||
|
}
|
||
|
|
||
|
func (u *DatabaseRepo) Delete(opts ...DBOption) error {
|
||
|
db := global.DB
|
||
|
for _, opt := range opts {
|
||
|
db = opt(db)
|
||
|
}
|
||
|
return db.Delete(&model.Database{}).Error
|
||
|
}
|