2018-11-18 23:50:21 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-01 18:16:45 -04:00
|
|
|
require 'maxminddb'
|
|
|
|
require 'resolv'
|
2018-10-09 10:21:41 -04:00
|
|
|
|
|
|
|
class DiscourseIpInfo
|
|
|
|
include Singleton
|
|
|
|
|
|
|
|
def initialize
|
2019-05-20 20:48:18 -04:00
|
|
|
open_db(DiscourseIpInfo.path)
|
2018-10-25 06:54:01 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def open_db(path)
|
2018-10-30 18:08:57 -04:00
|
|
|
@loc_mmdb = mmdb_load(File.join(path, 'GeoLite2-City.mmdb'))
|
|
|
|
@asn_mmdb = mmdb_load(File.join(path, 'GeoLite2-ASN.mmdb'))
|
2018-10-30 21:38:57 -04:00
|
|
|
@cache = LruRedux::ThreadSafeCache.new(2000)
|
2018-10-30 18:08:57 -04:00
|
|
|
end
|
|
|
|
|
2019-05-20 20:48:18 -04:00
|
|
|
def self.path
|
|
|
|
@path ||= File.join(Rails.root, 'vendor', 'data')
|
|
|
|
end
|
|
|
|
|
2019-04-10 05:37:29 -04:00
|
|
|
def self.mmdb_path(name)
|
2019-05-20 20:48:18 -04:00
|
|
|
File.join(path, "#{name}.mmdb")
|
2019-04-10 05:37:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.mmdb_download(name)
|
2020-01-03 00:31:28 -05:00
|
|
|
|
|
|
|
if GlobalSetting.maxmind_license_key.blank?
|
|
|
|
STDERR.puts "MaxMind IP database updates require a license"
|
|
|
|
STDERR.puts "Please set DISCOURSE_MAXMIND_LICENSE_KEY to one you generated at https://www.maxmind.com"
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2019-05-24 09:13:19 -04:00
|
|
|
FileUtils.mkdir_p(path)
|
2019-05-20 20:48:18 -04:00
|
|
|
|
2020-01-03 00:31:28 -05:00
|
|
|
url = "https://download.maxmind.com/app/geoip_download?license_key=#{GlobalSetting.maxmind_license_key}&edition_id=#{name}&suffix=tar.gz"
|
|
|
|
|
2019-05-27 02:51:24 -04:00
|
|
|
gz_file = FileHelper.download(
|
2020-01-03 00:31:28 -05:00
|
|
|
url,
|
2019-05-27 02:51:24 -04:00
|
|
|
max_file_size: 100.megabytes,
|
2019-05-27 20:28:57 -04:00
|
|
|
tmp_file_name: "#{name}.gz",
|
|
|
|
validate_uri: false,
|
|
|
|
follow_redirect: false
|
2019-05-27 02:51:24 -04:00
|
|
|
)
|
|
|
|
|
2020-01-05 06:08:13 -05:00
|
|
|
filename = File.basename(gz_file.path)
|
|
|
|
|
|
|
|
dir = "#{Dir.tmpdir}/#{SecureRandom.hex}"
|
|
|
|
|
|
|
|
Discourse::Utils.execute_command(
|
|
|
|
"mkdir", "-p", dir
|
|
|
|
)
|
|
|
|
|
|
|
|
Discourse::Utils.execute_command(
|
|
|
|
"cp",
|
|
|
|
gz_file.path,
|
|
|
|
"#{dir}/#{filename}"
|
|
|
|
)
|
|
|
|
|
|
|
|
Discourse::Utils.execute_command(
|
|
|
|
"tar",
|
|
|
|
"-xzvf",
|
|
|
|
"#{dir}/#{filename}",
|
|
|
|
chdir: dir
|
|
|
|
)
|
|
|
|
|
|
|
|
Dir["#{dir}/**/*.mmdb"].each do |f|
|
|
|
|
FileUtils.mv(f, mmdb_path(name))
|
|
|
|
end
|
2019-05-27 02:51:24 -04:00
|
|
|
|
2019-05-24 09:13:19 -04:00
|
|
|
ensure
|
2020-01-05 06:08:13 -05:00
|
|
|
FileUtils.rm_r(dir, force: true) if dir
|
2019-05-24 16:11:10 -04:00
|
|
|
gz_file&.close!
|
2019-04-10 05:37:29 -04:00
|
|
|
end
|
|
|
|
|
2018-10-30 18:08:57 -04:00
|
|
|
def mmdb_load(filepath)
|
2018-10-09 10:21:41 -04:00
|
|
|
begin
|
2018-10-30 18:08:57 -04:00
|
|
|
MaxMindDB.new(filepath, MaxMindDB::LOW_MEMORY_FILE_READER)
|
2018-10-09 10:21:41 -04:00
|
|
|
rescue Errno::ENOENT => e
|
2018-10-30 21:57:18 -04:00
|
|
|
Rails.logger.warn("MaxMindDB (#{filepath}) could not be found: #{e}")
|
|
|
|
nil
|
|
|
|
rescue => e
|
2019-05-27 21:45:12 -04:00
|
|
|
Discourse.warn_exception(e, message: "MaxMindDB (#{filepath}) could not be loaded.")
|
2018-10-30 21:57:18 -04:00
|
|
|
nil
|
2018-10-09 10:21:41 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-30 21:38:57 -04:00
|
|
|
def lookup(ip, locale: :en, resolve_hostname: false)
|
2018-10-30 18:08:57 -04:00
|
|
|
ret = {}
|
2018-11-18 23:50:21 -05:00
|
|
|
return ret if ip.blank?
|
2018-10-09 10:21:41 -04:00
|
|
|
|
2018-10-30 18:08:57 -04:00
|
|
|
if @loc_mmdb
|
|
|
|
begin
|
|
|
|
result = @loc_mmdb.lookup(ip)
|
|
|
|
if result&.found?
|
|
|
|
ret[:country] = result.country.name(locale) || result.country.name
|
|
|
|
ret[:country_code] = result.country.iso_code
|
|
|
|
ret[:region] = result.subdivisions.most_specific.name(locale) || result.subdivisions.most_specific.name
|
|
|
|
ret[:city] = result.city.name(locale) || result.city.name
|
|
|
|
ret[:latitude] = result.location.latitude
|
|
|
|
ret[:longitude] = result.location.longitude
|
2018-12-14 07:47:59 -05:00
|
|
|
ret[:location] = ret.values_at(:city, :region, :country).reject(&:blank?).uniq.join(", ")
|
2018-10-30 18:08:57 -04:00
|
|
|
end
|
2018-10-30 21:57:18 -04:00
|
|
|
rescue => e
|
2018-10-30 22:37:54 -04:00
|
|
|
Discourse.warn_exception(e, message: "IP #{ip} could not be looked up in MaxMind GeoLite2-City database.")
|
2018-10-30 18:08:57 -04:00
|
|
|
end
|
2018-10-09 10:21:41 -04:00
|
|
|
end
|
|
|
|
|
2018-10-30 18:08:57 -04:00
|
|
|
if @asn_mmdb
|
|
|
|
begin
|
|
|
|
result = @asn_mmdb.lookup(ip)
|
|
|
|
if result&.found?
|
|
|
|
result = result.to_hash
|
|
|
|
ret[:asn] = result["autonomous_system_number"]
|
|
|
|
ret[:organization] = result["autonomous_system_organization"]
|
|
|
|
end
|
2018-10-30 21:57:18 -04:00
|
|
|
rescue => e
|
2018-10-30 22:37:54 -04:00
|
|
|
Discourse.warn_exception(e, message: "IP #{ip} could not be looked up in MaxMind GeoLite2-ASN database.")
|
2018-10-30 18:08:57 -04:00
|
|
|
end
|
|
|
|
end
|
2018-10-09 10:21:41 -04:00
|
|
|
|
2018-10-30 21:38:57 -04:00
|
|
|
# this can block for quite a while
|
|
|
|
# only use it explicitly when needed
|
|
|
|
if resolve_hostname
|
|
|
|
begin
|
|
|
|
result = Resolv::DNS.new.getname(ip)
|
|
|
|
ret[:hostname] = result&.to_s
|
|
|
|
rescue Resolv::ResolvError
|
|
|
|
end
|
2018-10-30 18:08:57 -04:00
|
|
|
end
|
2018-10-25 06:54:01 -04:00
|
|
|
|
2018-10-30 18:08:57 -04:00
|
|
|
ret
|
2018-10-09 10:21:41 -04:00
|
|
|
end
|
|
|
|
|
2018-10-30 21:38:57 -04:00
|
|
|
def get(ip, locale: :en, resolve_hostname: false)
|
2018-10-25 05:45:31 -04:00
|
|
|
ip = ip.to_s
|
2018-10-30 18:08:57 -04:00
|
|
|
locale = locale.to_s.sub('_', '-')
|
|
|
|
|
2018-10-30 21:38:57 -04:00
|
|
|
@cache["#{ip}-#{locale}-#{resolve_hostname}"] ||=
|
|
|
|
lookup(ip, locale: locale, resolve_hostname: resolve_hostname)
|
2018-10-25 06:54:01 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.open_db(path)
|
|
|
|
instance.open_db(path)
|
2018-10-09 10:21:41 -04:00
|
|
|
end
|
|
|
|
|
2018-10-30 21:38:57 -04:00
|
|
|
def self.get(ip, locale: :en, resolve_hostname: false)
|
|
|
|
instance.get(ip, locale: locale, resolve_hostname: resolve_hostname)
|
2018-10-09 10:21:41 -04:00
|
|
|
end
|
|
|
|
end
|