mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 08:34:15 +01:00
19 lines
524 B
Go
19 lines
524 B
Go
package util
|
|
|
|
import "strings"
|
|
|
|
// ConvertGroupAndEndpointNameToKey converts a group and an endpoint to a key
|
|
func ConvertGroupAndEndpointNameToKey(groupName, endpointName string) string {
|
|
return sanitize(groupName) + "_" + sanitize(endpointName)
|
|
}
|
|
|
|
func sanitize(s string) string {
|
|
s = strings.TrimSpace(strings.ToLower(s))
|
|
s = strings.ReplaceAll(s, "/", "-")
|
|
s = strings.ReplaceAll(s, "_", "-")
|
|
s = strings.ReplaceAll(s, ".", "-")
|
|
s = strings.ReplaceAll(s, ",", "-")
|
|
s = strings.ReplaceAll(s, " ", "-")
|
|
return s
|
|
}
|