Class: ActiveStorage::Previewer::MuPDFPreviewer
  
  
  
  Instance Attribute Summary
  
  
  #blob
  
    
      Class Method Summary
      collapse
    
    
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  
  #initialize
  
    Class Method Details
    
      
  
  
    .accept?(blob)  ⇒ Boolean 
  
  
  
  
    | 
6
7
8 | # File 'activestorage/lib/active_storage/previewer/mupdf_previewer.rb', line 6
def accept?(blob)
  pdf?(blob.content_type) && mutool_exists?
end | 
 
    
      
  
  
    | 
18
19
20
21
22
23
24 | # File 'activestorage/lib/active_storage/previewer/mupdf_previewer.rb', line 18
def mutool_exists?
  return @mutool_exists unless @mutool_exists.nil?
  system mutool_path, out: File::NULL, err: File::NULL
  @mutool_exists = $?.exitstatus == 1
end | 
 
    
      
  
  
    | 
14
15
16 | # File 'activestorage/lib/active_storage/previewer/mupdf_previewer.rb', line 14
def mutool_path
  ActiveStorage.paths[:mutool] || "mutool"
end | 
 
    
      
  
  
    .pdf?(content_type)  ⇒ Boolean 
  
  
  
  
    | 
10
11
12 | # File 'activestorage/lib/active_storage/previewer/mupdf_previewer.rb', line 10
def pdf?(content_type)
  Marcel::Magic.child? content_type, "application/pdf"
end | 
 
    
   
  
    Instance Method Details
    
      
  
  
    #preview(**options)  ⇒ Object 
  
  
  
  
    | 
27
28
29
30
31
32
33 | # File 'activestorage/lib/active_storage/previewer/mupdf_previewer.rb', line 27
def preview(**options)
  download_blob_to_tempfile do |input|
    draw_first_page_from input do |output|
      yield io: output, filename: "#{blob.filename.base}.png", content_type: "image/png", **options
    end
  end
end |