-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIsUnblockable.go
More file actions
45 lines (28 loc) · 679 Bytes
/
IsUnblockable.go
File metadata and controls
45 lines (28 loc) · 679 Bytes
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
package insights
import "antispam/types"
import "strings"
func IsUnblockable(reason string) bool {
var result bool = false
if types.IsIPv4(reason) {
check := UnblockableSpammers.SearchIPv4(reason)
if check != nil {
result = true
}
} else if types.IsIPv6(reason) {
check := UnblockableSpammers.SearchIPv6(reason)
if check != nil {
result = true
}
} else if types.IsDomain(reason) {
// Strip out subdomain obfuscations
tmp := strings.Split(reason, ".")
if len(tmp) > 2 {
reason = strings.Join(tmp[len(tmp)-2:], ".")
}
check := UnblockableSpammers.SearchDomain(reason)
if check != nil {
result = true
}
}
return result
}