2018-10-06 13:25:45 +00:00
|
|
|
import * as plugins from './smartpdf.plugins';
|
|
|
|
import * as paths from './smartpdf.paths';
|
|
|
|
import { Server } from 'http';
|
|
|
|
import { PdfCandidate } from './smartpdf.classes.pdfcandidate';
|
|
|
|
|
2021-10-14 08:59:45 +00:00
|
|
|
declare const document: any;
|
2019-05-28 22:27:43 +00:00
|
|
|
|
2019-06-03 14:39:21 +00:00
|
|
|
import * as interfaces from './interfaces';
|
2019-05-29 17:49:23 +00:00
|
|
|
|
2018-10-06 13:25:45 +00:00
|
|
|
export class SmartPdf {
|
|
|
|
htmlServerInstance: Server;
|
|
|
|
serverPort: number;
|
2019-06-03 21:34:33 +00:00
|
|
|
headlessBrowser: plugins.smartpuppeteer.puppeteer.Browser;
|
2019-06-03 15:09:16 +00:00
|
|
|
externalBrowserBool: boolean = false;
|
2018-10-06 13:25:45 +00:00
|
|
|
private _readyDeferred: plugins.smartpromise.Deferred<void>;
|
2018-10-06 15:35:26 +00:00
|
|
|
private _candidates: { [key: string]: PdfCandidate } = {};
|
2018-10-06 13:25:45 +00:00
|
|
|
|
2019-06-03 11:56:43 +00:00
|
|
|
constructor() {
|
2018-10-06 13:25:45 +00:00
|
|
|
this._readyDeferred = new plugins.smartpromise.Deferred();
|
|
|
|
}
|
|
|
|
|
2021-10-14 08:59:45 +00:00
|
|
|
async start(headlessBrowserArg?: plugins.smartpuppeteer.puppeteer.Browser) {
|
2019-06-03 11:56:43 +00:00
|
|
|
// lets set the external browser in case one is provided
|
2019-06-04 09:29:30 +00:00
|
|
|
this.headlessBrowser = headlessBrowserArg;
|
2018-10-06 13:25:45 +00:00
|
|
|
// setup puppeteer
|
2019-06-03 15:09:16 +00:00
|
|
|
if (this.headlessBrowser) {
|
|
|
|
this.externalBrowserBool = true;
|
|
|
|
} else {
|
2019-11-15 18:59:57 +00:00
|
|
|
this.headlessBrowser = await plugins.smartpuppeteer.getEnvAwareBrowserInstance({
|
2021-03-05 15:38:11 +00:00
|
|
|
forceNoSandbox: true,
|
2019-11-15 18:59:57 +00:00
|
|
|
});
|
2019-06-03 11:00:06 +00:00
|
|
|
}
|
2018-10-06 13:25:45 +00:00
|
|
|
|
|
|
|
// setup server
|
|
|
|
const app = plugins.express();
|
|
|
|
app.get('/:pdfId', (req, res) => {
|
|
|
|
res.setHeader('PDF-ID', this._candidates[req.params.pdfId].pdfId);
|
|
|
|
res.send(this._candidates[req.params.pdfId].htmlString);
|
|
|
|
});
|
|
|
|
this.htmlServerInstance = plugins.http.createServer(app);
|
|
|
|
const smartnetworkInstance = new plugins.smartnetwork.SmartNetwork();
|
2021-04-14 11:34:33 +00:00
|
|
|
const portAvailable = smartnetworkInstance.isLocalPortUnused(3210);
|
2018-10-06 13:25:45 +00:00
|
|
|
this.htmlServerInstance.listen(3210, 'localhost');
|
|
|
|
this.htmlServerInstance.on('listening', () => {
|
|
|
|
this._readyDeferred.resolve();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-06-03 14:39:21 +00:00
|
|
|
// stop
|
2019-05-29 12:14:02 +00:00
|
|
|
async stop() {
|
2018-10-06 15:35:26 +00:00
|
|
|
const done = plugins.smartpromise.defer<void>();
|
|
|
|
this.htmlServerInstance.close(() => {
|
|
|
|
done.resolve();
|
|
|
|
});
|
2019-06-04 09:29:30 +00:00
|
|
|
|
2019-06-03 15:09:16 +00:00
|
|
|
if (!this.externalBrowserBool) {
|
2019-06-03 11:02:01 +00:00
|
|
|
await this.headlessBrowser.close();
|
|
|
|
}
|
|
|
|
|
2018-10-06 15:35:26 +00:00
|
|
|
await done.promise;
|
2019-05-28 21:57:50 +00:00
|
|
|
}
|
2018-10-06 15:35:26 +00:00
|
|
|
|
2018-10-06 13:25:45 +00:00
|
|
|
/**
|
|
|
|
* returns a pdf for a given html string;
|
|
|
|
*/
|
2019-11-19 15:53:14 +00:00
|
|
|
async getPdfResultForHtmlString(htmlStringArg: string): Promise<interfaces.IPdfResult> {
|
2018-10-06 13:25:45 +00:00
|
|
|
await this._readyDeferred.promise;
|
|
|
|
const pdfCandidate = new PdfCandidate(htmlStringArg);
|
|
|
|
this._candidates[pdfCandidate.pdfId] = pdfCandidate;
|
|
|
|
const page = await this.headlessBrowser.newPage();
|
2022-01-05 13:17:43 +00:00
|
|
|
await page.setViewport({
|
|
|
|
height: 842,
|
|
|
|
width: 595,
|
|
|
|
})
|
2018-10-06 15:35:26 +00:00
|
|
|
const response = await page.goto(`http://localhost:3210/${pdfCandidate.pdfId}`, {
|
2021-03-05 15:38:11 +00:00
|
|
|
waitUntil: 'networkidle2',
|
2018-10-06 15:35:26 +00:00
|
|
|
});
|
2018-10-06 13:25:45 +00:00
|
|
|
const headers = response.headers();
|
2018-10-06 15:35:26 +00:00
|
|
|
if (headers['pdf-id'] !== pdfCandidate.pdfId) {
|
2018-10-06 13:25:45 +00:00
|
|
|
console.log('Error! Headers do not match. For security reasons no pdf is being emitted!');
|
2018-10-06 15:35:26 +00:00
|
|
|
return;
|
2018-10-06 13:25:45 +00:00
|
|
|
} else {
|
|
|
|
console.log(`id security check passed for ${pdfCandidate.pdfId}`);
|
|
|
|
}
|
2018-10-06 15:35:26 +00:00
|
|
|
|
2019-05-29 17:49:23 +00:00
|
|
|
const pdfBuffer = await page.pdf({
|
2021-10-14 08:59:45 +00:00
|
|
|
format: 'a4',
|
2019-11-12 14:41:58 +00:00
|
|
|
printBackground: true,
|
|
|
|
displayHeaderFooter: false,
|
2021-03-05 15:38:11 +00:00
|
|
|
preferCSSPageSize: true,
|
2018-10-06 13:25:45 +00:00
|
|
|
});
|
|
|
|
await page.close();
|
|
|
|
delete this._candidates[pdfCandidate.pdfId];
|
|
|
|
pdfCandidate.doneDeferred.resolve();
|
|
|
|
await pdfCandidate.doneDeferred.promise;
|
2019-05-29 17:49:23 +00:00
|
|
|
return {
|
|
|
|
id: pdfCandidate.pdfId,
|
|
|
|
name: `${pdfCandidate.pdfId}.js`,
|
2021-03-05 15:38:11 +00:00
|
|
|
buffer: pdfBuffer,
|
2019-06-03 08:51:15 +00:00
|
|
|
};
|
2018-10-06 13:25:45 +00:00
|
|
|
}
|
|
|
|
|
2019-11-19 15:53:14 +00:00
|
|
|
async getPdfResultForWebsite(websiteUrl: string): Promise<interfaces.IPdfResult> {
|
2018-10-06 13:25:45 +00:00
|
|
|
const page = await this.headlessBrowser.newPage();
|
2021-03-05 15:16:22 +00:00
|
|
|
await page.emulateMediaType('screen');
|
2018-10-06 13:25:45 +00:00
|
|
|
const response = await page.goto(websiteUrl, { waitUntil: 'networkidle2' });
|
|
|
|
const pdfId = plugins.smartunique.shortId();
|
2019-11-12 14:45:26 +00:00
|
|
|
const { documentHeight, documentWidth } = await page.evaluate(() => {
|
|
|
|
return {
|
|
|
|
documentHeight: document.height,
|
2021-03-05 15:38:11 +00:00
|
|
|
documentWidth: document.width,
|
2019-11-12 14:45:26 +00:00
|
|
|
};
|
|
|
|
});
|
2019-05-29 17:49:23 +00:00
|
|
|
const pdfBuffer = await page.pdf({
|
2021-10-14 08:59:45 +00:00
|
|
|
format: 'a4',
|
2019-11-12 14:45:26 +00:00
|
|
|
height: documentWidth,
|
|
|
|
width: documentWidth,
|
2019-04-10 13:12:54 +00:00
|
|
|
printBackground: true,
|
|
|
|
displayHeaderFooter: false,
|
2021-03-05 15:38:11 +00:00
|
|
|
preferCSSPageSize: true,
|
2018-10-06 13:25:45 +00:00
|
|
|
});
|
|
|
|
await page.close();
|
2019-05-29 17:49:23 +00:00
|
|
|
return {
|
|
|
|
id: pdfId,
|
|
|
|
name: `${pdfId}.js`,
|
2021-03-05 15:38:11 +00:00
|
|
|
buffer: pdfBuffer,
|
2019-06-03 08:51:15 +00:00
|
|
|
};
|
2018-10-06 13:25:45 +00:00
|
|
|
}
|
2019-05-28 22:27:43 +00:00
|
|
|
|
|
|
|
async getFullWebsiteAsSinglePdf(websiteUrl: string) {
|
|
|
|
const page = await this.headlessBrowser.newPage();
|
2021-03-05 15:16:22 +00:00
|
|
|
page.emulateMediaType('screen');
|
2019-05-28 22:27:43 +00:00
|
|
|
const response = await page.goto(websiteUrl, { waitUntil: 'networkidle2' });
|
|
|
|
const pdfId = plugins.smartunique.shortId();
|
2019-06-03 08:51:15 +00:00
|
|
|
const { documentHeight, documentWidth } = await page.evaluate(() => {
|
2019-05-28 22:27:43 +00:00
|
|
|
return {
|
|
|
|
documentHeight: document.height,
|
2021-03-05 15:38:11 +00:00
|
|
|
documentWidth: document.width,
|
2019-05-28 22:27:43 +00:00
|
|
|
};
|
|
|
|
});
|
2019-05-29 17:49:23 +00:00
|
|
|
const pdfBuffer = await page.pdf({
|
2021-10-14 08:59:45 +00:00
|
|
|
format: 'a4',
|
2019-05-28 22:27:43 +00:00
|
|
|
height: documentWidth,
|
|
|
|
width: documentWidth,
|
|
|
|
printBackground: true,
|
|
|
|
displayHeaderFooter: false,
|
2021-03-05 15:38:11 +00:00
|
|
|
preferCSSPageSize: true,
|
2019-05-28 22:27:43 +00:00
|
|
|
});
|
|
|
|
await page.close();
|
2019-05-29 17:49:23 +00:00
|
|
|
return {
|
|
|
|
id: pdfId,
|
|
|
|
name: `${pdfId}.js`,
|
2021-03-05 15:38:11 +00:00
|
|
|
buffer: pdfBuffer,
|
2019-06-03 08:51:15 +00:00
|
|
|
};
|
2019-05-28 22:27:43 +00:00
|
|
|
}
|
2021-10-14 08:59:45 +00:00
|
|
|
|
|
|
|
public async mergePdfBuffers(pdfBuffers: Buffer[]): Promise<Buffer> {
|
|
|
|
const merger = new plugins.pdfMerger();
|
|
|
|
for (const buffer of pdfBuffers) {
|
|
|
|
merger.add(buffer);
|
|
|
|
}
|
|
|
|
return merger.saveAsBuffer();
|
|
|
|
}
|
2018-10-06 13:25:45 +00:00
|
|
|
}
|