pdf_gem 1.0.7 → 1.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4c0bda6a2f0b4e18cd46e48244daa04dc915aadd3e97fc4c610693dd6a50ad7
4
- data.tar.gz: c3c291cb440ef39d1594485d7cb826df23fc14e60c132c3285561a209868c58b
3
+ metadata.gz: b1aebe9fe7a3063f7d35e29a32bb86b7576504fa5747107b1287a094107f8e7f
4
+ data.tar.gz: 5c0ac4c24612da13e73254b4bf92c106f982e494ca44e69527f293df2aa018a3
5
5
  SHA512:
6
- metadata.gz: 7fad7f3dd35e1627f48bd11a45705eb8b8b21439d0d1e1795a83530cb0ef0e45c4ca0a8fdc2cf0da8f5f3c1e0485e28c8880d739126cf059d18d0624512e7672
7
- data.tar.gz: 9bc66a23cfcb9ccd9bede74f8f0d63988fc37d8721a90a73fbf37f484a6c127dcf892602c8d09f4aa00f5ab3feb8bc19c817b8c071fd7dab9588970d726838cc
6
+ metadata.gz: 0a24411dddd1f2d1aeb8891cd23c6cff5d8ec3c83cc6b267f79a182eb57539a2111c2142dd04f6137b7224be2642ef35aaf0f4073ba8335224cb5b0a0199b0ab
7
+ data.tar.gz: 0ba4f40b1c8a38eac14c1bd99df0c72f93aed13b0410135912665f9e4de53fb56df3287b0a3a06c3523354e895841fdc566b6d7c82333c4ec0d087f513beddfb
data/README.md CHANGED
@@ -25,15 +25,6 @@ Or install it yourself as:
25
25
  $ gem install pdf_gem
26
26
  ```
27
27
 
28
- Add this lines to `application.rb`
29
- ```ruby
30
- ActionController::Renderers.add :pdf do |template, options|
31
- PdfGem.renderer(template, options)
32
- end
33
- ```
34
- > **NOTE** You can change the :pdf in some other name if you have conflicts with other similar libraries
35
-
36
-
37
28
  You may need to add
38
29
  ```ruby
39
30
  Mime::Type.register "application/pdf", :pdf
@@ -79,6 +70,12 @@ PdfGem.pdf_from_string(options)
79
70
 
80
71
  - `options` <[Object]> Options object which might have the following properties:
81
72
  - `url` <[string]> (Used only for PdfGem.pdf_from_url) This is the url to render.
73
+ - `timeout` <[number]> Maximum navigation time in ms, default is 3000 ms.
74
+ - `waitUntil` <[string]|[Array]<[string]>> When to consider navigation succeeded, defaults to `load`. Given an array of event strings, navigation is considered to be successful after all events have been fired. Events can be either:
75
+ - `load` - consider navigation to be finished when the `load` event is fired.
76
+ - `domcontentloaded` - consider navigation to be finished when the `DOMContentLoaded` event is fired.
77
+ - `networkidle0` - consider navigation to be finished when there are no more than 0 network connections for at least `500` ms.
78
+ - `networkidle2` - consider navigation to be finished when there are no more than 2 network connections for at least `500` ms.
82
79
  - `html` <[string]> (Used only for PdfGem.pdf_from_string) This is the html string to render.
83
80
  - `disposition` <[string]> (Use only for controller render) Disposition string (inline/attachment).
84
81
  - `formats` <[string]> (Use only for controller render) Force to load view of a particular format (pdf, html, xml).
@@ -26,7 +26,7 @@ module PdfGem
26
26
  File.open(html_file, "w+") do |f|
27
27
  f.write(params[:html])
28
28
  end
29
- params[:url] = "file:#{html_file}"
29
+ params[:url] = "file://#{html_file}"
30
30
  result = self.pdf_from_url(params)
31
31
  File.delete(html_file) if File.exist?(html_file)
32
32
  return result
@@ -1,3 +1,3 @@
1
1
  module PdfGem
2
- VERSION = '1.0.7'
2
+ VERSION = '1.0.12'
3
3
  end
@@ -6,12 +6,19 @@ const path = require('path');
6
6
  (async () => {
7
7
 
8
8
  var stdinBuffer = fs.readFileSync(0);
9
- const filename = path.join(path.dirname(__filename), 'tmp', crypto.randomBytes(40).toString('hex')+ '.pdf');
10
- const browser = await puppeteer.launch();
9
+
10
+ var tmp = path.join(path.dirname(__filename), 'tmp');
11
+
12
+ if (!fs.existsSync(tmp)){
13
+ fs.mkdirSync(tmp);
14
+ }
15
+
16
+ const filename = path.join(tmp, crypto.randomBytes(40).toString('hex')+ '.pdf');
17
+ const browser = await puppeteer.launch({ headless: true,args: [ '--no-sandbox']});
11
18
  try{
12
19
  const params = {...JSON.parse(Buffer.from(stdinBuffer.toString(), 'base64').toString('utf-8')), ...{path: filename}};
13
20
  const page = await browser.newPage();
14
- await page.goto(params.url, {waitUntil: 'networkidle2'});
21
+ await page.goto(params.url, {waitUntil: (params.waitUntil != null ? params.waitUntil : 'load'), timeout: (params.timeout == null ? 30000 : params.timeout)});
15
22
  await page.pdf(params);
16
23
  process.stdout.write(filename)
17
24
  }
@@ -1,11 +1,27 @@
1
- module PdfGem
2
- def self.renderer(template, options)
3
- params = options.except(:prefixes, :template, :disposition, :url, :html, :filename, :formats)
4
- params[:html] = render_to_string(:action => (template.present? ? template : options.template), formats: options[:formats].present? ? options[:formats] : [:pdf] )
5
- send_data PdfGem::pdf_from_string(params), type: Mime[:pdf], disposition: (params[:disposition].present? ? params[:disposition] : 'inline'), :filename => options[:filename]
1
+ module PdfGem
2
+
3
+ class PdfGemRailtie < Rails::Railtie
4
+ initializer "my_railtie.configure_rails_initialization" do
5
+
6
+ ActionController::Renderers.add :pdf do |template, options|
7
+ params = options.except(:prefixes, :template, :disposition, :url, :html, :filename, :formats)
8
+ params[:html] = render_to_string(:action => (template.present? ? template : options.template), formats: options[:formats].present? ? options[:formats] : [:pdf] )
9
+ send_data PdfGem::pdf_from_string(params), type: Mime[:pdf], disposition: (params[:disposition].present? ? params[:disposition] : 'inline'), :filename => options[:filename]
10
+ end
11
+
12
+ ActionController::Renderers.add :pdf2 do |template, options|
13
+ params = options.except(:prefixes, :template, :disposition, :url, :html, :filename, :formats)
14
+ params[:html] = render_to_string(:action => (template.present? ? template : options.template), formats: options[:formats].present? ? options[:formats] : [:pdf] )
15
+ send_data PdfGem::pdf_from_string(params), type: Mime[:pdf], disposition: (params[:disposition].present? ? params[:disposition] : 'inline'), :filename => options[:filename]
16
+ end
17
+ if Mime::Type.lookup_by_extension(:pdf).nil?
18
+ Mime::Type.register('application/pdf', :pdf)
19
+ end
20
+ end
6
21
  end
22
+
23
+
24
+
7
25
 
8
- if Mime::Type.lookup_by_extension(:pdf).nil?
9
- Mime::Type.register('application/pdf', :pdf)
10
- end
26
+
11
27
  end
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+
3
+ <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4
+ <title>Test HTML File</title>
5
+
6
+ </head>
7
+ <body>
8
+
9
+ <p>This is a simple HTML file.</p>
10
+
11
+
12
+
13
+ </body></html>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pdf_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Blasina
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-27 00:00:00.000000000 Z
11
+ date: 2020-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -53,6 +53,9 @@ files:
53
53
  - lib/pdf_gem/version.rb
54
54
  - lib/pdf_generator.js
55
55
  - lib/renderer.rb
56
+ - lib/tmp/7d5de811543153dac4c2146cdd00647d71bced27665b7463437d2dc30ad6efb08bf5c4625768b483.pdf
57
+ - lib/tmp/b3f46a28a790a1b1baa1a8e3ba73e23203f03207d612f861060604b7a6fa4bcb33d1f42058264233.pdf
58
+ - lib/tmp/yt2g01tvjh8p6qu2dpk950s443kckym9ke2s6opv.html
56
59
  homepage: https://github.com/blasko03/pdf_gem
57
60
  licenses:
58
61
  - Apache-2.0