This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
forked from MindInSky/html-pdf-node-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
248 lines (220 loc) · 7.35 KB
/
index.js
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/* jshint esversion:8 */
const Bluebird = require('bluebird');
const hb = require('handlebars');
const puppeteer = require('puppeteer-core');
const chromium = require('chrome-aws-lambda');
// module.exports
async function generatePdf({
file,
options,
callback,
custom = {
logging: false, // to have extra logs while working, debugging issues
logContent: false, // to Log content of file, as it can be long or complex
singlePage: false,
heightScaling: false, // percentage as .99 to make height a tad smaller, used for fine tuning
minimumHeight: false, // num in px to make smaller than minimumHeight pages, be this minimum height
selector: false, // String,'body > div.class' ,Selector to wait for in case we need something to be visible before printing
viewport: false, // object: ex: { width: 1920, height: 1080 }
customPromise: false // object, ex: { waitUntil: "load"|"domcontentloaded"|"networkidle0"|"networkidle2"|Array }
}
}) {
// we are using headless mode
// let args = [
// '--no-sandbox',
// '--disable-setuid-sandbox',
// ];
// if(options.args) { // * Keeping but is not in use
// args = options.args;
// delete options.args;
// }
const {
logging,
logContent,
singlePage,
heightScaling, // percentage as .99 to make height a tad smaller, used for fine tuning
minimumHeight,
selector, // Selector to wait for in case we need something to be visible before printing
viewport,
// customPromise
} = custom; // deconstruct these for ease of reading
if (logging) {
console.log(`Logging: ${logging}`);
console.log(`Custom: `, custom);
console.log(`Callback: `, callback);
console.log(`Options: `, options);
console.log(`Selector: `, selector);
console.log(`Viewport: `, viewport);
console.log(`HeighScaling: `, heightScaling);
if (logContent) {
console.log(`File: `, file);
}
}
const browser = await chromium.puppeteer.launch({
args: chromium.args,
defaultViewport: chromium.defaultViewport,
executablePath: await chromium.executablePath,
headless: chromium.headless,
ignoreHTTPSErrors: true,
});
const page = await browser.newPage();
if (file.content) {
if (logging && logContent) {
console.log(`Compiling the template with handlebars`);
console.log(`Logging: received file: ${file.content}`);
}
// we have compile our code with handlebars
// const template = hb.compile(file.content, {
// strict: true
// });
// const result = template(file.content);
const html = file.content;
if (logging) {
console.log(`Before setContent await`);
}
// We set the page content as the generated html by handlebars
await page.setContent(html);
if (logging) {
console.log(`After setContent await`);
}
// await page.waitForNavigation() // this timed out
if (viewport) {
if (logging) {
console.log(`Before setViewport`);
}
await page.setViewport(viewport);
if (logging) {
console.log(`After setViewport`);
}
}
if (selector) {
if (logging) {
console.log(`Before selector await`);
}
await page.waitForSelector(selector);
if (logging) {
console.log(`After selector await`);
}
}
if (logging) {
if (logContent) {
console.log(`Logging: resulting html: ${html}`);
}
let scrollHeight = await page.evaluate(() => document.documentElement.scrollHeight);
console.log(`Logging: resulting offsetHeight outside SinglePage option: ${scrollHeight}`);
}
// Get the "viewport" of the page, as reported by the page.
if (singlePage === true) {
let finalHeight = await page.evaluate(() => document.documentElement.scrollHeight);
if (heightScaling) {
// if heightScaling exists, multiply it by height, otherwise keep final height
console.log(`Inside heightScaling option`);
finalHeight = finalHeight * heightScaling;
}
if (logging) {
console.log(`Inside SinglePage option`);
console.log(`Logging: temp height: ${finalHeight}`);
}
if (minimumHeight !== false && (finalHeight < minimumHeight)) {
console.log(`Inside minimumHeight option`);
// if minimum is bigger than calculated
finalHeight = minimumHeight;
// all other > < cases are irrelevant
}
options.height = `${ finalHeight }px`;
if (options.format !== undefined) {
options.format = undefined;
}
}
} else {
if (logging) {
console.log(`Logging: received url: ${file.url}`);
}
await page.goto(file.url, {
waitUntil: 'networkidle0', // wait for page to load completely
});
}
if (logging) {
console.log(`Logging: options before promise: `, options);
}
return Bluebird.props(page.pdf(options))
// deepcode ignore PromiseNotCaughtNode
.then(async function (data) {
await browser.close();
return Buffer.from(Object.values(data));
}).asCallback(callback);
}
async function generatePdfs({ // needs to be updated
files,
options,
callback,
custom = {
logging: false, // to have extra logs while working, debugging issues
customHeightDivisor: false, // 75 is default when singlePage is on, but can be customized to fit needs
}
}) {
// we are using headless mode
// let args = [
// '--no-sandbox',
// '--disable-setuid-sandbox',
// ];
// if(options.args) {
// args = options.args;
// delete options.args;
// }
if (custom.logging) {
console.log(`Custom.logging: ${custom.logging}`);
console.log(`Custom: `, custom);
console.log(`Callback: `, callback);
console.log(`Options: `, options);
console.log(`File: `, file);
}
const browser = await chromium.puppeteer.launch({
args: chromium.args,
defaultViewport: chromium.defaultViewport,
executablePath: await chromium.executablePath,
headless: chromium.headless,
ignoreHTTPSErrors: true,
});
let pdfs = [];
const page = await browser.newPage();
for (let file of files) {
if (file.content) {
if (custom.logging) {
console.log(`Compiling the template with no handlebars`);
console.log(`Logging: received content: ${file.content}`);
}
// we have compile our code with handlebars
const template = hb.compile(file.content, {
strict: true
});
const result = template(file.content);
const html = result;
if (custom.logging) {
console.log(`Logging: resulting html: ${html}`);
}
// We set the page content as the generated html by handlebars
await page.setContent(html);
} else {
if (custom.logging) {
console.log(`Compiling the template with no handlebars`);
console.log(`Logging: received url: ${file.url}`);
}
await page.goto(file.url, {
waitUntil: 'networkidle0', // wait for page to load completely
});
}
let pdfObj = JSON.parse(JSON.stringify(file));
delete pdfObj.content;
pdfObj.buffer = Buffer.from(Object.values(await page.pdf(options)));
pdfs.push(pdfObj);
}
return Bluebird.resolve(pdfs)
// deepcode ignore PromiseNotCaughtNode
.then(async function (data) {
await browser.close();
return data;
}).asCallback(callback);
}
module.exports.generatePdf = generatePdf;
module.exports.generatePdfs = generatePdfs;