-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathpdf.js
More file actions
140 lines (125 loc) · 4.13 KB
/
pdf.js
File metadata and controls
140 lines (125 loc) · 4.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
var fs = require('fs')
var childprocess = require('child_process')
var path = require('path')
var assert = require('assert')
try {
var phantomjs = require('phantomjs-prebuilt')
} catch (err) {
console.log('html-pdf: Failed to load PhantomJS module.', err)
}
/*
* phantomjs version 1.8.1 and later should work.
*
* Create a PDF file out of an html string.
*
* Regions for the PDF page are:
*
* - Page Header -> document.getElementById('pageHeader')
* - Page Content -> document.getElementById('pageContent')
* - Page Footer -> document.getElementById('pageFooter')
*
* When no #pageContent is available, phantomjs will use document.body as pdf content
*/
module.exports = PDF
function PDF (html, options) {
this.html = html
this.options = options || {}
if (this.options.script) {
this.script = path.normalize(this.options.script)
} else {
this.script = path.join(__dirname, 'scripts', 'pdf_a4_portrait.js')
}
if (this.options.filename) this.options.filename = path.resolve(this.options.filename)
if (!this.options.phantomPath) this.options.phantomPath = phantomjs && phantomjs.path
this.options.phantomArgs = this.options.phantomArgs || []
assert(this.options.phantomPath, "html-pdf: Failed to load PhantomJS module. You have to set the path to the PhantomJS binary using 'options.phantomPath'")
assert(typeof this.html === 'string' && this.html.length, "html-pdf: Can't create a pdf without an html string")
this.options.timeout = parseInt(this.options.timeout) || 30000
}
PDF.prototype.toBuffer = function PdfToBuffer (callback) {
this.exec(function execPdfToBuffer (err, res) {
if (err) return callback(err)
fs.readFile(res.filename, function readCallback (err, buffer) {
if (err) return callback(err)
fs.unlink(res.filename, function unlinkPdfFile (err) {
if (err) return callback(err)
delete res.filename
callback(null, buffer, res)
})
})
})
}
PDF.prototype.toStream = function PdfToStream (callback) {
this.exec(function (err, res) {
if (err) return callback(err)
try {
var stream = fs.createReadStream(res.filename)
} catch (err) {
return callback(err)
}
var filename = res.filename
stream.on('end', function () {
fs.unlink(filename, function (err) {
if (err) console.log('html-pdf:', err)
})
})
delete res.filename
callback(null, stream, res)
})
}
PDF.prototype.toFile = function PdfToFile (filename, callback) {
assert(arguments.length > 0, 'html-pdf: The method .toFile([filename, ]callback) requires a callback.')
if (filename instanceof Function) {
callback = filename
filename = undefined
} else {
this.options.filename = path.resolve(filename)
}
this.exec(callback)
}
PDF.prototype.exec = function PdfExec (callback) {
var callbacked = false
var child = childprocess.spawn(this.options.phantomPath, [].concat(this.options.phantomArgs, [this.script]))
var stdout = []
var stderr = []
var timeout = setTimeout(function execTimeout () {
child.stdin.end()
child.kill()
if (!stderr.length) {
stderr = [new Buffer('html-pdf: PDF generation timeout. Phantom.js script did not exit.')]
}
}, this.options.timeout)
child.stdout.on('data', function (buffer) {
return stdout.push(buffer)
})
child.stderr.on('data', function (buffer) {
stderr.push(buffer)
child.stdin.end()
return child.kill()
})
function exit (err, data) {
if (callbacked) return
callbacked = true
clearTimeout(timeout)
if (err) return callback(err)
return callback(null, data)
}
child.on('error', exit)
child.on('exit', function (code) {
if (code || stderr.length) {
var err = new Error(Buffer.concat(stderr).toString() || 'html-pdf: Unknown Error')
return exit(err)
} else {
try {
var buff = Buffer.concat(stdout).toString()
var data = (buff) != null ? buff.trim() : undefined
data = JSON.parse(data)
} catch (err) {
return exit(err)
}
return exit(null, data)
}
})
var res = JSON.stringify({html: this.html, options: this.options})
return child.stdin.write(res + '\n', 'utf8')
}