在将文件上传到S3之前处理文件

时间:2020-02-14 23:35:58

标签: node.js express multer-s3

我想使用表格下载pdf文件,然后提取第一页并转换为jpeg(使用PDFImage),然后将原始pdf和jpeg都上传到我的s3存储桶中。单个步骤的代码很好,但是在使用multers3上传之前,我无法弄清楚如何进行jpeg转换。 代码如下:

表格

<form action="/pdfCreate/<%= paper.id %>?_method=PUT" method="POST" enctype="multipart/form-data">
    <div class="uploadForm">
        <label for="pdfUpload">Select file to upload</label>
        <input type="file" id="pdfUpload" class="uploadfile" name="file" id="file-Upload" placeholder="Upload pdf file">
    </div>
    <div class="uploadForm">
        <button type="submit" value="Upload PDF">Upload Paper Info</button>
    </div>
</form>

路线

router.put("/pdfCreate/:id", upload.single("file"), (req,res) => {
    const pdfFile = req.file;
    const pdfPath = req.file.location;
        PDFfile.updateOne ({_id:req.params.id}, {pdfPath:pdfPath}, function(err,file){
            if(err){
                console.log("Error");
            } else {
                // req.flash("success", "PDF successfully uploaded");
                res.render("displayPage", {path: pdfPath});
            }
        });
    }
);

文件上传

aws.config.update({
    accessKeyId: process.env.AWS_ACCESS_KEY_ID,
    secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,
    region: 'us-east-2',
});

const s3 = new aws.S3();

const upload = multer({
  storage: multerS3({
    acl: 'public-read',
    s3:s3,
    bucket: process.env.S3_BUCKET,
    metadata: function (req, file, cb) {

      cb(null, {fieldName: file.fieldname});
    },
    key: function (req, file, cb) {
      const fileName = Date.now().toString() + "-" + file.originalname;
      cb(null, fileName);
    }
  })
});

将PDF转换为JPEG图像时,应像下面的代码一样工作,输入文件名“ file.pdf”。我想做的是获取提交到路由的文件(req.file?),而改用该文件,但是我得到一个错误,说那不是字符串,而是对象。

let pdfImage = new PDFImage("./public/file.pdf", {convertOptions: {"-resize" : "300%",}
    });
    pdfImage.convertPage(0).then(function (imagePath) {
    fs.existsSync("/tmp/slide-0.png") 
    });

所以问题首先是使用发送到路线的文件,以便我可以实现PDFImage转换,然后将原始PDF和新JPEG都发送给multer(例如upload.array()。我当时在想我可以使用我目前使用的multer中间件,先进行转换,然后发送该文件,但实际上无法解决如何将它们放在一起。任何帮助表示赞赏!

0 个答案:

没有答案