mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 09:42:02 +08:00
6a3767cde7
* FEATURE: Warn users via email about suspicious logins. * DEV: Move suspicious login check to a job.
48 lines
1.0 KiB
Ruby
48 lines
1.0 KiB
Ruby
require_dependency 'maxminddb'
|
|
|
|
class DiscourseIpInfo
|
|
include Singleton
|
|
|
|
def initialize
|
|
begin
|
|
@mmdb_filename = File.join(Rails.root, 'vendor', 'data', 'GeoLite2-City.mmdb')
|
|
@mmdb = MaxMindDB.new(@mmdb_filename, MaxMindDB::LOW_MEMORY_FILE_READER)
|
|
@cache = LruRedux::ThreadSafeCache.new(1000)
|
|
rescue Errno::ENOENT => e
|
|
Rails.logger.warn("MaxMindDB could not be found: #{e}")
|
|
rescue
|
|
Rails.logger.warn("MaxMindDB could not be loaded.")
|
|
end
|
|
end
|
|
|
|
def lookup(ip)
|
|
return {} unless @mmdb
|
|
|
|
begin
|
|
result = @mmdb.lookup(ip)
|
|
rescue
|
|
Rails.logger.error("IP #{ip} could not be looked up in MaxMindDB.")
|
|
end
|
|
|
|
return {} if !result || !result.found?
|
|
|
|
{
|
|
country: result.country.name,
|
|
country_code: result.country.iso_code,
|
|
region: result.subdivisions.most_specific.name,
|
|
city: result.city.name,
|
|
}
|
|
end
|
|
|
|
def get(ip)
|
|
return {} unless @mmdb
|
|
|
|
ip = ip.to_s
|
|
@cache[ip] ||= lookup(ip)
|
|
end
|
|
|
|
def self.get(ip)
|
|
instance.get(ip)
|
|
end
|
|
end
|