-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroute.js
62 lines (53 loc) · 1.58 KB
/
route.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
const express = require("express");
var crypto = require("crypto");
const path = require("path");
const multer = require("multer");
const app = express();
const port = 8094;
// const fileMemoryStorage = multer.memoryStorage({
// destination: (req, file, cb) => {
// cb(null, "C:/temp");
// },
// filename: (req, file, cb) => {
// var id = crypto.randomBytes(20).toString("hex");
// cb(null, id + path.extname(file.originalname));
// },
// });
const fileDiskStorage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, "C:/temp");
},
filename: (req, file, cb) => {
var id = crypto.randomBytes(20).toString("hex");
cb(null, id + path.extname(file.originalname));
},
});
const imagesUpload = multer({
storage: fileDiskStorage,
// limits: {
// fileSize: 1000000, // 1000000 Bytes = 1 MB
// },
fileFilter(req, file, cb) {
if (!file.originalname.match(/\.(jpg|jpeg|png|bmp)$/)) {
return cb(new Error("Please upload an image"));
}
cb(undefined, true);
},
});
app.post("/api/invoice/upload", imagesUpload.single("file"), (req, res) => {
console.log(req.file);
res.json(`${req.file.destination}/${req.file.filename}`);
});
app.use((err, req, res, next) => {
if (err instanceof multer.MulterError) {
if (err.code === "LIMIT_FILE_SIZE") {
res.status(413).json("File too large");
}
if (err.code === "LIMIT_UNEXPECTED_FILE") {
res.status(415).json("Too many files");
}
} else {
res.status(500).json(err.message);
}
});
app.listen(port, () => console.log(`app listening on port ${port}`));