2021-07-28 18:03:19 +08:00
|
|
|
|
package application
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2022-07-10 12:14:06 +08:00
|
|
|
|
"context"
|
2021-08-18 17:57:33 +08:00
|
|
|
|
"fmt"
|
2022-06-02 17:41:11 +08:00
|
|
|
|
"mayfly-go/internal/devops/domain/entity"
|
|
|
|
|
|
"mayfly-go/internal/devops/domain/repository"
|
|
|
|
|
|
"mayfly-go/internal/devops/infrastructure/persistence"
|
|
|
|
|
|
"mayfly-go/pkg/biz"
|
|
|
|
|
|
"mayfly-go/pkg/cache"
|
|
|
|
|
|
"mayfly-go/pkg/global"
|
|
|
|
|
|
"mayfly-go/pkg/model"
|
2022-07-10 12:14:06 +08:00
|
|
|
|
"strings"
|
2021-08-18 17:57:33 +08:00
|
|
|
|
"time"
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2022-07-10 12:14:06 +08:00
|
|
|
|
"github.com/go-redis/redis/v8"
|
2021-07-28 18:03:19 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type Redis interface {
|
|
|
|
|
|
// 分页获取机器脚本信息列表
|
|
|
|
|
|
GetPageList(condition *entity.Redis, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) *model.PageResult
|
|
|
|
|
|
|
2021-09-11 14:04:09 +08:00
|
|
|
|
Count(condition *entity.Redis) int64
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
// 根据id获取
|
|
|
|
|
|
GetById(id uint64, cols ...string) *entity.Redis
|
|
|
|
|
|
|
|
|
|
|
|
// 根据条件获取
|
|
|
|
|
|
GetRedisBy(condition *entity.Redis, cols ...string) error
|
|
|
|
|
|
|
|
|
|
|
|
Save(entity *entity.Redis)
|
|
|
|
|
|
|
|
|
|
|
|
// 删除数据库信息
|
|
|
|
|
|
Delete(id uint64)
|
|
|
|
|
|
|
|
|
|
|
|
// 获取数据库连接实例
|
|
|
|
|
|
GetRedisInstance(id uint64) *RedisInstance
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type redisAppImpl struct {
|
|
|
|
|
|
redisRepo repository.Redis
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var RedisApp Redis = &redisAppImpl{
|
|
|
|
|
|
redisRepo: persistence.RedisDao,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 分页获取机器脚本信息列表
|
|
|
|
|
|
func (r *redisAppImpl) GetPageList(condition *entity.Redis, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) *model.PageResult {
|
|
|
|
|
|
return r.redisRepo.GetRedisList(condition, pageParam, toEntity, orderBy...)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-09-11 14:04:09 +08:00
|
|
|
|
func (r *redisAppImpl) Count(condition *entity.Redis) int64 {
|
|
|
|
|
|
return r.redisRepo.Count(condition)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
// 根据id获取
|
|
|
|
|
|
func (r *redisAppImpl) GetById(id uint64, cols ...string) *entity.Redis {
|
|
|
|
|
|
return r.redisRepo.GetById(id, cols...)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 根据条件获取
|
|
|
|
|
|
func (r *redisAppImpl) GetRedisBy(condition *entity.Redis, cols ...string) error {
|
|
|
|
|
|
return r.redisRepo.GetRedis(condition, cols...)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (r *redisAppImpl) Save(re *entity.Redis) {
|
|
|
|
|
|
TestRedisConnection(re)
|
|
|
|
|
|
|
|
|
|
|
|
// 查找是否存在该库
|
|
|
|
|
|
oldRedis := &entity.Redis{Host: re.Host, Db: re.Db}
|
|
|
|
|
|
err := r.GetRedisBy(oldRedis)
|
|
|
|
|
|
|
|
|
|
|
|
if re.Id == 0 {
|
|
|
|
|
|
biz.IsTrue(err != nil, "该库已存在")
|
|
|
|
|
|
r.redisRepo.Insert(re)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 如果存在该库,则校验修改的库是否为该库
|
|
|
|
|
|
if err == nil {
|
2022-04-01 11:23:22 +08:00
|
|
|
|
biz.IsTrue(oldRedis.Id == re.Id, "该库已存在")
|
2021-07-28 18:03:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
// 先关闭数据库连接
|
|
|
|
|
|
CloseRedis(re.Id)
|
|
|
|
|
|
r.redisRepo.Update(re)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 删除Redis信息
|
|
|
|
|
|
func (r *redisAppImpl) Delete(id uint64) {
|
|
|
|
|
|
CloseRedis(id)
|
|
|
|
|
|
r.redisRepo.Delete(id)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取数据库连接实例
|
|
|
|
|
|
func (r *redisAppImpl) GetRedisInstance(id uint64) *RedisInstance {
|
|
|
|
|
|
// Id不为0,则为需要缓存
|
|
|
|
|
|
needCache := id != 0
|
|
|
|
|
|
if needCache {
|
2021-08-18 17:57:33 +08:00
|
|
|
|
load, ok := redisCache.Get(id)
|
2021-07-28 18:03:19 +08:00
|
|
|
|
if ok {
|
|
|
|
|
|
return load.(*RedisInstance)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// 缓存不存在,则回调获取redis信息
|
|
|
|
|
|
re := r.GetById(id)
|
|
|
|
|
|
biz.NotNil(re, "redis信息不存在")
|
2021-08-18 17:57:33 +08:00
|
|
|
|
|
2022-07-10 12:14:06 +08:00
|
|
|
|
redisMode := re.Mode
|
|
|
|
|
|
ri := &RedisInstance{Id: id, ProjectId: re.ProjectId, Mode: redisMode}
|
|
|
|
|
|
if redisMode == "" || redisMode == entity.RedisModeStandalone {
|
|
|
|
|
|
rcli := getRedisCient(re)
|
|
|
|
|
|
// 测试连接
|
|
|
|
|
|
_, e := rcli.Ping(context.Background()).Result()
|
|
|
|
|
|
if e != nil {
|
|
|
|
|
|
rcli.Close()
|
|
|
|
|
|
panic(biz.NewBizErr(fmt.Sprintf("redis连接失败: %s", e.Error())))
|
|
|
|
|
|
}
|
|
|
|
|
|
ri.Cli = rcli
|
|
|
|
|
|
} else if redisMode == entity.RedisModeCluster {
|
|
|
|
|
|
ccli := getRedisClusterClient(re)
|
|
|
|
|
|
// 测试连接
|
|
|
|
|
|
_, e := ccli.Ping(context.Background()).Result()
|
|
|
|
|
|
if e != nil {
|
|
|
|
|
|
ccli.Close()
|
|
|
|
|
|
panic(biz.NewBizErr(fmt.Sprintf("redis集群连接失败: %s", e.Error())))
|
|
|
|
|
|
}
|
|
|
|
|
|
ri.ClusterCli = ccli
|
|
|
|
|
|
}
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2022-07-10 12:14:06 +08:00
|
|
|
|
global.Log.Infof("连接redis: %s", re.Host)
|
2021-07-28 18:03:19 +08:00
|
|
|
|
if needCache {
|
2021-08-18 17:57:33 +08:00
|
|
|
|
redisCache.Put(re.Id, ri)
|
2021-07-28 18:03:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
return ri
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-07-10 12:14:06 +08:00
|
|
|
|
func getRedisCient(re *entity.Redis) *redis.Client {
|
|
|
|
|
|
return redis.NewClient(&redis.Options{
|
|
|
|
|
|
Addr: re.Host,
|
|
|
|
|
|
Password: re.Password, // no password set
|
|
|
|
|
|
DB: re.Db, // use default DB
|
|
|
|
|
|
DialTimeout: 8 * time.Second,
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func getRedisClusterClient(re *entity.Redis) *redis.ClusterClient {
|
|
|
|
|
|
return redis.NewClusterClient(&redis.ClusterOptions{
|
|
|
|
|
|
Addrs: strings.Split(re.Host, ","),
|
|
|
|
|
|
Password: re.Password,
|
|
|
|
|
|
DialTimeout: 8 * time.Second,
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
2021-08-18 17:57:33 +08:00
|
|
|
|
// redis客户端连接缓存,30分钟内没有访问则会被关闭
|
|
|
|
|
|
var redisCache = cache.NewTimedCache(30*time.Minute, 5*time.Second).
|
|
|
|
|
|
WithUpdateAccessTime(true).
|
|
|
|
|
|
OnEvicted(func(key interface{}, value interface{}) {
|
2022-05-12 10:34:16 +08:00
|
|
|
|
global.Log.Info(fmt.Sprintf("删除redis连接缓存 id = %d", key))
|
2022-07-10 12:14:06 +08:00
|
|
|
|
value.(*RedisInstance).Close()
|
2021-08-18 17:57:33 +08:00
|
|
|
|
})
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2022-05-12 10:34:16 +08:00
|
|
|
|
// 移除redis连接缓存并关闭redis连接
|
2021-07-28 18:03:19 +08:00
|
|
|
|
func CloseRedis(id uint64) {
|
2022-05-12 10:34:16 +08:00
|
|
|
|
redisCache.Delete(id)
|
2021-07-28 18:03:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func TestRedisConnection(re *entity.Redis) {
|
2022-07-10 12:14:06 +08:00
|
|
|
|
var cmd redis.Cmdable
|
|
|
|
|
|
if re.Mode == "" || re.Mode == entity.RedisModeStandalone {
|
|
|
|
|
|
rcli := getRedisCient(re)
|
|
|
|
|
|
defer rcli.Close()
|
|
|
|
|
|
cmd = rcli
|
|
|
|
|
|
} else if re.Mode == entity.RedisModeCluster {
|
|
|
|
|
|
ccli := getRedisClusterClient(re)
|
|
|
|
|
|
defer ccli.Close()
|
|
|
|
|
|
cmd = ccli
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
// 测试连接
|
2022-07-10 12:14:06 +08:00
|
|
|
|
_, e := cmd.Ping(context.Background()).Result()
|
2021-07-28 18:03:19 +08:00
|
|
|
|
biz.ErrIsNilAppendErr(e, "Redis连接失败: %s")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-07-10 12:14:06 +08:00
|
|
|
|
// redis实例
|
|
|
|
|
|
type RedisInstance struct {
|
|
|
|
|
|
Id uint64
|
|
|
|
|
|
ProjectId uint64
|
|
|
|
|
|
Mode string
|
|
|
|
|
|
Cli *redis.Client
|
|
|
|
|
|
ClusterCli *redis.ClusterClient
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取命令执行接口的具体实现
|
|
|
|
|
|
func (r *RedisInstance) GetCmdable() redis.Cmdable {
|
|
|
|
|
|
redisMode := r.Mode
|
|
|
|
|
|
if redisMode == "" || redisMode == entity.RedisModeStandalone {
|
|
|
|
|
|
return r.Cli
|
|
|
|
|
|
}
|
|
|
|
|
|
if r.Mode == entity.RedisModeCluster {
|
|
|
|
|
|
return r.ClusterCli
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
func (r *RedisInstance) Scan(cursor uint64, match string, count int64) ([]string, uint64) {
|
2022-07-10 12:14:06 +08:00
|
|
|
|
keys, newcursor, err := r.GetCmdable().Scan(context.Background(), cursor, match, count).Result()
|
2021-07-28 18:03:19 +08:00
|
|
|
|
biz.ErrIsNilAppendErr(err, "scan失败: %s")
|
|
|
|
|
|
return keys, newcursor
|
|
|
|
|
|
}
|
2022-07-10 12:14:06 +08:00
|
|
|
|
|
|
|
|
|
|
func (r *RedisInstance) Close() {
|
|
|
|
|
|
if r.Mode == entity.RedisModeStandalone {
|
|
|
|
|
|
r.Cli.Close()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
if r.Mode == entity.RedisModeCluster {
|
|
|
|
|
|
r.ClusterCli.Close()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|