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

84 lines
2.3 KiB
Go
Raw Normal View History

2022-11-11 17:41:39 +08:00
package repo
2022-11-16 10:31:35 +08:00
import (
"context"
"github.com/1Panel-dev/1Panel/backend/app/model"
"gorm.io/gorm"
)
2022-11-11 17:41:39 +08:00
func NewISSLRepo() ISSLRepo {
return &WebsiteSSLRepo{}
}
type ISSLRepo interface {
WithByAlias(alias string) DBOption
WithByAcmeAccountId(acmeAccountId uint) DBOption
WithByDnsAccountId(dnsAccountId uint) DBOption
Page(page, size int, opts ...DBOption) (int64, []model.WebSiteSSL, error)
GetFirst(opts ...DBOption) (model.WebSiteSSL, error)
List(opts ...DBOption) ([]model.WebSiteSSL, error)
Create(ctx context.Context, ssl *model.WebSiteSSL) error
Save(ssl model.WebSiteSSL) error
DeleteBy(opts ...DBOption) error
}
2022-11-11 17:41:39 +08:00
type WebsiteSSLRepo struct {
}
func (w WebsiteSSLRepo) WithByAlias(alias string) DBOption {
2022-11-16 10:31:35 +08:00
return func(db *gorm.DB) *gorm.DB {
return db.Where("alias = ?", alias)
}
}
func (w WebsiteSSLRepo) WithByAcmeAccountId(acmeAccountId uint) DBOption {
return func(db *gorm.DB) *gorm.DB {
return db.Where("acme_account_id = ?", acmeAccountId)
}
}
func (w WebsiteSSLRepo) WithByDnsAccountId(dnsAccountId uint) DBOption {
return func(db *gorm.DB) *gorm.DB {
return db.Where("dns_account_id = ?", dnsAccountId)
}
}
2022-11-11 17:41:39 +08:00
func (w WebsiteSSLRepo) Page(page, size int, opts ...DBOption) (int64, []model.WebSiteSSL, error) {
var sslList []model.WebSiteSSL
db := getDb(opts...).Model(&model.WebSiteSSL{})
count := int64(0)
db = db.Count(&count)
err := db.Limit(size).Offset(size * (page - 1)).Preload("AcmeAccount").Find(&sslList).Error
2022-11-11 17:41:39 +08:00
return count, sslList, err
}
2022-11-16 10:31:35 +08:00
func (w WebsiteSSLRepo) GetFirst(opts ...DBOption) (model.WebSiteSSL, error) {
var website model.WebSiteSSL
db := getDb(opts...).Model(&model.WebSiteSSL{})
if err := db.Preload("AcmeAccount").First(&website).Error; err != nil {
2022-11-16 10:31:35 +08:00
return website, err
}
return website, nil
}
2022-11-20 18:32:56 +08:00
func (w WebsiteSSLRepo) List(opts ...DBOption) ([]model.WebSiteSSL, error) {
var websites []model.WebSiteSSL
db := getDb(opts...).Model(&model.WebSiteSSL{})
if err := db.Preload("AcmeAccount").Find(&websites).Error; err != nil {
2022-11-20 18:32:56 +08:00
return websites, err
}
return websites, nil
}
2022-11-16 10:31:35 +08:00
func (w WebsiteSSLRepo) Create(ctx context.Context, ssl *model.WebSiteSSL) error {
return getTx(ctx).Create(ssl).Error
2022-11-11 17:41:39 +08:00
}
func (w WebsiteSSLRepo) Save(ssl model.WebSiteSSL) error {
return getDb().Save(&ssl).Error
}
func (w WebsiteSSLRepo) DeleteBy(opts ...DBOption) error {
return getDb(opts...).Delete(&model.WebSiteSSL{}).Error
}