2024-01-25 17:58:55 +01:00
|
|
|
package utils
|
2023-10-02 20:33:13 +02:00
|
|
|
|
2023-10-03 20:41:03 +02:00
|
|
|
import (
|
2023-10-03 23:20:31 +02:00
|
|
|
"crypto/rand"
|
|
|
|
"encoding/hex"
|
2023-10-04 01:49:14 +02:00
|
|
|
"log"
|
2023-10-03 23:20:31 +02:00
|
|
|
mathrand "math/rand"
|
2023-12-28 00:02:50 +01:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2023-10-03 20:41:03 +02:00
|
|
|
)
|
2023-10-02 20:33:13 +02:00
|
|
|
|
2024-01-25 17:58:55 +01:00
|
|
|
// GenerateUrl generate random string for plak url
|
|
|
|
func GenerateUrl(length uint8) string {
|
2023-10-02 20:33:13 +02:00
|
|
|
listChars := []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
|
2024-01-25 17:58:55 +01:00
|
|
|
b := make([]rune, length)
|
2023-10-02 20:33:13 +02:00
|
|
|
for i := range b {
|
2023-10-03 23:20:31 +02:00
|
|
|
b[i] = listChars[mathrand.Intn(len(listChars))]
|
2023-10-02 20:33:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return string(b)
|
|
|
|
}
|
2023-10-03 20:41:03 +02:00
|
|
|
|
2024-01-25 17:58:55 +01:00
|
|
|
// GenerateSecret generate random secret (32 bytes hexadecimal)
|
2023-11-26 00:00:53 +01:00
|
|
|
func GenerateSecret() string {
|
2023-10-03 23:20:31 +02:00
|
|
|
key := make([]byte, 32)
|
|
|
|
_, err := rand.Read(key)
|
|
|
|
if err != nil {
|
2023-10-04 01:49:14 +02:00
|
|
|
log.Printf("Failed to generate secret")
|
2023-10-03 20:41:03 +02:00
|
|
|
}
|
|
|
|
|
2023-10-04 01:49:14 +02:00
|
|
|
return hex.EncodeToString(key)
|
2023-10-03 20:41:03 +02:00
|
|
|
}
|
|
|
|
|
2024-01-25 17:58:55 +01:00
|
|
|
// CheckCharRedundant verify is a character is redundant in a string
|
|
|
|
func CheckCharRedundant(source string, char string) bool { // Verify if a char is redundant
|
|
|
|
if strings.Count(source, char) > 1 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
2023-10-20 03:30:19 +02:00
|
|
|
}
|
2023-12-28 00:02:50 +01:00
|
|
|
|
2024-01-25 17:58:55 +01:00
|
|
|
func parseIntBeforeSeparator(source *string, sep string) (int, error) { // return 0 & error if error, only accept positive number
|
|
|
|
if CheckCharRedundant(*source, sep) {
|
|
|
|
return 0, &ParseIntBeforeSeparatorError{Message: *source + ": cannot parse value as int"}
|
|
|
|
}
|
2023-12-28 00:02:50 +01:00
|
|
|
var value int
|
|
|
|
var err error
|
|
|
|
if strings.Contains(*source, sep) {
|
|
|
|
value, err = strconv.Atoi(strings.Split(*source, sep)[0])
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
2024-01-25 17:58:55 +01:00
|
|
|
return 0, &ParseIntBeforeSeparatorError{Message: *source + ": cannot parse value as int"}
|
2023-12-28 00:02:50 +01:00
|
|
|
}
|
|
|
|
if value < 0 { // Only positive value is correct
|
2024-01-25 17:58:55 +01:00
|
|
|
return 0, &ParseIntBeforeSeparatorError{Message: *source + ": format only take positive value"}
|
2023-12-28 00:02:50 +01:00
|
|
|
}
|
2024-01-25 17:58:55 +01:00
|
|
|
|
|
|
|
if value > 99 {
|
|
|
|
return 0, &ParseIntBeforeSeparatorError{Message: *source + ": Format only take two number"}
|
|
|
|
}
|
|
|
|
|
2023-12-28 00:02:50 +01:00
|
|
|
*source = strings.Join(strings.Split(*source, sep)[1:], "")
|
|
|
|
}
|
|
|
|
return value, nil
|
|
|
|
}
|
|
|
|
|
2024-01-25 17:58:55 +01:00
|
|
|
// ParseExpiration Parse "1d1h1m1s" duration format. Return 0 & error if error
|
|
|
|
func ParseExpiration(source string) (int, error) {
|
2023-12-28 00:02:50 +01:00
|
|
|
var expiration int
|
|
|
|
var tempOutput int
|
|
|
|
var err error
|
|
|
|
if source == "0" {
|
|
|
|
return 0, nil
|
|
|
|
}
|
2024-01-25 17:58:55 +01:00
|
|
|
|
|
|
|
source = strings.ToLower(source)
|
|
|
|
|
2023-12-28 00:02:50 +01:00
|
|
|
tempOutput, err = parseIntBeforeSeparator(&source, "d")
|
|
|
|
expiration = tempOutput * 86400
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
2024-01-25 17:58:55 +01:00
|
|
|
return 0, &ParseExpirationError{Message: "Invalid syntax"}
|
2023-12-28 00:02:50 +01:00
|
|
|
}
|
|
|
|
tempOutput, err = parseIntBeforeSeparator(&source, "h")
|
|
|
|
expiration += tempOutput * 3600
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
2024-01-25 17:58:55 +01:00
|
|
|
return 0, &ParseExpirationError{Message: "Invalid syntax"}
|
2023-12-28 00:02:50 +01:00
|
|
|
}
|
|
|
|
tempOutput, err = parseIntBeforeSeparator(&source, "m")
|
|
|
|
expiration += tempOutput * 60
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
2024-01-25 17:58:55 +01:00
|
|
|
return 0, &ParseExpirationError{Message: "Invalid syntax"}
|
2023-12-28 00:02:50 +01:00
|
|
|
}
|
|
|
|
tempOutput, err = parseIntBeforeSeparator(&source, "s")
|
|
|
|
expiration += tempOutput * 1
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
2024-01-25 17:58:55 +01:00
|
|
|
return 0, &ParseExpirationError{Message: "Invalid syntax"}
|
2023-12-28 00:02:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return expiration, nil
|
|
|
|
}
|