Class: Down::Http

Inherits:
Backend show all
Defined in:
lib/down/http.rb

Defined Under Namespace

Modules: DownloadedFile

Instance Method Summary collapse

Methods inherited from Backend

download, open

Constructor Details

#initialize(client_or_options = nil) ⇒ Http



17
18
19
20
21
22
23
# File 'lib/down/http.rb', line 17

def initialize(client_or_options = nil)
  options = client_or_options
  options = client_or_options.default_options if client_or_options.is_a?(HTTP::Client)

  @client = HTTP.headers("User-Agent" => "Down/#{Down::VERSION}").follow(max_hops: 2)
  @client = HTTP::Client.new(@client.default_options.merge(options)) if options
end

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, **options, &block)
  io = open(url, **options, 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, **options, &block)
  begin
    response = get(url, **options, &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