Files
mayfly-go/server/internal/redis/rdm/info.go
2025-10-18 11:21:33 +08:00

164 lines
4.5 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package rdm
import (
"context"
"fmt"
machineapp "mayfly-go/internal/machine/application"
"mayfly-go/pkg/errorx"
"mayfly-go/pkg/logx"
"mayfly-go/pkg/utils/netx"
"net"
"strings"
"time"
"github.com/redis/go-redis/v9"
)
type RedisMode string
const (
StandaloneMode RedisMode = "standalone"
ClusterMode RedisMode = "cluster"
SentinelMode RedisMode = "sentinel"
)
type RedisInfo struct {
Id uint64 `json:"id"`
Host string `json:"host"`
Db int `json:"db"` // 库号
Mode RedisMode `json:"mode"`
Username string `json:"-"`
Password string `json:"-"`
RedisNodePassword string `json:"-"`
Name string `json:"-"`
CodePath []string `json:"codePath"`
SshTunnelMachineId int `json:"-"`
}
func (r *RedisInfo) Conn() (*RedisConn, error) {
redisMode := r.Mode
if redisMode == StandaloneMode {
return r.connStandalone()
}
if redisMode == ClusterMode {
return r.connCluster()
}
if redisMode == SentinelMode {
return r.connSentinel()
}
return nil, errorx.NewBiz("redis mode error")
}
func (re *RedisInfo) connStandalone() (*RedisConn, error) {
redisOptions := &redis.Options{
Addr: re.Host,
Username: re.Username,
Password: re.Password, // no password set
DB: re.Db, // use default DB
DialTimeout: 8 * time.Second,
ReadTimeout: -1, // Disable timeouts, because SSH does not support deadlines.
WriteTimeout: -1,
}
if re.SshTunnelMachineId > 0 {
redisOptions.Dialer = getRedisDialer(re.SshTunnelMachineId)
}
cli := redis.NewClient(redisOptions)
_, e := cli.Ping(context.Background()).Result()
if e != nil {
cli.Close()
return nil, errorx.NewBizf("redis standalone connection failed: %s", e.Error())
}
logx.Infof("redis standalone connection: %s/%d", re.Host, re.Db)
rc := &RedisConn{Id: getConnId(re.Id, re.Db), Info: re}
rc.Cli = cli
return rc, nil
}
func (re *RedisInfo) connCluster() (*RedisConn, error) {
redisClusterOptions := &redis.ClusterOptions{
Addrs: strings.Split(re.Host, ","),
Username: re.Username,
Password: re.Password,
DialTimeout: 8 * time.Second,
}
if re.SshTunnelMachineId > 0 {
redisClusterOptions.Dialer = getRedisDialer(re.SshTunnelMachineId)
}
cli := redis.NewClusterClient(redisClusterOptions)
// 测试连接
_, e := cli.Ping(context.Background()).Result()
if e != nil {
cli.Close()
return nil, errorx.NewBizf("redis cluster connection failed: %s", e.Error())
}
logx.Infof("redis cluster connection: %s/%d", re.Host, re.Db)
rc := &RedisConn{Id: getConnId(re.Id, re.Db), Info: re}
rc.ClusterCli = cli
return rc, nil
}
func (re *RedisInfo) connSentinel() (*RedisConn, error) {
// sentinel模式host为 masterName=host:port,host:port
masterNameAndHosts := strings.Split(re.Host, "=")
sentinelOptions := &redis.FailoverOptions{
MasterName: masterNameAndHosts[0],
SentinelAddrs: strings.Split(masterNameAndHosts[1], ","),
Username: re.Username,
Password: re.RedisNodePassword, // no password set
SentinelUsername: re.Username,
SentinelPassword: re.Password, // 哨兵节点密码
DB: re.Db, // use default DB
DialTimeout: 8 * time.Second,
ReadTimeout: -1, // Disable timeouts, because SSH does not support deadlines.
WriteTimeout: -1,
}
if re.SshTunnelMachineId > 0 {
sentinelOptions.Dialer = getRedisDialer(re.SshTunnelMachineId)
}
cli := redis.NewFailoverClient(sentinelOptions)
_, e := cli.Ping(context.Background()).Result()
if e != nil {
cli.Close()
return nil, errorx.NewBizf("redis sentinel connection failed: %s", e.Error())
}
logx.Infof("redis sentinel connection: %s/%d", re.Host, re.Db)
rc := &RedisConn{Id: getConnId(re.Id, re.Db), Info: re}
rc.Cli = cli
return rc, nil
}
func getRedisDialer(machineId int) func(ctx context.Context, network, addr string) (net.Conn, error) {
return func(ctx context.Context, network, addr string) (net.Conn, error) {
sshTunnel, err := machineapp.GetMachineApp().GetSshTunnelMachine(ctx, machineId)
if err != nil {
return nil, err
}
if sshConn, err := sshTunnel.GetDialConn(network, addr); err == nil {
// 将ssh conn包装否则redis内部设置超时会报错,ssh conn不支持设置超时会返回错误: ssh: tcpChan: deadline not supported
return &netx.WrapSshConn{Conn: sshConn}, nil
} else {
return nil, err
}
}
}
// 生成redis连接id
func getConnId(id uint64, db int) string {
if id == 0 {
return ""
}
return fmt.Sprintf("%d/%d", id, db)
}