Class: Down::Http
Defined Under Namespace
Modules: DownloadedFile
Instance Method Summary collapse
- #download(url, max_size: nil, progress_proc: nil, content_length_proc: nil, destination: nil, **options, &block) ⇒ Object
-
#initialize(options = {}, &block) ⇒ Http
constructor
A new instance of Http.
- #open(url, rewindable: true, **options, &block) ⇒ Object
Methods inherited from Backend
Constructor Details
#initialize(options = {}, &block) ⇒ Http
Returns a new instance of Http.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/down/http.rb', line 15 def initialize( = {}, &block) if .is_a?(HTTP::Client) warn "[Down] Passing an HTTP::Client object to Down::Http#initialize is deprecated and won't be supported in Down 5. Use the block initialization instead." = ..to_hash end @method = .delete(:method) || :get @client = HTTP .headers("User-Agent" => "Down/#{Down::VERSION}") .follow(max_hops: 2) .timeout(connect: 30, write: 30, read: 30) @client = HTTP::Client.new(@client..merge()) if .any? @client = block.call(@client) if block end |
Instance Method Details
#download(url, max_size: nil, progress_proc: nil, content_length_proc: nil, destination: nil, **options, &block) ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/down/http.rb', line 31 def download(url, max_size: nil, progress_proc: nil, content_length_proc: nil, destination: nil, **, &block) response = request(url, **, &block) content_length_proc.call(response.content_length) if content_length_proc && response.content_length if max_size && response.content_length && response.content_length > max_size raise Down::TooLarge, "file is too large (max is #{max_size/1024/1024}MB)" end extname = File.extname(response.uri.path) tempfile = Tempfile.new(["down-http", extname], binmode: true) stream_body(response) do |chunk| tempfile.write(chunk) chunk.clear # deallocate string progress_proc.call(tempfile.size) if progress_proc if max_size && tempfile.size > max_size raise Down::TooLarge, "file is too large (max is #{max_size/1024/1024}MB)" end end tempfile.open # flush written content tempfile.extend Down::Http::DownloadedFile tempfile.url = response.uri.to_s tempfile.headers = response.headers.to_h download_result(tempfile, destination) rescue tempfile.close! if tempfile raise end |
#open(url, rewindable: true, **options, &block) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/down/http.rb', line 66 def open(url, rewindable: true, **, &block) response = request(url, **, &block) Down::ChunkedIO.new( chunks: enum_for(:stream_body, response), size: response.content_length, encoding: response.content_type.charset, rewindable: rewindable, data: { status: response.code, headers: response.headers.to_h, response: response }, ) end |