-
Notifications
You must be signed in to change notification settings - Fork 10
/
regex.go
85 lines (75 loc) · 2.56 KB
/
regex.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright 2017-2019 Lei Ni (nilei81@gmail.com) and other Dragonboat authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package stringutil
import (
"fmt"
"net"
"regexp"
"strconv"
"strings"
"github.com/pkg/errors"
)
var (
// HostnameRegex is the regex for valid hostnames.
HostnameRegex = regexp.MustCompile(`^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$`)
// IPV4Regex is the regex for valid IPv4 addresses.
IPV4Regex = regexp.MustCompile(`^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$`)
)
// IsValidAddress returns a boolean indicating whether the specified address is valid.
func IsValidAddress(addr string) bool {
in := strings.TrimSpace(addr)
parts := strings.Split(in, ":")
if len(parts) != 2 || len(parts[0]) == 0 || len(parts[1]) == 0 {
return false
}
i, err := strconv.Atoi(parts[1])
if err != nil || i <= 0 || i > 65535 {
return false
}
if HostnameRegex.MatchString(parts[0]) {
return true
}
if IPV4Regex.MatchString(parts[0]) {
if net.ParseIP(parts[0]) != nil {
return true
}
}
return false
}
// IsValidAddressErr check whether the specified address is valid and returns error
func IsValidAddressErr(addr string) error {
in := strings.TrimSpace(addr)
parts := strings.Split(in, ":")
if len(parts) != 2 || len(parts[0]) == 0 || len(parts[1]) == 0 {
return errors.New("address must consist of two parts separated with ':")
}
i, err := strconv.Atoi(parts[1])
if err != nil {
return errors.Wrapf(err, "cannot convert '%s' to integer", parts[1])
}
if i <= 0 || i > 65535 {
return errors.New(fmt.Sprintf("invalid port value '%d'", i))
}
switch {
case HostnameRegex.MatchString(parts[0]):
return nil
case IPV4Regex.MatchString(parts[0]):
if net.ParseIP(parts[0]) == nil {
return errors.New(fmt.Sprintf("address '%s' matches IPV4 regex, but still cannot be parsed as IP", parts[0]))
}
return nil
default:
return errors.New(fmt.Sprintf("address '%s' is not a hostname, neither an IPV4", parts[0]))
}
}