2017-05-23 13:31:20 -04:00
|
|
|
require "final_destination"
|
2017-06-13 07:27:05 -04:00
|
|
|
require "mini_mime"
|
|
|
|
require "open-uri"
|
2014-04-22 11:11:06 -04:00
|
|
|
|
2014-04-14 16:55:57 -04:00
|
|
|
class FileHelper
|
|
|
|
|
|
|
|
def self.is_image?(filename)
|
|
|
|
filename =~ images_regexp
|
|
|
|
end
|
|
|
|
|
2017-05-24 13:46:57 -04:00
|
|
|
def self.download(url,
|
|
|
|
max_file_size:,
|
|
|
|
tmp_file_name:,
|
|
|
|
follow_redirect: false,
|
|
|
|
read_timeout: 5,
|
|
|
|
skip_rate_limit: false)
|
|
|
|
|
2017-05-15 15:32:55 -04:00
|
|
|
url = "https:" + url if url.start_with?("//")
|
2014-05-12 10:57:52 -04:00
|
|
|
raise Discourse::InvalidParameters.new(:url) unless url =~ /^https?:\/\//
|
2014-04-14 16:55:57 -04:00
|
|
|
|
2017-05-24 13:46: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?
|
|
|
|
|
2017-06-13 07:27:05 -04:00
|
|
|
downloaded = uri.open("rb", read_timeout: read_timeout)
|
|
|
|
|
2014-04-22 11:11:06 -04:00
|
|
|
extension = File.extname(uri.path)
|
2017-06-13 07:27:05 -04:00
|
|
|
|
|
|
|
if extension.blank? && downloaded.content_type.present?
|
|
|
|
ext = MiniMime.lookup_by_content_type(downloaded.content_type)&.extension
|
2017-06-22 06:53:56 -04:00
|
|
|
ext = "jpg" if ext == "jpe"
|
2017-06-13 07:27:05 -04:00
|
|
|
extension = "." + ext if ext.present?
|
|
|
|
end
|
|
|
|
|
2014-04-14 16:55:57 -04:00
|
|
|
tmp = Tempfile.new([tmp_file_name, extension])
|
|
|
|
|
|
|
|
File.open(tmp.path, "wb") do |f|
|
2015-05-19 06:39:46 -04:00
|
|
|
while f.size <= max_file_size && data = downloaded.read(512.kilobytes)
|
2014-04-14 16:55:57 -04:00
|
|
|
f.write(data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
tmp
|
2017-06-13 07:27:05 -04:00
|
|
|
ensure
|
2017-07-04 21:21:52 -04:00
|
|
|
downloaded&.close
|
2014-04-14 16:55:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def self.images
|
2017-02-20 09:59:01 -05:00
|
|
|
@@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
|
2014-04-29 13:12:35 -04:00
|
|
|
@@images_regexp ||= /\.(#{images.to_a.join("|")})$/i
|
2014-04-14 16:55:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|