-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredisInstance.go
55 lines (47 loc) · 1.14 KB
/
redisInstance.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main
import (
"fmt"
"regexp"
"strconv"
"strings"
"github.com/go-redis/redis"
)
type redisInstance struct {
name string
host string
port int
pw string
}
func validateConnectionString(arg string) error {
// regular expression matches <host>:<port>@<password>
// Host can be a name/domain or IP. Password ist optional
re := regexp.MustCompile(`^[\w-.]+:[\w.-]+(?:\.[\w\.-]+)*:([1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])(:\w+)?$`)
if !re.MatchString(arg) {
return fmt.Errorf("%s does not match <name>:<host>:<port>[:<password>] scheme", arg)
}
return nil
}
func parseArgToInstance(connStr string) redisInstance {
errCheckFatal(validateConnectionString(connStr))
connInfo := strings.Split(connStr, ":")
name := connInfo[0]
host := connInfo[1]
port, err := strconv.Atoi(connInfo[2])
errCheckFatal(err)
var pw string
if len(connInfo) > 3 {
pw = connInfo[3]
} else {
pw = ""
}
return redisInstance{
name: name,
host: host,
port: port,
pw: pw,
}
}
func fetchRedisInfo(client *redis.Client) (string, error) {
output, err := client.Info().Result()
return output, err
}