aboutsummaryrefslogtreecommitdiff
path: root/db/redis.go
blob: 1650b4fa5cfdb8fa97b2e961a049b20aea351c9b (plain)
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
package db

import (
	"bufio"
	"fmt"
	"os"
	"strings"

	"github.com/FChannel0/FChannel-Server/config"
	"github.com/gofiber/fiber/v2"
	"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 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
}

func GetPasswordFromSession(c *fiber.Ctx) (string, string) {

	cookie := c.Cookies("session_token")

	if cookie == "" {
		return "", ""
	}

	sessionToken := cookie

	response, err := Cache.Do("GET", sessionToken)

	if err != nil {
		return "", ""
	}

	token := fmt.Sprintf("%s", response)

	parts := strings.Split(token, "|")

	if len(parts) > 1 {
		return parts[0], parts[1]
	}

	return "", ""
}

/* TODO: Convert to fiber ctx
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
	}
*/