|
@@ -7,8 +7,7 @@ const app = express();
|
|
|
app.use(express.json());
|
|
|
app.use(express.urlencoded({extended: true}));
|
|
|
app.use((req, res, next) => {
|
|
|
- res.setHeader("Access-Control-Allow-Origin", "http://localhost:4200");
|
|
|
- res.setHeader("Access-Control-Allow-Methods", "GET, POST, OPTIONS");
|
|
|
+ res.setHeader("Access-Control-Allow-Origin", "*");
|
|
|
res.setHeader("Access-Control-Allow-Headers", "Content-Type, x-requested-with");
|
|
|
next();
|
|
|
});
|
|
@@ -22,37 +21,28 @@ const storage = multer.diskStorage({
|
|
|
}
|
|
|
});
|
|
|
|
|
|
+const options = {
|
|
|
+ normalizeWhitespace: true,
|
|
|
+ pdfjsDataRangeTransportFactory: function () {
|
|
|
+ return new pdfjsDataRangeTransport();
|
|
|
+ }
|
|
|
+};
|
|
|
const upload = multer({storage: storage});
|
|
|
-
|
|
|
+let hasPrinted = false;
|
|
|
app.post("/upload", upload.single("file"), (req, res) => {
|
|
|
try {
|
|
|
const filePath = req.file.path;
|
|
|
let dataBuffer = fs.readFileSync(filePath);
|
|
|
- pdf(dataBuffer).then(function (data) {
|
|
|
- // number of pages
|
|
|
- console.log(data.numpages);
|
|
|
- console.log("-------------------------------")
|
|
|
- // number of rendered pages
|
|
|
- console.log(data.numrender);
|
|
|
- // PDF info
|
|
|
- console.log("-------------------------------")
|
|
|
-
|
|
|
- console.log(data.info);
|
|
|
- console.log("-------------------------------")
|
|
|
-
|
|
|
- // PDF metadata
|
|
|
- console.log(data.metadata);
|
|
|
- console.log("-------------------------------")
|
|
|
-
|
|
|
-
|
|
|
- // PDF text
|
|
|
- console.log(data.text);
|
|
|
- console.log("-------------------------------")
|
|
|
-
|
|
|
+ pdf(dataBuffer, options).then(function (data) {
|
|
|
+ if (!hasPrinted) {
|
|
|
+ console.log(data.text);
|
|
|
+ hasPrinted = true
|
|
|
+ }
|
|
|
});
|
|
|
} catch (error) {
|
|
|
res.status(500).json({error: error.message});
|
|
|
}
|
|
|
+ hasPrinted = false
|
|
|
});
|
|
|
|
|
|
app.listen(3000, () => {
|