|
import { HttpService } from "@nestjs/axios"; |
|
import { Injectable, InternalServerErrorException, Logger } from "@nestjs/common"; |
|
import { ConfigService } from "@nestjs/config"; |
|
import { ResumeDto } from "@reactive-resume/dto"; |
|
import { ErrorMessage } from "@reactive-resume/utils"; |
|
import retry from "async-retry"; |
|
import { PDFDocument } from "pdf-lib"; |
|
import { connect } from "puppeteer"; |
|
|
|
import { Config } from "../config/schema"; |
|
import { StorageService } from "../storage/storage.service"; |
|
|
|
@Injectable() |
|
export class PrinterService { |
|
private readonly logger = new Logger(PrinterService.name); |
|
|
|
private readonly browserURL: string; |
|
|
|
private readonly ignoreHTTPSErrors: boolean; |
|
|
|
constructor( |
|
private readonly configService: ConfigService<Config>, |
|
private readonly storageService: StorageService, |
|
private readonly httpService: HttpService, |
|
) { |
|
const chromeUrl = this.configService.getOrThrow<string>("CHROME_URL"); |
|
const chromeToken = this.configService.getOrThrow<string>("CHROME_TOKEN"); |
|
|
|
this.browserURL = `${chromeUrl}?token=${chromeToken}`; |
|
this.ignoreHTTPSErrors = this.configService.getOrThrow<boolean>("CHROME_IGNORE_HTTPS_ERRORS"); |
|
} |
|
|
|
private async getBrowser() { |
|
try { |
|
return await connect({ |
|
browserWSEndpoint: this.browserURL, |
|
acceptInsecureCerts: this.ignoreHTTPSErrors, |
|
}); |
|
} catch (error) { |
|
throw new InternalServerErrorException( |
|
ErrorMessage.InvalidBrowserConnection, |
|
(error as Error).message, |
|
); |
|
} |
|
} |
|
|
|
async getVersion() { |
|
const browser = await this.getBrowser(); |
|
const version = await browser.version(); |
|
await browser.disconnect(); |
|
return version; |
|
} |
|
|
|
async printResume(resume: ResumeDto) { |
|
const start = performance.now(); |
|
|
|
const url = await retry<string | undefined>(() => this.generateResume(resume), { |
|
retries: 3, |
|
randomize: true, |
|
onRetry: (_, attempt) => { |
|
this.logger.log(`Retrying to print resume #${resume.id}, attempt #${attempt}`); |
|
}, |
|
}); |
|
|
|
const duration = Number(performance.now() - start).toFixed(0); |
|
const numberPages = resume.data.metadata.layout.length; |
|
|
|
this.logger.debug(`Chrome took ${duration}ms to print ${numberPages} page(s)`); |
|
|
|
return url; |
|
} |
|
|
|
async printPreview(resume: ResumeDto) { |
|
const start = performance.now(); |
|
|
|
const url = await retry(() => this.generatePreview(resume), { |
|
retries: 3, |
|
randomize: true, |
|
onRetry: (_, attempt) => { |
|
this.logger.log( |
|
`Retrying to generate preview of resume #${resume.id}, attempt #${attempt}`, |
|
); |
|
}, |
|
}); |
|
|
|
const duration = Number(performance.now() - start).toFixed(0); |
|
|
|
this.logger.debug(`Chrome took ${duration}ms to generate preview`); |
|
|
|
return url; |
|
} |
|
|
|
async generateResume(resume: ResumeDto) { |
|
try { |
|
const browser = await this.getBrowser(); |
|
const page = await browser.newPage(); |
|
|
|
const publicUrl = this.configService.getOrThrow<string>("PUBLIC_URL"); |
|
const storageUrl = this.configService.getOrThrow<string>("STORAGE_URL"); |
|
|
|
let url = publicUrl; |
|
|
|
if ([publicUrl, storageUrl].some((url) => /https?:\/\/localhost(:\d+)?/.test(url))) { |
|
|
|
|
|
url = url.replace( |
|
/localhost(:\d+)?/, |
|
(_match, port) => `host.docker.internal${port ?? ""}`, |
|
); |
|
|
|
await page.setRequestInterception(true); |
|
|
|
|
|
page.on("request", (request) => { |
|
if (request.url().startsWith(storageUrl)) { |
|
const modifiedUrl = request |
|
.url() |
|
.replace(/localhost(:\d+)?/, (_match, port) => `host.docker.internal${port ?? ""}`); |
|
|
|
void request.continue({ url: modifiedUrl }); |
|
} else { |
|
void request.continue(); |
|
} |
|
}); |
|
} |
|
|
|
|
|
const numberPages = resume.data.metadata.layout.length; |
|
|
|
await page.evaluateOnNewDocument((data) => { |
|
window.localStorage.setItem("resume", JSON.stringify(data)); |
|
}, resume.data); |
|
|
|
await page.goto(`${url}/artboard/preview`, { waitUntil: "networkidle0" }); |
|
|
|
const pagesBuffer: Buffer[] = []; |
|
|
|
const processPage = async (index: number) => { |
|
const pageElement = await page.$(`[data-page="${index}"]`); |
|
|
|
const width = (await (await pageElement?.getProperty("scrollWidth"))?.jsonValue()) ?? 0; |
|
|
|
const height = (await (await pageElement?.getProperty("scrollHeight"))?.jsonValue()) ?? 0; |
|
|
|
const temporaryHtml = await page.evaluate((element: HTMLDivElement) => { |
|
const clonedElement = element.cloneNode(true) as HTMLDivElement; |
|
const temporaryHtml_ = document.body.innerHTML; |
|
document.body.innerHTML = clonedElement.outerHTML; |
|
return temporaryHtml_; |
|
}, pageElement); |
|
|
|
|
|
const css = resume.data.metadata.css; |
|
|
|
if (css.visible) { |
|
await page.evaluate((cssValue: string) => { |
|
const styleTag = document.createElement("style"); |
|
styleTag.textContent = cssValue; |
|
document.head.append(styleTag); |
|
}, css.value); |
|
} |
|
|
|
const uint8array = await page.pdf({ width, height, printBackground: true }); |
|
const buffer = Buffer.from(uint8array); |
|
pagesBuffer.push(buffer); |
|
|
|
await page.evaluate((temporaryHtml_: string) => { |
|
document.body.innerHTML = temporaryHtml_; |
|
}, temporaryHtml); |
|
}; |
|
|
|
|
|
for (let index = 1; index <= numberPages; index++) { |
|
await processPage(index); |
|
} |
|
|
|
|
|
const pdf = await PDFDocument.create(); |
|
|
|
for (const element of pagesBuffer) { |
|
const page = await PDFDocument.load(element); |
|
const [copiedPage] = await pdf.copyPages(page, [0]); |
|
pdf.addPage(copiedPage); |
|
} |
|
|
|
|
|
|
|
const buffer = Buffer.from(await pdf.save()); |
|
|
|
|
|
const resumeUrl = await this.storageService.uploadObject( |
|
resume.userId, |
|
"resumes", |
|
buffer, |
|
resume.title, |
|
); |
|
|
|
|
|
await page.close(); |
|
await browser.disconnect(); |
|
|
|
return resumeUrl; |
|
} catch (error) { |
|
this.logger.error(error); |
|
|
|
throw new InternalServerErrorException( |
|
ErrorMessage.ResumePrinterError, |
|
(error as Error).message, |
|
); |
|
} |
|
} |
|
|
|
async generatePreview(resume: ResumeDto) { |
|
const browser = await this.getBrowser(); |
|
const page = await browser.newPage(); |
|
|
|
const publicUrl = this.configService.getOrThrow<string>("PUBLIC_URL"); |
|
const storageUrl = this.configService.getOrThrow<string>("STORAGE_URL"); |
|
|
|
let url = publicUrl; |
|
|
|
if ([publicUrl, storageUrl].some((url) => /https?:\/\/localhost(:\d+)?/.test(url))) { |
|
|
|
|
|
url = url.replace(/localhost(:\d+)?/, (_match, port) => `host.docker.internal${port ?? ""}`); |
|
|
|
await page.setRequestInterception(true); |
|
|
|
|
|
page.on("request", (request) => { |
|
if (request.url().startsWith(storageUrl)) { |
|
const modifiedUrl = request |
|
.url() |
|
.replace(/localhost(:\d+)?/, (_match, port) => `host.docker.internal${port ?? ""}`); |
|
|
|
void request.continue({ url: modifiedUrl }); |
|
} else { |
|
void request.continue(); |
|
} |
|
}); |
|
} |
|
|
|
|
|
await page.evaluateOnNewDocument((data) => { |
|
window.localStorage.setItem("resume", JSON.stringify(data)); |
|
}, resume.data); |
|
|
|
await page.setViewport({ width: 794, height: 1123 }); |
|
|
|
await page.goto(`${url}/artboard/preview`, { waitUntil: "networkidle0" }); |
|
|
|
|
|
|
|
const uint8array = await page.screenshot({ quality: 80, type: "jpeg" }); |
|
const buffer = Buffer.from(uint8array); |
|
|
|
|
|
const previewUrl = await this.storageService.uploadObject( |
|
resume.userId, |
|
"previews", |
|
buffer, |
|
resume.id, |
|
); |
|
|
|
|
|
await page.close(); |
|
await browser.disconnect(); |
|
|
|
return previewUrl; |
|
} |
|
} |
|
|