dip/vendor/github.com/likexian/whois-parser/util.go

112 lines
2.5 KiB
Go
Raw Normal View History

2019-12-22 18:20:45 +01:00
/*
2021-11-12 12:28:10 +01:00
* Copyright 2014-2021 Li Kexian
2019-12-22 18:20:45 +01:00
*
* 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.
*
2020-05-24 18:42:01 +02:00
* Go module for domain whois information parsing
2019-12-22 18:20:45 +01:00
* https://www.likexian.com/
*/
package whoisparser
import (
"sort"
"strings"
)
2021-11-12 12:28:10 +01:00
// isDNSSecEnabled returns if domain dnssec is enabled
func isDNSSecEnabled(data string) bool {
2020-05-24 18:42:01 +02:00
switch strings.ToLower(data) {
case "yes", "active", "signed", "signeddelegation":
return true
default:
return false
}
}
2021-11-12 12:28:10 +01:00
// clearKeyName returns cleared key name
func clearKeyName(key string) string {
2019-12-22 18:20:45 +01:00
if strings.Contains(key, "(") {
key = strings.Split(key, "(")[0]
}
key = strings.Replace(key, "-", " ", -1)
key = strings.Replace(key, "_", " ", -1)
key = strings.Replace(key, "/", " ", -1)
key = strings.Replace(key, "\\", " ", -1)
key = strings.Replace(key, "'", " ", -1)
key = strings.Replace(key, ".", " ", -1)
key = strings.TrimPrefix(key, "Registry ")
key = strings.TrimPrefix(key, "Sponsoring ")
key = strings.TrimSpace(key)
key = strings.ToLower(key)
return key
}
2021-11-12 12:28:10 +01:00
// searchKeyName returns the mapper value by key
func searchKeyName(key string) string {
key = clearKeyName(key)
2019-12-22 18:20:45 +01:00
if v, ok := keyRule[key]; ok {
return v
}
return ""
}
2021-11-12 12:28:10 +01:00
// fixDomainStatus returns fixed domain status
func fixDomainStatus(status []string) []string {
2020-05-24 18:42:01 +02:00
for k, v := range status {
2019-12-22 18:20:45 +01:00
names := strings.Split(strings.TrimSpace(v), " ")
2020-05-24 18:42:01 +02:00
status[k] = strings.ToLower(names[0])
2019-12-22 18:20:45 +01:00
}
2020-05-24 18:42:01 +02:00
return status
2019-12-22 18:20:45 +01:00
}
2021-11-12 12:28:10 +01:00
// fixNameServers returns fixed name servers
func fixNameServers(servers []string) []string {
2019-12-22 18:20:45 +01:00
for k, v := range servers {
names := strings.Split(strings.TrimSpace(v), " ")
2020-05-24 18:42:01 +02:00
servers[k] = strings.ToLower(strings.Trim(names[0], "."))
2019-12-22 18:20:45 +01:00
}
2020-05-24 18:42:01 +02:00
return servers
2019-12-22 18:20:45 +01:00
}
2021-11-12 12:28:10 +01:00
// containsIn returns if any of substrs contains in data
func containsIn(data string, substrs []string) bool {
for _, v := range substrs {
if strings.Contains(data, v) {
return true
}
}
return false
}
2019-12-22 18:20:45 +01:00
// Keys returns all keys of map by sort
2021-11-12 12:28:10 +01:00
func keys(m map[string]string) []string {
2019-12-22 18:20:45 +01:00
r := []string{}
for k := range m {
r = append(r, k)
}
sort.Strings(r)
return r
}