forked from minotar/imgd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cache_redis.go
188 lines (158 loc) · 3.8 KB
/
cache_redis.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
package main
import (
"bytes"
"errors"
"fmt"
"github.com/fzzy/radix/extra/pool"
"github.com/fzzy/radix/redis"
"github.com/minotar/minecraft"
"image/png"
"strconv"
"strings"
)
type CacheRedis struct {
Client *redis.Client
Pool *pool.Pool
}
func dialFunc(network, addr string) (*redis.Client, error) {
client, err := redis.Dial(network, addr)
if err != nil {
return nil, err
}
if config.Redis.Auth != "" {
if err := client.Cmd("AUTH", config.Redis.Auth).Err; err != nil {
client.Close()
return nil, err
}
}
return client, nil
}
func (c *CacheRedis) setup() error {
pool, err := pool.NewCustomPool(
"tcp",
config.Redis.Address,
config.Redis.PoolSize,
dialFunc,
)
if err != nil {
log.Error("Error connecting to redis database")
return err
}
c.Pool = pool
log.Info("Loaded Redis cache (pool: " + fmt.Sprintf("%v", config.Redis.PoolSize) + ")")
return nil
}
func (c *CacheRedis) getFromPool() *redis.Client {
client, err := c.Pool.Get()
if err != nil {
log.Error(err.Error())
return nil
}
return client
}
func (c *CacheRedis) has(username string) bool {
var err error
client := c.getFromPool()
if client == nil {
return false
}
defer c.Pool.CarefullyPut(client, &err)
var exists bool
exists, err = client.Cmd("EXISTS", config.Redis.Prefix+username).Bool()
if err != nil {
log.Error(err.Error())
return false
}
return exists
}
// What to do when failing to pull a skin from redis
func (c *CacheRedis) pullFailed(username string) minecraft.Skin {
c.remove(username)
char, _ := minecraft.FetchSkinForChar()
return char
}
func (c *CacheRedis) pull(username string) minecraft.Skin {
var err error
client := c.getFromPool()
if client == nil {
return c.pullFailed(username)
}
defer c.Pool.CarefullyPut(client, &err)
resp := client.Cmd("GET", config.Redis.Prefix+username)
skin, err := getSkinFromReply(resp)
if err != nil {
log.Error(err.Error())
return c.pullFailed(username)
}
return skin
}
func (c *CacheRedis) add(username string, skin minecraft.Skin) {
var err error
client := c.getFromPool()
if client == nil {
return
}
defer c.Pool.CarefullyPut(client, &err)
skinBuf := new(bytes.Buffer)
_ = png.Encode(skinBuf, skin.Image)
// read into err so that it's set for the defer
err = client.Cmd("SETEX", "skins:"+username, strconv.Itoa(config.Server.Ttl), skinBuf.Bytes()).Err
}
func (c *CacheRedis) remove(username string) {
var err error
client := c.getFromPool()
if client == nil {
return
}
defer c.Pool.CarefullyPut(client, &err)
// read into err so that it's set for the defer
err = client.Cmd("DEL", config.Redis.Prefix+username).Err
}
func (c *CacheRedis) memory() uint64 {
var err error
client := c.getFromPool()
if client == nil {
return 0
}
defer c.Pool.CarefullyPut(client, &err)
data, err := parseStats(client.Cmd("INFO"))
if err != nil {
return 0
}
mem, _ := strconv.ParseUint(data["used_memory"], 10, 64)
return mem
}
func getSkinFromReply(resp *redis.Reply) (minecraft.Skin, error) {
respBytes, respErr := resp.Bytes()
if respErr != nil {
return minecraft.Skin{}, respErr
}
imgBuf := bytes.NewReader(respBytes)
skin, skinErr := minecraft.DecodeSkin(imgBuf)
if skinErr != nil {
return minecraft.Skin{}, skinErr
}
return skin, nil
}
// Parses a reply from redis INFO into a nice map.
func parseStats(resp *redis.Reply) (map[string]string, error) {
r, err := resp.Bytes()
if err != nil {
return nil, err
}
raw := strings.Split(string(r), "\r\n")
output := map[string]string{}
for _, line := range raw {
// Skip blank lines or comment lines
if len(line) == 0 || string(line[0]) == "#" {
continue
}
// Get the position the seperator breaks
sep := strings.Index(line, ":")
if sep == -1 {
return nil, errors.New("Invalid line: " + line)
}
output[line[:sep]] = line[sep+1:]
}
return output, nil
}