ntfy/util/util.go

181 lines
3.8 KiB
Go
Raw Normal View History

2021-10-29 19:58:14 +02:00
package util
import (
2021-12-17 02:33:01 +01:00
"errors"
2021-11-08 15:24:34 +01:00
"fmt"
2021-10-29 19:58:14 +02:00
"math/rand"
2022-01-04 19:45:29 +01:00
"mime"
2021-10-29 19:58:14 +02:00
"os"
2021-12-17 02:33:01 +01:00
"strings"
2021-12-07 22:03:01 +01:00
"sync"
2021-10-29 19:58:14 +02:00
"time"
)
const (
randomStringCharset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
)
var (
2021-12-07 22:03:01 +01:00
random = rand.New(rand.NewSource(time.Now().UnixNano()))
randomMutex = sync.Mutex{}
2021-12-17 02:33:01 +01:00
2021-12-22 13:46:17 +01:00
errInvalidPriority = errors.New("invalid priority")
2021-10-29 19:58:14 +02:00
)
2021-12-07 17:45:15 +01:00
// FileExists checks if a file exists, and returns true if it does
2021-10-29 19:58:14 +02:00
func FileExists(filename string) bool {
stat, _ := os.Stat(filename)
return stat != nil
}
2021-12-09 04:13:59 +01:00
// InStringList returns true if needle is contained in haystack
func InStringList(haystack []string, needle string) bool {
for _, s := range haystack {
if s == needle {
return true
}
}
return false
}
2021-12-21 21:22:27 +01:00
// InStringListAll returns true if all needles are contained in haystack
func InStringListAll(haystack []string, needles []string) bool {
matches := 0
for _, s := range haystack {
for _, needle := range needles {
if s == needle {
matches++
}
}
}
return matches == len(needles)
}
2021-12-22 13:46:17 +01:00
// InIntList returns true if needle is contained in haystack
func InIntList(haystack []int, needle int) bool {
for _, s := range haystack {
if s == needle {
return true
}
}
return false
}
2021-12-21 21:22:27 +01:00
// SplitNoEmpty splits a string using strings.Split, but filters out empty strings
func SplitNoEmpty(s string, sep string) []string {
res := make([]string, 0)
for _, r := range strings.Split(s, sep) {
if r != "" {
res = append(res, r)
}
}
return res
}
2021-10-29 19:58:14 +02:00
// RandomString returns a random string with a given length
func RandomString(length int) string {
2021-12-07 22:03:01 +01:00
randomMutex.Lock() // Who would have thought that random.Intn() is not thread-safe?!
defer randomMutex.Unlock()
2021-10-29 19:58:14 +02:00
b := make([]byte, length)
for i := range b {
b[i] = randomStringCharset[random.Intn(len(randomStringCharset))]
}
return string(b)
}
2021-11-08 15:24:34 +01:00
// DurationToHuman converts a duration to a human readable format
func DurationToHuman(d time.Duration) (str string) {
if d == 0 {
return "0"
}
d = d.Round(time.Second)
days := d / time.Hour / 24
if days > 0 {
str += fmt.Sprintf("%dd", days)
}
d -= days * time.Hour * 24
hours := d / time.Hour
if hours > 0 {
str += fmt.Sprintf("%dh", hours)
}
d -= hours * time.Hour
minutes := d / time.Minute
if minutes > 0 {
str += fmt.Sprintf("%dm", minutes)
}
d -= minutes * time.Minute
seconds := d / time.Second
if seconds > 0 {
str += fmt.Sprintf("%ds", seconds)
}
return
}
2021-12-17 02:33:01 +01:00
// ParsePriority parses a priority string into its equivalent integer value
2021-12-17 02:33:01 +01:00
func ParsePriority(priority string) (int, error) {
switch strings.TrimSpace(strings.ToLower(priority)) {
2021-12-17 02:33:01 +01:00
case "":
return 0, nil
case "1", "min":
return 1, nil
case "2", "low":
return 2, nil
case "3", "default":
return 3, nil
case "4", "high":
return 4, nil
case "5", "max", "urgent":
return 5, nil
default:
return 0, errInvalidPriority
}
}
2021-12-18 20:43:27 +01:00
2021-12-25 00:13:09 +01:00
// PriorityString converts a priority number to a string
func PriorityString(priority int) (string, error) {
switch priority {
case 0:
return "default", nil
case 1:
return "min", nil
case 2:
return "low", nil
case 3:
return "default", nil
case 4:
return "high", nil
case 5:
2021-12-25 00:57:02 +01:00
return "max", nil
2021-12-25 00:13:09 +01:00
default:
return "", errInvalidPriority
}
}
2021-12-18 20:43:27 +01:00
// ExpandHome replaces "~" with the user's home directory
func ExpandHome(path string) string {
return os.ExpandEnv(strings.ReplaceAll(path, "~", "$HOME"))
}
2021-12-23 21:04:17 +01:00
// ShortTopicURL shortens the topic URL to be human-friendly, removing the http:// or https://
func ShortTopicURL(s string) string {
return strings.TrimPrefix(strings.TrimPrefix(s, "https://"), "http://")
}
2022-01-04 19:45:29 +01:00
// ExtensionByType is a wrapper around mime.ExtensionByType with a few sensible corrections
func ExtensionByType(contentType string) string {
switch contentType {
case "image/jpeg":
return ".jpg"
default:
exts, err := mime.ExtensionsByType(contentType)
if err == nil && len(exts) > 0 {
return exts[0]
}
return ".bin"
}
}