mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-27 12:33:06 +08:00
60 lines
1.4 KiB
Go
60 lines
1.4 KiB
Go
package maxmind
|
|
|
|
import (
|
|
"encoding/json"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/Loyalsoldier/geoip/lib"
|
|
)
|
|
|
|
var (
|
|
defaultGeoLite2CountryMMDBFile = filepath.Join("./", "geolite2", "GeoLite2-Country.mmdb")
|
|
defaultDBIPCountryMMDBFile = filepath.Join("./", "db-ip", "dbip-country-lite.mmdb")
|
|
defaultIPInfoCountryMMDBFile = filepath.Join("./", "ipinfo", "country.mmdb")
|
|
)
|
|
|
|
func newGeoLite2CountryMMDBIn(iType string, iDesc string, action lib.Action, data json.RawMessage) (lib.InputConverter, error) {
|
|
var tmp struct {
|
|
URI string `json:"uri"`
|
|
Want []string `json:"wantedList"`
|
|
OnlyIPType lib.IPType `json:"onlyIPType"`
|
|
}
|
|
|
|
if len(data) > 0 {
|
|
if err := json.Unmarshal(data, &tmp); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
if tmp.URI == "" {
|
|
switch iType {
|
|
case TypeGeoLite2CountryMMDBIn:
|
|
tmp.URI = defaultGeoLite2CountryMMDBFile
|
|
|
|
case TypeDBIPCountryMMDBIn:
|
|
tmp.URI = defaultDBIPCountryMMDBFile
|
|
|
|
case TypeIPInfoCountryMMDBIn:
|
|
tmp.URI = defaultIPInfoCountryMMDBFile
|
|
}
|
|
}
|
|
|
|
// Filter want list
|
|
wantList := make(map[string]bool)
|
|
for _, want := range tmp.Want {
|
|
if want = strings.ToUpper(strings.TrimSpace(want)); want != "" {
|
|
wantList[want] = true
|
|
}
|
|
}
|
|
|
|
return &GeoLite2CountryMMDBIn{
|
|
Type: iType,
|
|
Action: action,
|
|
Description: iDesc,
|
|
URI: tmp.URI,
|
|
Want: wantList,
|
|
OnlyIPType: tmp.OnlyIPType,
|
|
}, nil
|
|
}
|