Sha256: 690c07c6ed1e1f7b19f5e9e7c42e82d7f996a6ed5186ce4486483cee4f756c80

Contents?: true

Size: 976 Bytes

Versions: 27

Compression:

Stored size: 976 Bytes

Contents

# frozen_string_literal: true

require "tmpdir"

module ActiveStorage
  module Downloading
    private
      # Opens a new tempfile in #tempdir and copies blob data into it. Yields the tempfile.
      def download_blob_to_tempfile #:doc:
        open_tempfile_for_blob do |file|
          download_blob_to file
          yield file
        end
      end

      def open_tempfile_for_blob
        tempfile = Tempfile.open([ "ActiveStorage", blob.filename.extension_with_delimiter ], tempdir)

        begin
          yield tempfile
        ensure
          tempfile.close!
        end
      end

      # Efficiently downloads blob data into the given file.
      def download_blob_to(file) #:doc:
        file.binmode
        blob.download { |chunk| file.write(chunk) }
        file.flush
        file.rewind
      end

      # Returns the directory in which tempfiles should be opened. Defaults to +Dir.tmpdir+.
      def tempdir #:doc:
        Dir.tmpdir
      end
  end
end

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
activestorage-5.2.8.1 lib/active_storage/downloading.rb
activestorage-5.2.8 lib/active_storage/downloading.rb
activestorage-5.2.7.1 lib/active_storage/downloading.rb
activestorage-5.2.7 lib/active_storage/downloading.rb
activestorage-5.2.6.3 lib/active_storage/downloading.rb
activestorage-5.2.6.2 lib/active_storage/downloading.rb
activestorage-5.2.6.1 lib/active_storage/downloading.rb
activestorage-5.2.6 lib/active_storage/downloading.rb
activestorage-5.2.4.6 lib/active_storage/downloading.rb
activestorage-5.2.5 lib/active_storage/downloading.rb
activestorage-5.2.4.5 lib/active_storage/downloading.rb
activestorage-5.2.4.4 lib/active_storage/downloading.rb
activestorage-5.2.4.3 lib/active_storage/downloading.rb
activestorage-5.2.4.2 lib/active_storage/downloading.rb
activestorage-5.2.4.1 lib/active_storage/downloading.rb
activestorage-5.2.4 lib/active_storage/downloading.rb
activestorage-5.2.4.rc1 lib/active_storage/downloading.rb
spiral_form-0.1.1 vendor/bundle/gems/activestorage-5.2.3/lib/active_storage/downloading.rb
spiral_form-0.1.0 vendor/bundle/gems/activestorage-5.2.3/lib/active_storage/downloading.rb
activestorage-5.2.3 lib/active_storage/downloading.rb