1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-06 21:52:27 +08:00
This commit is contained in:
voidint
2024-12-22 22:29:41 +08:00
committed by GitHub
2 changed files with 97 additions and 0 deletions

96
cache/redis.go vendored
View File

@@ -2,9 +2,13 @@ package cache
import (
"context"
"fmt"
"net"
"os"
"time"
"github.com/go-redis/redis/v8"
"golang.org/x/crypto/ssh"
)
// Redis .redis cache
@@ -22,6 +26,7 @@ type RedisOpts struct {
MaxIdle int `yml:"max_idle" json:"max_idle"`
MaxActive int `yml:"max_active" json:"max_active"`
IdleTimeout int `yml:"idle_timeout" json:"idle_timeout"` // second
Dialer func(ctx context.Context, network, addr string) (net.Conn, error)
}
// NewRedis 实例化
@@ -33,6 +38,20 @@ func NewRedis(ctx context.Context, opts *RedisOpts) *Redis {
Password: opts.Password,
IdleTimeout: time.Second * time.Duration(opts.IdleTimeout),
MinIdleConns: opts.MaxIdle,
Dialer: opts.Dialer,
})
return &Redis{ctx: ctx, conn: conn}
}
// NewRedisOverSSH 实例化(通过 SSH 代理连接 Redis
func NewRedisOverSSH(ctx context.Context, opts *RedisOpts, overSSH *OverSSH) *Redis {
conn := redis.NewUniversalClient(&redis.UniversalOptions{
Addrs: []string{opts.Host},
DB: opts.Database,
Password: opts.Password,
IdleTimeout: time.Second * time.Duration(opts.IdleTimeout),
MinIdleConns: opts.MaxIdle,
Dialer: overSSH.MakeDialer(),
})
return &Redis{ctx: ctx, conn: conn}
}
@@ -92,3 +111,80 @@ func (r *Redis) Delete(key string) error {
func (r *Redis) DeleteContext(ctx context.Context, key string) error {
return r.conn.Del(ctx, key).Err()
}
// SSHAuthMethod SSH认证方式
type SSHAuthMethod uint8
const (
// PubKeyAuth SSH公钥方式认证
PubKeyAuth SSHAuthMethod = 1
// PwdAuth SSH密码方式认证
PwdAuth SSHAuthMethod = 2
)
// OverSSH SSH 代理配置
type OverSSH struct {
Host string `yml:"host" json:"host"`
Port int `yml:"port" json:"port"`
AuthMethod SSHAuthMethod `yml:"auth_method" json:"auth_method"`
Username string `yml:"username" json:"username"`
Password string `yml:"password" json:"password"`
KeyFile string `yml:"key_file" json:"key_file"`
}
// DialWithPassword 返回密码方式认证的 SSH 客户端
func (s *OverSSH) DialWithPassword() (*ssh.Client, error) {
return ssh.Dial(
"tcp",
fmt.Sprintf("%s:%d", s.Host, s.Port),
&ssh.ClientConfig{
User: s.Username,
Auth: []ssh.AuthMethod{
ssh.Password(s.Password),
},
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
},
)
}
// DialWithKeyFile 返回公钥方式认证的 SSH 客户端
func (s *OverSSH) DialWithKeyFile() (*ssh.Client, error) {
k, err := os.ReadFile(s.KeyFile)
if err != nil {
return nil, err
}
signer, err := ssh.ParsePrivateKey(k)
if err != nil {
return nil, err
}
return ssh.Dial(
"tcp",
fmt.Sprintf("%s:%d", s.Host, s.Port),
&ssh.ClientConfig{
User: s.Username,
Auth: []ssh.AuthMethod{
ssh.PublicKeys(signer),
},
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
},
)
}
// MakeDialer 创建 SSH 代理拨号器
func (s *OverSSH) MakeDialer() func(ctx context.Context, network, addr string) (net.Conn, error) {
return func(ctx context.Context, network, addr string) (net.Conn, error) {
var err error
var sshclient *ssh.Client
switch s.AuthMethod {
case PwdAuth:
sshclient, err = s.DialWithPassword()
case PubKeyAuth:
sshclient, err = s.DialWithKeyFile()
}
if err != nil {
return nil, err
}
return sshclient.Dial(network, addr)
}
}