|
1 | 1 | require 'action_controller'
|
2 |
| -require 'weasyprint' |
| 2 | +require_relative 'renderers/weasyprint_renderer' |
| 3 | +require_relative 'renderers/test_renderer' |
| 4 | +require_relative 'instance_invocation' |
| 5 | +require_relative 'rendering' |
3 | 6 |
|
4 | 7 | module Pixelpress
|
5 | 8 | class Base < ActionController::Base
|
6 |
| - def html |
7 |
| - render(template) unless @html |
8 |
| - @html |
9 |
| - end |
10 |
| - |
11 |
| - def pdf |
12 |
| - stream = StringIO.new pdf_data |
13 |
| - stream.singleton_class.class_eval { attr_accessor :original_filename, :content_type } |
14 |
| - stream.original_filename = try(:file_name) || 'document.pdf' |
15 |
| - stream.content_type = 'application/pdf' |
16 |
| - stream |
17 |
| - end |
18 |
| - |
19 |
| - class << self |
20 |
| - def method_missing(m, *args, &block) |
21 |
| - return super unless respond_to_missing?(m) |
22 |
| - instance = new |
23 |
| - instance.send(m, *args) |
24 |
| - instance.instance_variable_set :@template_name, m.to_s |
25 |
| - instance |
26 |
| - end |
27 |
| - |
28 |
| - def respond_to_missing?(m, include_private = false) |
29 |
| - return true if new.methods.include?(m) |
30 |
| - super(m, include_private) |
31 |
| - end |
32 |
| - end |
33 |
| - |
34 |
| - protected |
35 |
| - |
36 |
| - attr_accessor :template |
37 |
| - |
38 |
| - def template |
39 |
| - ['printers', self.class.to_s.underscore.sub('_printer', ''), @template_name].join('/') |
40 |
| - end |
41 |
| - |
42 |
| - private |
43 |
| - |
44 |
| - def pdf_data |
45 |
| - return '%PDF-1.5' if ENV['RAILS_ENV'] == 'test' |
46 |
| - WeasyPrint.new(html).to_pdf |
47 |
| - end |
48 |
| - |
49 |
| - def render(template = caller_locations(1, 1)[0].label) |
50 |
| - @html = render_to_string(template) |
51 |
| - end |
| 9 | + extend InstanceInvocation |
| 10 | + include Rendering |
52 | 11 | end
|
53 | 12 | end
|
0 commit comments