2014-04-22 11:11:06 -04:00
|
|
|
require "open-uri"
|
|
|
|
|
2014-04-14 16:55:57 -04:00
|
|
|
class FileHelper
|
|
|
|
|
|
|
|
def self.is_image?(filename)
|
|
|
|
filename =~ images_regexp
|
|
|
|
end
|
|
|
|
|
2014-07-27 11:21:47 -04:00
|
|
|
def self.download(url, max_file_size, tmp_file_name, follow_redirect=false)
|
2014-05-12 10:57:52 -04:00
|
|
|
raise Discourse::InvalidParameters.new(:url) unless url =~ /^https?:\/\//
|
2014-04-14 16:55:57 -04:00
|
|
|
|
2014-04-22 11:11:06 -04:00
|
|
|
uri = URI.parse(url)
|
|
|
|
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|
|
2014-07-27 11:21:47 -04:00
|
|
|
downloaded = uri.open("rb", read_timeout: 5, redirect: follow_redirect)
|
2014-04-15 07:04:14 -04:00
|
|
|
while f.size <= max_file_size && data = downloaded.read(max_file_size)
|
2014-04-14 16:55:57 -04:00
|
|
|
f.write(data)
|
|
|
|
end
|
2014-05-22 03:37:20 -04:00
|
|
|
# tiny files are StringIO, no close! on them
|
|
|
|
downloaded.close! if downloaded.respond_to? :close!
|
2014-04-14 16:55:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
tmp
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def self.images
|
|
|
|
@@images ||= Set.new ["jpg", "jpeg", "png", "gif", "tif", "tiff", "bmp"]
|
|
|
|
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
|