mirror of
https://github.com/coredns/coredns.git
synced 2025-12-04 17:35:13 -05:00
Metadata `geoip/subdivisions/code` now available if geoip plugin is used. Signed-off-by: Tomas Boros <tomas.boros92@gmail.com>
72 lines
2.3 KiB
Go
72 lines
2.3 KiB
Go
package geoip
|
|
|
|
import (
|
|
"context"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/coredns/coredns/plugin/metadata"
|
|
|
|
"github.com/oschwald/geoip2-golang"
|
|
)
|
|
|
|
const defaultLang = "en"
|
|
|
|
func (g GeoIP) setCityMetadata(ctx context.Context, data *geoip2.City) {
|
|
// Set labels for city, country and continent names.
|
|
cityName := data.City.Names[defaultLang]
|
|
metadata.SetValueFunc(ctx, pluginName+"/city/name", func() string {
|
|
return cityName
|
|
})
|
|
countryName := data.Country.Names[defaultLang]
|
|
metadata.SetValueFunc(ctx, pluginName+"/country/name", func() string {
|
|
return countryName
|
|
})
|
|
continentName := data.Continent.Names[defaultLang]
|
|
metadata.SetValueFunc(ctx, pluginName+"/continent/name", func() string {
|
|
return continentName
|
|
})
|
|
|
|
countryCode := data.Country.IsoCode
|
|
metadata.SetValueFunc(ctx, pluginName+"/country/code", func() string {
|
|
return countryCode
|
|
})
|
|
|
|
// Subdivisions represent administrative divisions (e.g., provinces, states) and are provided
|
|
// by the MaxMind database as a hierarchical list of up to 2 levels, ISO codes are set in metadata as
|
|
// a comma separated string, with the exact values provided by the database, even if those were empty strings.
|
|
subdivisionCodes := make([]string, 0, len(data.Subdivisions))
|
|
for _, sub := range data.Subdivisions {
|
|
subdivisionCodes = append(subdivisionCodes, sub.IsoCode)
|
|
}
|
|
metadata.SetValueFunc(ctx, pluginName+"/subdivisions/code", func() string {
|
|
return strings.Join(subdivisionCodes, ",")
|
|
})
|
|
|
|
isInEurope := strconv.FormatBool(data.Country.IsInEuropeanUnion)
|
|
metadata.SetValueFunc(ctx, pluginName+"/country/is_in_european_union", func() string {
|
|
return isInEurope
|
|
})
|
|
continentCode := data.Continent.Code
|
|
metadata.SetValueFunc(ctx, pluginName+"/continent/code", func() string {
|
|
return continentCode
|
|
})
|
|
|
|
latitude := strconv.FormatFloat(data.Location.Latitude, 'f', -1, 64)
|
|
metadata.SetValueFunc(ctx, pluginName+"/latitude", func() string {
|
|
return latitude
|
|
})
|
|
longitude := strconv.FormatFloat(data.Location.Longitude, 'f', -1, 64)
|
|
metadata.SetValueFunc(ctx, pluginName+"/longitude", func() string {
|
|
return longitude
|
|
})
|
|
timeZone := data.Location.TimeZone
|
|
metadata.SetValueFunc(ctx, pluginName+"/timezone", func() string {
|
|
return timeZone
|
|
})
|
|
postalCode := data.Postal.Code
|
|
metadata.SetValueFunc(ctx, pluginName+"/postalcode", func() string {
|
|
return postalCode
|
|
})
|
|
}
|