-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcache.go
69 lines (58 loc) · 1.46 KB
/
cache.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
package server
import (
"encoding/json"
"log"
"time"
"github.com/go-redis/redis/v8"
)
var redisCon *redis.Client
func redisConn() *redis.Client {
if redisCon == nil {
redisCon = redis.NewClient(&redis.Options{
Addr: GetEnv("REDIS_URL", "localhost:6379"),
Password: GetEnv("REDIS_PASSWORD", ""),
DB: 0,
})
}
return redisCon
}
type CacheResponse struct {
HasCache bool `json:"hascache"`
Response MojangResponse `json:"response"`
}
func ExistsKey(cacheKey string) int64 {
rdb := redisConn()
return rdb.Exists(rdb.Context(), cacheKey).Val()
}
func SaveValue(cacheKey string, value string) bool {
rdb := redisConn()
rdb.Set(rdb.Context(), cacheKey, value, 24*time.Hour).Val()
return true
}
func GetValue(cacheKey string) string {
rdb := redisConn()
return rdb.Get(rdb.Context(), cacheKey).Val()
}
func HasCache(cacheKey string) CacheResponse {
hasCache := ExistsKey(cacheKey)
value := GetValue(cacheKey)
var response MojangResponse
if hasCache == 1 {
err := json.Unmarshal([]byte(value), &response)
if err != nil {
log.Println(err, "HasCache:", cacheKey)
}
}
return CacheResponse{hasCache == 1, response}
}
func SaveCache(cacheKey string, response MojangResponse) CacheResponse {
saved := false
if response.Code < 405 {
data, err := json.Marshal(response)
if err != nil {
log.Println(err, "SaveCache:", cacheKey, response)
}
saved = SaveValue(cacheKey, string(data))
}
return CacheResponse{saved, response}
}