mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 03:07:34 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package repo
 | |
| 
 | |
| import (
 | |
| 	"github.com/1Panel-dev/1Panel/backend/app/model"
 | |
| 	"github.com/1Panel-dev/1Panel/backend/global"
 | |
| )
 | |
| 
 | |
| type ISnapshotRepo interface {
 | |
| 	Get(opts ...DBOption) (model.Snapshot, error)
 | |
| 	GetList(opts ...DBOption) ([]model.Snapshot, error)
 | |
| 	Create(snap *model.Snapshot) error
 | |
| 	Update(id uint, vars map[string]interface{}) error
 | |
| 	Page(limit, offset int, opts ...DBOption) (int64, []model.Snapshot, error)
 | |
| 	Delete(opts ...DBOption) error
 | |
| }
 | |
| 
 | |
| func NewISnapshotRepo() ISnapshotRepo {
 | |
| 	return &SnapshotRepo{}
 | |
| }
 | |
| 
 | |
| type SnapshotRepo struct{}
 | |
| 
 | |
| func (u *SnapshotRepo) Get(opts ...DBOption) (model.Snapshot, error) {
 | |
| 	var Snapshot model.Snapshot
 | |
| 	db := global.DB
 | |
| 	for _, opt := range opts {
 | |
| 		db = opt(db)
 | |
| 	}
 | |
| 	err := db.First(&Snapshot).Error
 | |
| 	return Snapshot, err
 | |
| }
 | |
| 
 | |
| func (u *SnapshotRepo) GetList(opts ...DBOption) ([]model.Snapshot, error) {
 | |
| 	var snaps []model.Snapshot
 | |
| 	db := global.DB.Model(&model.Snapshot{})
 | |
| 	for _, opt := range opts {
 | |
| 		db = opt(db)
 | |
| 	}
 | |
| 	err := db.Find(&snaps).Error
 | |
| 	return snaps, err
 | |
| }
 | |
| 
 | |
| func (u *SnapshotRepo) Page(page, size int, opts ...DBOption) (int64, []model.Snapshot, error) {
 | |
| 	var users []model.Snapshot
 | |
| 	db := global.DB.Model(&model.Snapshot{})
 | |
| 	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 *SnapshotRepo) Create(Snapshot *model.Snapshot) error {
 | |
| 	return global.DB.Create(Snapshot).Error
 | |
| }
 | |
| 
 | |
| func (u *SnapshotRepo) Update(id uint, vars map[string]interface{}) error {
 | |
| 	return global.DB.Model(&model.Snapshot{}).Where("id = ?", id).Updates(vars).Error
 | |
| }
 | |
| 
 | |
| func (u *SnapshotRepo) Delete(opts ...DBOption) error {
 | |
| 	db := global.DB
 | |
| 	for _, opt := range opts {
 | |
| 		db = opt(db)
 | |
| 	}
 | |
| 	return db.Delete(&model.Snapshot{}).Error
 | |
| }
 |