mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-05-18 02:00:12 +00:00
114 lines
2.1 KiB
Go
114 lines
2.1 KiB
Go
package utils
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"encoding/base64"
|
|
"fmt"
|
|
"net"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
func GetSecret(conf string, file string) string {
|
|
if conf == "" && file == "" {
|
|
return ""
|
|
}
|
|
|
|
if conf != "" {
|
|
return conf
|
|
}
|
|
|
|
contents, err := ReadFile(file)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
return ParseSecretFile(contents)
|
|
}
|
|
|
|
func ParseSecretFile(contents string) string {
|
|
lines := strings.Split(contents, "\n")
|
|
|
|
for _, line := range lines {
|
|
if strings.TrimSpace(line) == "" {
|
|
continue
|
|
}
|
|
return strings.TrimSpace(line)
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
func EncodeBasicAuth(username string, password string) string {
|
|
auth := username + ":" + password
|
|
return base64.StdEncoding.EncodeToString([]byte(auth))
|
|
}
|
|
|
|
func CheckIPFilter(filter string, ip string) (bool, error) {
|
|
ipAddr := net.ParseIP(ip)
|
|
|
|
if ipAddr == nil {
|
|
return false, fmt.Errorf("invalid ip address")
|
|
}
|
|
|
|
filter = strings.ReplaceAll(filter, "-", "/")
|
|
|
|
if strings.Contains(filter, "/") {
|
|
_, cidr, err := net.ParseCIDR(filter)
|
|
if err != nil {
|
|
return false, fmt.Errorf("invalid cidr notation: %w", err)
|
|
}
|
|
return cidr.Contains(ipAddr), nil
|
|
}
|
|
|
|
ipFilter := net.ParseIP(filter)
|
|
|
|
if ipFilter == nil {
|
|
return false, fmt.Errorf("invalid ip address")
|
|
}
|
|
|
|
if ipFilter.Equal(ipAddr) {
|
|
return true, nil
|
|
}
|
|
|
|
return false, nil
|
|
}
|
|
|
|
func CheckFilter(filter string, input string) (bool, error) {
|
|
if len(strings.TrimSpace(filter)) == 0 {
|
|
return false, fmt.Errorf("filter is empty")
|
|
}
|
|
|
|
if strings.HasPrefix(filter, "/") && strings.HasSuffix(filter, "/") {
|
|
re, err := regexp.Compile(filter[1 : len(filter)-1])
|
|
if err != nil {
|
|
return false, fmt.Errorf("invalid regex filter: %w", err)
|
|
}
|
|
|
|
if re.MatchString(input) {
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
for item := range strings.SplitSeq(filter, ",") {
|
|
if strings.TrimSpace(item) == input {
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
return false, nil
|
|
}
|
|
|
|
func GenerateUUID(str string) string {
|
|
uuid := uuid.NewSHA1(uuid.NameSpaceURL, []byte(str))
|
|
return uuid.String()
|
|
}
|
|
|
|
func GenerateString(length int) string {
|
|
src := make([]byte, length)
|
|
rand.Read(src)
|
|
return base64.RawURLEncoding.EncodeToString(src)[:length]
|
|
}
|