mirror of https://github.com/1Panel-dev/1Panel
37 lines
994 B
Go
37 lines
994 B
Go
|
package repo
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/1Panel-dev/1Panel/app/model"
|
||
|
"github.com/1Panel-dev/1Panel/global"
|
||
|
"gorm.io/gorm"
|
||
|
)
|
||
|
|
||
|
type AppInstallResourceRpo struct {
|
||
|
}
|
||
|
|
||
|
func (a AppInstallResourceRpo) WithAppInstallId(appInstallId uint) DBOption {
|
||
|
return func(db *gorm.DB) *gorm.DB {
|
||
|
return db.Where("app_install_id = ?", appInstallId)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (a AppInstallResourceRpo) GetBy(opts ...DBOption) ([]model.AppInstallResource, error) {
|
||
|
db := global.DB.Model(&model.AppInstallResource{})
|
||
|
var resources []model.AppInstallResource
|
||
|
for _, opt := range opts {
|
||
|
db = opt(db)
|
||
|
}
|
||
|
err := db.Find(&resources).Error
|
||
|
return resources, err
|
||
|
}
|
||
|
|
||
|
func (a AppInstallResourceRpo) Create(ctx context.Context, resource *model.AppInstallResource) error {
|
||
|
db := getTx(ctx).Model(&model.AppInstallResource{})
|
||
|
return db.Create(&resource).Error
|
||
|
}
|
||
|
|
||
|
func (a AppInstallResourceRpo) DeleteBy(ctx context.Context, opts ...DBOption) error {
|
||
|
return getTx(ctx, opts...).Delete(&model.AppInstallResource{}).Error
|
||
|
}
|