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
|
package db
import (
"bufio"
"fmt"
"net/http"
"os"
"github.com/FChannel0/FChannel-Server/config"
"github.com/gomodule/redigo/redis"
)
var Cache redis.Conn
func InitCache() error {
conn, err := redis.DialURL(config.Redis)
Cache = conn
return err
}
func CloseCache() error {
return Cache.Close()
}
func CheckSession(w http.ResponseWriter, r *http.Request) (interface{}, error) {
c, err := r.Cookie("session_token")
if err != nil {
if err == http.ErrNoCookie {
w.WriteHeader(http.StatusUnauthorized)
return nil, err
}
w.WriteHeader(http.StatusBadRequest)
return nil, err
}
sessionToken := c.Value
response, err := Cache.Do("GET", sessionToken)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return nil, err
}
if response == nil {
w.WriteHeader(http.StatusUnauthorized)
return nil, err
}
return response, nil
}
func GetClientKey() (string, error) {
file, err := os.Open("clientkey")
if err != nil {
return "", err
}
defer file.Close()
scanner := bufio.NewScanner(file)
var line string
for scanner.Scan() {
line = fmt.Sprintf("%s", scanner.Text())
}
return line, nil
}
|