forked from dongri/phonenumber
-
Notifications
You must be signed in to change notification settings - Fork 3
/
phonenumber.go
182 lines (163 loc) · 4.1 KB
/
phonenumber.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package phonenumber
import (
"regexp"
"strings"
"sync"
)
var (
digitsOnlyRegexp = regexp.MustCompile(`\D`)
leadZeroRegexp = regexp.MustCompile(`^0+`)
rusLocalePrefixRegexp = regexp.MustCompile(`^8+`)
rusLocaleMobPrefixRegexp = regexp.MustCompile(`^89`)
)
// Parse mobile number by country
func Parse(number string, country string) string {
return parseInternal(number, country, false)
}
// ParseWithLandLine is Parse mobile and landline number by country
func ParseWithLandLine(number string, country string) string {
return parseInternal(number, country, true)
}
func parseInternal(number string, country string, landLineInclude bool) string {
number = strings.Replace(number, " ", "", -1)
country = strings.Replace(country, " ", "", -1)
plusSign := false
if strings.HasPrefix(number, "+") {
plusSign = true
}
// remove any non-digit character, included the +
number = digitsOnlyRegexp.ReplaceAllString(number, "")
iso3166 := getISO3166ByCountry(country)
if indexOfString(iso3166.Alpha3, []string{"GAB", "CIV", "COG"}) == -1 {
number = leadZeroRegexp.ReplaceAllString(number, "")
}
if iso3166.Alpha3 == "RUS" && len(number) == 11 && rusLocaleMobPrefixRegexp.MatchString(number) == true {
number = rusLocalePrefixRegexp.ReplaceAllString(number, "")
}
if plusSign {
iso3166 = GetISO3166ByNumber(number, landLineInclude)
} else {
if indexOfInt(len(number), iso3166.PhoneNumberLengths) != -1 {
number = iso3166.CountryCode + number
}
}
if validatePhoneISO3166(number, iso3166, landLineInclude) {
return number
}
return ""
}
func getISO3166ByCountry(country string) ISO3166 {
iso3166 := ISO3166{}
uppperCaseCountry := strings.ToUpper(country)
switch len(country) {
case 0:
iso3166 = GetISO3166()[0]
break
case 2:
for _, i := range GetISO3166() {
if i.Alpha2 == uppperCaseCountry {
iso3166 = i
break
}
}
break
case 3:
for _, i := range GetISO3166() {
if i.Alpha3 == uppperCaseCountry {
iso3166 = i
break
}
}
break
default:
for _, i := range GetISO3166() {
if strings.ToUpper(i.CountryName) == uppperCaseCountry {
iso3166 = i
break
}
}
break
}
return iso3166
}
// GetISO3166ByNumber ...
func GetISO3166ByNumber(number string, withLandLine bool) ISO3166 {
iso3166 := ISO3166{}
for _, i := range GetISO3166() {
r := getRegexpByCountryCode(i.CountryCode)
for _, l := range i.PhoneNumberLengths {
if r.MatchString(number) && len(number) == len(i.CountryCode)+l {
// Check match with mobile codes
for _, w := range i.MobileBeginWith {
rm := getRegexpByCountryCode(i.CountryCode + w)
if rm.MatchString(number) {
// Match by mobile codes
return i
}
}
// Match by country code only for landline numbers only
if withLandLine == true {
iso3166 = i
break
}
}
}
}
return iso3166
}
func validatePhoneISO3166(number string, iso3166 ISO3166, withLandLine bool) bool {
if len(iso3166.PhoneNumberLengths) == 0 {
return false
}
if withLandLine {
r := getRegexpByCountryCode(iso3166.CountryCode)
for _, l := range iso3166.PhoneNumberLengths {
if r.MatchString(number) && len(number) == len(iso3166.CountryCode)+l {
return true
}
}
return false
}
r := getRegexpByCountryCode(iso3166.CountryCode)
number = r.ReplaceAllString(number, "")
for _, l := range iso3166.PhoneNumberLengths {
if l == len(number) {
for _, w := range iso3166.MobileBeginWith {
rm := getRegexpByCountryCode(w)
if rm.MatchString(number) == true {
return true
}
}
}
}
return false
}
func indexOfString(word string, data []string) int {
for k, v := range data {
if word == v {
return k
}
}
return -1
}
func indexOfInt(word int, data []int) int {
for k, v := range data {
if word == v {
return k
}
}
return -1
}
var rMap = map[string]*regexp.Regexp{}
var rLock = sync.RWMutex{}
func getRegexpByCountryCode(countryCode string) *regexp.Regexp {
rLock.Lock()
defer rLock.Unlock()
regex, exists := rMap[countryCode]
if exists {
return regex
} else {
rMap[countryCode] = regexp.MustCompile(`^` + countryCode)
}
return rMap[countryCode]
}