mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00
46 lines
998 B
Go
46 lines
998 B
Go
package maxmind
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/rs/zerolog"
|
|
"github.com/rs/zerolog/log"
|
|
"github.com/yusing/go-proxy/internal/gperr"
|
|
"github.com/yusing/go-proxy/internal/notif"
|
|
"github.com/yusing/go-proxy/internal/task"
|
|
)
|
|
|
|
var instance *MaxMind
|
|
|
|
var warnOnce sync.Once
|
|
|
|
func warnNotConfigured() {
|
|
log.Warn().Msg("MaxMind not configured, geo lookup will fail")
|
|
notif.Notify(¬if.LogMessage{
|
|
Level: zerolog.WarnLevel,
|
|
Title: "MaxMind not configured",
|
|
Body: notif.MessageBody("MaxMind is not configured, geo lookup will fail"),
|
|
Color: notif.ColorError,
|
|
})
|
|
}
|
|
|
|
func SetInstance(parent task.Parent, cfg *Config) gperr.Error {
|
|
newInstance := &MaxMind{Config: cfg}
|
|
if err := newInstance.LoadMaxMindDB(parent); err != nil {
|
|
return err
|
|
}
|
|
instance = newInstance
|
|
return nil
|
|
}
|
|
|
|
func HasInstance() bool {
|
|
return instance != nil
|
|
}
|
|
|
|
func LookupCity(ip *IPInfo) (*City, bool) {
|
|
if instance == nil {
|
|
warnOnce.Do(warnNotConfigured)
|
|
return nil, false
|
|
}
|
|
return instance.lookupCity(ip)
|
|
}
|