120 lines
3.0 KiB
Go
120 lines
3.0 KiB
Go
package system
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/perfect-panel/ppanel-server/pkg/cache"
|
|
"github.com/redis/go-redis/v9"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
cacheSystemIdPrefix = "cache:System:id:"
|
|
cacheSystemKeyPrefix = "cache:System:key:"
|
|
)
|
|
var _ Model = (*customSystemModel)(nil)
|
|
|
|
type (
|
|
Model interface {
|
|
systemModel
|
|
customSystemLogicModel
|
|
}
|
|
systemModel interface {
|
|
Insert(ctx context.Context, data *System) error
|
|
FindOne(ctx context.Context, id int64) (*System, error)
|
|
FindOneByKey(ctx context.Context, email string) (*System, error)
|
|
Update(ctx context.Context, data *System) error
|
|
Delete(ctx context.Context, id int64) error
|
|
Transaction(ctx context.Context, fn func(db *gorm.DB) error) error
|
|
}
|
|
|
|
customSystemModel struct {
|
|
*defaultSystemModel
|
|
}
|
|
defaultSystemModel struct {
|
|
cache.CachedConn
|
|
table string
|
|
}
|
|
)
|
|
|
|
func newSystemModel(db *gorm.DB, c *redis.Client) *defaultSystemModel {
|
|
return &defaultSystemModel{
|
|
CachedConn: cache.NewConn(db, c),
|
|
table: "`System`",
|
|
}
|
|
}
|
|
|
|
func (m *defaultSystemModel) getCacheKeys(data *System) []string {
|
|
if data == nil {
|
|
return []string{}
|
|
}
|
|
SystemIdKey := fmt.Sprintf("%s%v", cacheSystemIdPrefix, data.Id)
|
|
cacheKeys := []string{
|
|
SystemIdKey,
|
|
}
|
|
return cacheKeys
|
|
}
|
|
|
|
func (m *defaultSystemModel) FindOneByKey(ctx context.Context, key string) (*System, error) {
|
|
system := new(System)
|
|
cacheKey := fmt.Sprintf("%s%v", cacheSystemKeyPrefix, key)
|
|
err := m.QueryCtx(ctx, system, cacheKey, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&System{}).Where("`key` = ?", key).First(v).Error
|
|
})
|
|
return system, err
|
|
}
|
|
|
|
func (m *defaultSystemModel) Insert(ctx context.Context, data *System) error {
|
|
err := m.ExecCtx(ctx, func(conn *gorm.DB) error {
|
|
return conn.Create(&data).Error
|
|
}, m.getCacheKeys(data)...)
|
|
return err
|
|
}
|
|
|
|
func (m *defaultSystemModel) FindOne(ctx context.Context, id int64) (*System, error) {
|
|
SystemIdKey := fmt.Sprintf("%s%v", cacheSystemIdPrefix, id)
|
|
var resp System
|
|
err := m.QueryCtx(ctx, &resp, SystemIdKey, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&System{}).Where("`id` = ?", id).First(&resp).Error
|
|
})
|
|
switch {
|
|
case err == nil:
|
|
return &resp, nil
|
|
default:
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
func (m *defaultSystemModel) Update(ctx context.Context, data *System) error {
|
|
old, err := m.FindOne(ctx, data.Id)
|
|
if err != nil && !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
return err
|
|
}
|
|
err = m.ExecCtx(ctx, func(conn *gorm.DB) error {
|
|
db := conn
|
|
return db.Save(data).Error
|
|
}, m.getCacheKeys(old)...)
|
|
return err
|
|
}
|
|
|
|
func (m *defaultSystemModel) Delete(ctx context.Context, id int64) error {
|
|
data, err := m.FindOne(ctx, id)
|
|
if err != nil {
|
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
err = m.ExecCtx(ctx, func(conn *gorm.DB) error {
|
|
db := conn
|
|
return db.Delete(&System{}, id).Error
|
|
}, m.getCacheKeys(data)...)
|
|
return err
|
|
}
|
|
|
|
func (m *defaultSystemModel) Transaction(ctx context.Context, fn func(db *gorm.DB) error) error {
|
|
return m.TransactCtx(ctx, fn)
|
|
}
|