2014-04-22 23:11:06 +08:00
|
|
|
require "open-uri"
|
2017-05-24 01:31:20 +08:00
|
|
|
require "final_destination"
|
2014-04-22 23:11:06 +08:00
|
|
|
|
2014-04-15 04:55:57 +08:00
|
|
|
class FileHelper
|
|
|
|
|
|
|
|
def self.is_image?(filename)
|
|
|
|
filename =~ images_regexp
|
|
|
|
end
|
|
|
|
|
2016-03-24 20:09:55 +08:00
|
|
|
def self.download(url, max_file_size, tmp_file_name, follow_redirect=false, read_timeout=5)
|
2017-05-16 03:32:55 +08:00
|
|
|
url = "https:" + url if url.start_with?("//")
|
2014-05-12 22:57:52 +08:00
|
|
|
raise Discourse::InvalidParameters.new(:url) unless url =~ /^https?:\/\//
|
2014-04-15 04:55:57 +08:00
|
|
|
|
2017-05-24 03:50:48 +08:00
|
|
|
# uri = FinalDestination.new(url).resolve
|
|
|
|
uri = URI.parse(url)
|
2014-04-22 23:11:06 +08:00
|
|
|
extension = File.extname(uri.path)
|
2014-04-15 04:55:57 +08:00
|
|
|
tmp = Tempfile.new([tmp_file_name, extension])
|
|
|
|
|
|
|
|
File.open(tmp.path, "wb") do |f|
|
2016-03-24 20:09:55 +08:00
|
|
|
downloaded = uri.open("rb", read_timeout: read_timeout, redirect: follow_redirect, allow_redirections: :all)
|
2015-05-19 18:39:46 +08:00
|
|
|
while f.size <= max_file_size && data = downloaded.read(512.kilobytes)
|
2014-04-15 04:55:57 +08:00
|
|
|
f.write(data)
|
|
|
|
end
|
2014-05-22 15:37:20 +08:00
|
|
|
# tiny files are StringIO, no close! on them
|
2015-05-19 18:39:46 +08:00
|
|
|
downloaded.try(:close!) rescue nil
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
tmp
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def self.images
|
2017-02-20 22:59:01 +08:00
|
|
|
@@images ||= Set.new %w{jpg jpeg png gif tif tiff bmp svg webp ico}
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.images_regexp
|
2014-04-30 01:12:35 +08:00
|
|
|
@@images_regexp ||= /\.(#{images.to_a.join("|")})$/i
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|