mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
22 lines
548 B
Ruby
22 lines
548 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module ActiveStorage
|
||
|
module Downloading
|
||
|
private
|
||
|
# Opens a new tempfile and copies blob data into it. Yields the tempfile.
|
||
|
def download_blob_to_tempfile # :doc:
|
||
|
Tempfile.open("ActiveStorage") do |file|
|
||
|
download_blob_to file
|
||
|
yield file
|
||
|
end
|
||
|
end
|
||
|
|
||
|
# Efficiently download blob data into the given file.
|
||
|
def download_blob_to(file) # :doc:
|
||
|
file.binmode
|
||
|
blob.download { |chunk| file.write(chunk) }
|
||
|
file.rewind
|
||
|
end
|
||
|
end
|
||
|
end
|