aboutsummaryrefslogtreecommitdiff
path: root/util/key.go
blob: cd8662a11ad2335ca34a9701896f237b7b2ba62b (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
package util

import (
	"crypto/sha512"
	"encoding/hex"
	"math/rand"
	"os"
	"strings"

	"github.com/FChannel0/FChannel-Server/config"
	"github.com/gofiber/fiber/v2/middleware/encryptcookie"
)

const domain = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"

func CreateKey(len int) string {
	// TODO: provided that CreateTripCode still uses sha512, the max len can be 128 at most.
	if len > 128 {
		panic("len is greater than 128") // awful way to do it
	}

	str := CreateTripCode(RandomID(len))
	return str[:len]
}

func CreateTripCode(input string) string {
	out := sha512.Sum512([]byte(input))

	return hex.EncodeToString(out[:])
}

func RandomID(size int) string {
	rng := size
	newID := strings.Builder{}
	for i := 0; i < rng; i++ {
		newID.WriteByte(domain[rand.Intn(len(domain))])
	}

	return newID.String()
}

func GetCookieKey() (string, error) {
	if config.CookieKey == "" {
		var file *os.File
		var err error

		if file, err = os.OpenFile("config/config-init", os.O_APPEND|os.O_WRONLY, 0644); err != nil {
			return "", err
		}

		defer file.Close()

		config.CookieKey = encryptcookie.GenerateKey()
		file.WriteString("cookiekey:" + config.CookieKey)
	}

	return config.CookieKey, nil
}