Class: WickedPdf

Inherits:
Object
  • Object
show all
Includes:
Progress
Defined in:
lib/wicked_pdf.rb,
lib/wicked_pdf/binary.rb,
lib/wicked_pdf/railtie.rb,
lib/wicked_pdf/version.rb,
lib/wicked_pdf/progress.rb,
lib/wicked_pdf/tempfile.rb,
lib/wicked_pdf/middleware.rb,
lib/wicked_pdf/pdf_helper.rb,
lib/wicked_pdf/option_parser.rb,
lib/wicked_pdf/wicked_pdf_helper.rb,
lib/wicked_pdf/wicked_pdf_helper/assets.rb

Defined Under Namespace

Modules: PdfHelper, Progress, WickedPdfHelper Classes: Binary, Middleware, OptionParser, Tempfile, WickedRailtie

Constant Summary collapse

DEFAULT_BINARY_VERSION =
Gem::Version.new('0.9.9')
VERSION =
'2.7.0'.freeze
@@config =
{}

Instance Method Summary collapse

Methods included from Progress

#invoke_with_progress, #track_progress?

Constructor Details

#initialize(wkhtmltopdf_binary_path = nil) ⇒ WickedPdf

Returns a new instance of WickedPdf.



27
28
29
# File 'lib/wicked_pdf.rb', line 27

def initialize(wkhtmltopdf_binary_path = nil)
  @binary = Binary.new(wkhtmltopdf_binary_path, DEFAULT_BINARY_VERSION)
end

Instance Method Details

#binary_versionObject



31
32
33
# File 'lib/wicked_pdf.rb', line 31

def binary_version
  @binary.version
end

#pdf_from_html_file(filepath, options = {}) ⇒ Object



35
36
37
# File 'lib/wicked_pdf.rb', line 35

def pdf_from_html_file(filepath, options = {})
  pdf_from_url("file:///#{filepath}", options)
end

#pdf_from_string(string, options = {}) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/wicked_pdf.rb', line 39

def pdf_from_string(string, options = {})
  options = options.dup
  options.merge!(WickedPdf.config) { |_key, option, _config| option }
  string_file = WickedPdf::Tempfile.new('wicked_pdf.html', options[:temp_path])
  string_file.write_in_chunks(string)
  pdf_from_html_file(string_file.path, options)
ensure
  if options[:delete_temporary_files] && string_file
    string_file.close!
  elsif string_file
    string_file.close
  end
end

#pdf_from_url(url, options = {}) ⇒ Object

rubocop:disable Metrics/CyclomaticComplexity



53
54
55
56
57
58
59
60
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
87
# File 'lib/wicked_pdf.rb', line 53

def pdf_from_url(url, options = {}) # rubocop:disable Metrics/CyclomaticComplexity
  # merge in global config options
  options.merge!(WickedPdf.config) { |_key, option, _config| option }
  generated_pdf_file = WickedPdf::Tempfile.new('wicked_pdf_generated_file.pdf', options[:temp_path])
  command = [@binary.path]
  command.unshift(@binary.xvfb_run_path) if options[:use_xvfb]
  command += option_parser.parse(options)
  command << url
  command << generated_pdf_file.path.to_s

  print_command(command.inspect) if in_development_mode?

  if track_progress?(options)
    invoke_with_progress(command, options)
  else
    _out, err, status = Open3.capture3(*command)
    err = [status.to_s, err].join("\n") if !err.empty? || !status.success?
  end
  if options[:return_file]
    return_file = options.delete(:return_file)
    return generated_pdf_file
  end

  pdf = generated_pdf_file.read_in_chunks

  raise "Error generating PDF\n Command Error: #{err}" if options[:raise_on_all_errors] && !err.empty?
  raise "PDF could not be generated!\n Command Error: #{err}" if pdf && pdf.rstrip.empty?

  pdf
rescue StandardError => e
  raise "Failed to execute:\n#{command}\nError: #{e}"
ensure
  clean_temp_files
  generated_pdf_file.close! if generated_pdf_file && !return_file
end