Class: Down::Http
Defined Under Namespace
Modules: DownloadedFile
Instance Method Summary collapse
- #download(url, max_size: nil, progress_proc: nil, content_length_proc: nil, **options, &block) ⇒ Object
-
#initialize(client_or_options = nil) ⇒ Http
constructor
A new instance of Http.
- #open(url, rewindable: true, **options, &block) ⇒ Object
Methods inherited from Backend
Constructor Details
Instance Method Details
#download(url, max_size: nil, progress_proc: nil, content_length_proc: nil, **options, &block) ⇒ Object
25 26 27 28 29 30 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 |
# File 'lib/down/http.rb', line 25 def download(url, max_size: nil, progress_proc: nil, content_length_proc: nil, **, &block) io = open(url, **, rewindable: false, &block) content_length_proc.call(io.size) if content_length_proc && io.size if max_size && io.size && io.size > max_size raise Down::TooLarge, "file is too large (max is #{max_size/1024/1024}MB)" end extname = File.extname(io.data[:response].uri.path) tempfile = Tempfile.new(["down-http", extname], binmode: true) until io.eof? tempfile.write(io.readpartial) 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 = io.data[:response].uri.to_s tempfile.headers = io.data[:headers] tempfile rescue tempfile.close! if tempfile raise ensure io.close if io end |
#open(url, rewindable: true, **options, &block) ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/down/http.rb', line 61 def open(url, rewindable: true, **, &block) begin response = get(url, **, &block) rescue => exception request_error!(exception) end response_error!(response) unless response.status.success? body_chunks = Enumerator.new do |yielder| begin response.body.each { |chunk| yielder << chunk } rescue => exception request_error!(exception) end end Down::ChunkedIO.new( chunks: body_chunks, size: response.content_length, encoding: response.content_type.charset, rewindable: rewindable, on_close: (-> { response.connection.close } unless @client.persistent?), data: { status: response.code, headers: response.headers.to_h, response: response }, ) end |