DEV: use FileHelper to download MaxMindDB

This commit is contained in:
Régis Hanol
2019-05-24 18:11:39 +02:00
parent 963f6fbd40
commit 2f5938c3bf
2 changed files with 7 additions and 17 deletions

View File

@ -27,15 +27,11 @@ class DiscourseIpInfo
def self.mmdb_download(name)
FileUtils.mkdir_p(path)
uri = URI("https://geolite.maxmind.com/download/geoip/database/#{name}.tar.gz")
puts uri
puts "SIZE: #{Net::HTTP.get(uri).size}"
tar_gz_file = Tempfile.new
tar_gz_file.binmode
tar_gz_file.write(Net::HTTP.get(uri))
tar_gz_file.close
tar_gz_file = FileHelper.download(
"https://geolite.maxmind.com/download/geoip/database/#{name}.tar.gz",
max_file_size: 100.megabytes,
tmp_file_name: "#{name}.tar.gz"
)
dest = File.join(Dir.tmpdir, "maxmind_#{SecureRandom.hex}")
FileUtils.mkdir_p(dest)