discourse/lib/tasks/maxminddb.rake
Sam Saffron 7429700389 FIX: ensure we can download maxmind without redis or db config
This also corrects FileHelper.download so it supports "follow_redirect"
correctly (it used to always follow 1 redirect) and adds a `validate_url`
param that will bypass all uri validation if set to false (default is true)
2019-05-28 10:28:57 +10:00

13 lines
346 B
Ruby

# frozen_string_literal: true
require_dependency 'discourse_ip_info'
desc "downloads MaxMind's GeoLite2-City database"
task "maxminddb:get" do
puts "Downloading MaxMindDb's GeoLite2-City..."
DiscourseIpInfo.mmdb_download('GeoLite2-City')
puts "Downloading MaxMindDb's GeoLite2-ASN..."
DiscourseIpInfo.mmdb_download('GeoLite2-ASN')
end