mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
63 lines
1.8 KiB
Go
63 lines
1.8 KiB
Go
package persistence
|
|
|
|
import (
|
|
"fmt"
|
|
"mayfly-go/internal/devops/domain/entity"
|
|
"mayfly-go/internal/devops/domain/repository"
|
|
"mayfly-go/pkg/biz"
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type redisRepo struct{}
|
|
|
|
var RedisDao repository.Redis = &redisRepo{}
|
|
|
|
// 分页获取机器信息列表
|
|
func (r *redisRepo) GetRedisList(condition *entity.Redis, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) *model.PageResult {
|
|
sql := "SELECT d.* FROM t_redis d JOIN t_project_member pm ON d.project_id = pm.project_id WHERE 1 = 1 "
|
|
if condition.CreatorId != 0 {
|
|
// 使用创建者id模拟项目成员id
|
|
sql = fmt.Sprintf("%s AND pm.account_id = %d", sql, condition.CreatorId)
|
|
}
|
|
if condition.ProjectId != 0 {
|
|
sql = fmt.Sprintf("%s AND d.project_id = %d", sql, condition.ProjectId)
|
|
}
|
|
if condition.EnvId != 0 {
|
|
sql = fmt.Sprintf("%s AND d.env_id = %d", sql, condition.EnvId)
|
|
}
|
|
if condition.Host != "" {
|
|
sql = sql + " AND d.host LIKE '%" + condition.Host + "%'"
|
|
}
|
|
sql = sql + " ORDER BY d.create_time DESC"
|
|
return model.GetPageBySql(sql, pageParam, toEntity)
|
|
}
|
|
|
|
func (r *redisRepo) Count(condition *entity.Redis) int64 {
|
|
return model.CountBy(condition)
|
|
}
|
|
|
|
// 根据id获取
|
|
func (r *redisRepo) GetById(id uint64, cols ...string) *entity.Redis {
|
|
rd := new(entity.Redis)
|
|
if err := model.GetById(rd, id, cols...); err != nil {
|
|
return nil
|
|
}
|
|
return rd
|
|
}
|
|
|
|
func (r *redisRepo) GetRedis(condition *entity.Redis, cols ...string) error {
|
|
return model.GetBy(condition, cols...)
|
|
}
|
|
|
|
func (r *redisRepo) Insert(redis *entity.Redis) {
|
|
biz.ErrIsNilAppendErr(model.Insert(redis), "新增失败: %s")
|
|
}
|
|
|
|
func (r *redisRepo) Update(redis *entity.Redis) {
|
|
biz.ErrIsNilAppendErr(model.UpdateById(redis), "更新失败: %s")
|
|
}
|
|
|
|
func (r *redisRepo) Delete(id uint64) {
|
|
biz.ErrIsNilAppendErr(model.DeleteById(new(entity.Redis), id), "删除失败: %s")
|
|
}
|