1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activestorage/lib/active_storage/previewer.rb

86 lines
2.5 KiB
Ruby
Raw Normal View History

2017-09-28 16:43:37 -04:00
# frozen_string_literal: true
module ActiveStorage
# This is an abstract base class for previewers, which generate images from blobs. See
# ActiveStorage::Previewer::MuPDFPreviewer and ActiveStorage::Previewer::VideoPreviewer for
# examples of concrete subclasses.
2017-09-28 16:43:37 -04:00
class Previewer
attr_reader :blob
# Implement this method in a concrete subclass. Have it return true when given a blob from which
# the previewer can generate an image.
def self.accept?(blob)
false
end
def initialize(blob)
@blob = blob
end
# Override this method in a concrete subclass. Have it yield an attachable preview image (i.e.
# anything accepted by ActiveStorage::Attached::One#attach). Pass the additional options to
# the underlying blob that is created.
def preview(**options)
2017-09-28 16:43:37 -04:00
raise NotImplementedError
end
private
# Downloads the blob to a tempfile on disk. Yields the tempfile.
2018-05-16 22:50:08 -04:00
def download_blob_to_tempfile(&block) #:doc:
2019-03-28 18:47:42 -04:00
blob.open tmpdir: tmpdir, &block
end
2017-09-28 16:43:37 -04:00
# Executes a system command, capturing its binary output in a tempfile. Yields the tempfile.
#
# Use this method to shell out to a system library (e.g. muPDF or FFmpeg) for preview image
2017-09-28 16:43:37 -04:00
# generation. The resulting tempfile can be used as the +:io+ value in an attachable Hash:
#
# def preview
# download_blob_to_tempfile do |input|
2017-09-28 16:43:37 -04:00
# draw "my-drawing-command", input.path, "--format", "png", "-" do |output|
# yield io: output, filename: "#{blob.filename.base}.png", content_type: "image/png"
# end
# end
# end
#
2019-03-28 18:47:42 -04:00
# The output tempfile is opened in the directory returned by #tmpdir.
def draw(*argv) #:doc:
open_tempfile do |file|
instrument :preview, key: blob.key do
2018-01-10 21:46:55 -05:00
capture(*argv, to: file)
end
yield file
2017-09-28 16:43:37 -04:00
end
end
def open_tempfile
2019-03-28 18:47:42 -04:00
tempfile = Tempfile.open("ActiveStorage-", tmpdir)
2018-01-26 19:48:32 -05:00
begin
yield tempfile
ensure
tempfile.close!
end
end
def instrument(operation, payload = {}, &block)
ActiveSupport::Notifications.instrument "#{operation}.active_storage", payload, &block
end
2017-09-28 16:43:37 -04:00
def capture(*argv, to:)
to.binmode
IO.popen(argv, err: File::NULL) { |out| IO.copy_stream(out, to) }
2017-09-28 16:43:37 -04:00
to.rewind
end
def logger #:doc:
ActiveStorage.logger
end
2018-05-16 22:55:09 -04:00
2019-03-28 18:47:42 -04:00
def tmpdir #:doc:
2018-05-16 22:55:09 -04:00
Dir.tmpdir
end
2017-09-28 16:43:37 -04:00
end
end