discourse/lib/file_helper.rb

53 lines
1.2 KiB
Ruby
Raw Normal View History

require "open-uri"
require "final_destination"
2014-04-14 16:55:57 -04:00
class FileHelper
def self.is_image?(filename)
filename =~ images_regexp
end
def self.download(url,
max_file_size:,
tmp_file_name:,
follow_redirect: false,
read_timeout: 5,
skip_rate_limit: false)
url = "https:" + url if url.start_with?("//")
raise Discourse::InvalidParameters.new(:url) unless url =~ /^https?:\/\//
2014-04-14 16:55:57 -04:00
uri = FinalDestination.new(
url,
max_redirects: follow_redirect ? 5 : 1,
skip_rate_limit: skip_rate_limit
).resolve
2017-05-23 16:32:54 -04:00
return unless uri.present?
extension = File.extname(uri.path)
2014-04-14 16:55:57 -04:00
tmp = Tempfile.new([tmp_file_name, extension])
File.open(tmp.path, "wb") do |f|
2017-05-23 16:32:54 -04:00
downloaded = uri.open("rb", read_timeout: read_timeout)
while f.size <= max_file_size && data = downloaded.read(512.kilobytes)
2014-04-14 16:55:57 -04:00
f.write(data)
end
# tiny files are StringIO, no close! on them
downloaded.try(:close!) rescue nil
2014-04-14 16:55:57 -04:00
end
tmp
end
private
def self.images
@@images ||= Set.new %w{jpg jpeg png gif tif tiff bmp svg webp ico}
2014-04-14 16:55:57 -04:00
end
def self.images_regexp
@@images_regexp ||= /\.(#{images.to_a.join("|")})$/i
2014-04-14 16:55:57 -04:00
end
end