2023-10-26 20:53:02 +02:00
|
|
|
|
2023-10-27 00:33:11 +02:00
|
|
|
import { rotatePages } from '../../src/pdf-operations.js';
|
|
|
|
import { respondWithBinaryPdf } from '../../src/utils/endpoint-utils.js';
|
2023-10-26 20:53:02 +02:00
|
|
|
|
|
|
|
import express from 'express';
|
|
|
|
const router = express.Router();
|
|
|
|
import multer from 'multer'
|
|
|
|
const upload = multer();
|
|
|
|
|
|
|
|
router.post('/rotate-pdf', upload.single("pdfFile"), async function(req, res, next) {
|
|
|
|
console.debug("rotating pdf:", req.file)
|
|
|
|
const rotated = await rotatePages(req.file.buffer, 90)
|
2023-10-27 00:33:11 +02:00
|
|
|
const newFilename = req.file.originalname.replace(/(\.[^.]+)$/, '_rotated$1'); // add '_rotated' just before the file extension
|
|
|
|
respondWithBinaryPdf(res, rotated, newFilename);
|
2023-10-26 20:53:02 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export default router;
|