mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-10 04:30:20 +02:00
4a78989d9d
- main reason being it's a burden to always define sentinel errors at global scope, wrap them with `%w` instead of using a string directly - only use sentinel errors when it has to be checked using `errors.Is` - replace all usage of these sentinel errors in `fmt.Errorf` with direct strings that were in the sentinel error - exclude the sentinel error definition requirement from .golangci.yml - update unit tests to use ContainersError instead of ErrorIs so it stays as a "not a change detector test" without requiring a sentinel error
49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
package updater
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
var trailingNumber = regexp.MustCompile(` [0-9]+$`)
|
|
|
|
func parseFilename(fileName string) (
|
|
countryCode, city string, err error,
|
|
) {
|
|
fileName = strings.ReplaceAll(fileName, " ", "") // remove spaces
|
|
|
|
const prefix = "PrivateVPN-"
|
|
if !strings.HasPrefix(fileName, prefix) {
|
|
return "", "", fmt.Errorf("bad prefix in file name %s", fileName)
|
|
}
|
|
s := strings.TrimPrefix(fileName, prefix)
|
|
|
|
const tcpSuffix = "-TUN-443.ovpn"
|
|
const udpSuffix = "-TUN-1194.ovpn"
|
|
switch {
|
|
case strings.HasSuffix(fileName, tcpSuffix):
|
|
s = strings.TrimSuffix(s, tcpSuffix)
|
|
case strings.HasSuffix(fileName, udpSuffix):
|
|
s = strings.TrimSuffix(s, udpSuffix)
|
|
default:
|
|
return "", "", fmt.Errorf("bad suffix in file name %s", fileName)
|
|
}
|
|
|
|
s = trailingNumber.ReplaceAllString(s, "")
|
|
|
|
parts := strings.Split(s, "-")
|
|
const minParts = 2
|
|
if len(parts) < minParts {
|
|
return "", "", fmt.Errorf("not enough parts in file name %s", fileName)
|
|
}
|
|
countryCode, city = parts[0], parts[1]
|
|
|
|
countryCode = strings.ToLower(countryCode)
|
|
if countryCode == "co" && strings.HasPrefix(city, "Bogot") {
|
|
city = "Bogota"
|
|
}
|
|
|
|
return countryCode, city, nil
|
|
}
|