如何从 POST 请求中获取带归档器的压缩文件?

How can I get a compressed file with archiver from a POST request?

我正在使用 Express 构建一个 NodeJS API,当您创建一个 POST 时,它会根据请求的主体生成一个 TAR 文件。

Problem:

当端点是 POST 时,我可以访问请求的正文,并且似乎可以用它做点什么。但是,我无法 see/use/test 压缩文件(据我所知)。

当端点是 GET 时,我无法访问请求的主体(据我所知),但我可以在浏览器中查询 URL并获取压缩文件。

基本上我想解决一个“据我所知”的问题。到目前为止,这是我的相关代码:

const fs = require('fs');
const serverless = require('serverless-http');
const archiver = require('archiver');
const express = require('express');
const app = express();
const util = require('util');

app.use(express.json());


app.post('/', function(req, res) {
  var filename = 'export.tar';

  var output = fs.createWriteStream('/tmp/' + filename);

  output.on('close', function() {
    res.download('/tmp/' + filename, filename);
  });

  var archive = archiver('tar');

  archive.pipe(output);

  // This part does not work when this is a GET request.
  // The log works perfectly in a POST request, but I can't get the TAR file from the command line.
  res.req.body.files.forEach(file => {
    archive.append(file.content, { name: file.name });
    console.log(`Appending ${file.name} file: ${JSON.stringify(file, null, 2)}`);
  });

  // This part is dummy data that works with a GET request when I go to the URL in the browser
  archive.append(
    "<h1>Hello, World!</h1>",
    { name: 'index.html' }
  );

  archive.finalize();
});

示例 JSON 我发送给这个的正文数据:

{
  "title": "Sample Title",
  "files": [
    {
      "name": "index.html",
      "content": "<p>Hello, World!</p>"
    },
    {
      "name": "README.md",
      "content": "# Hello, World!"
    }
  ]
}

我只是应该发送 JSON 并根据 SON 得到一个 TAR。 POST 是错误的方法吗?如果我使用 GET,应该更改什么以便我可以使用那个 JSON 数据?有没有办法 "daisy chain" 请求(这看起来不干净,但也许是解决方案)?

试试这个:

app.post('/', (req, res) => {
  const filename = 'export.tar';

  const archive = archiver('tar', {});

  archive.on('warning', (err) => {
    console.log(`WARN -> ${err}`);
  });

  archive.on('error', (err) => {
    console.log(`ERROR -> ${err}`);
  });

  const files = req.body.files || [];
  for (const file of files) {
    archive.append(file.content, { name: file.name });
    console.log(`Appending ${file.name} file: ${JSON.stringify(file, null, 2)}`);
  }

  try {
    if (files.length > 0) {
      archive.pipe(res);
      archive.finalize();
      return res.attachment(filename);
    } else {
      return res.send({ error: 'No files to be downloaded' });
    }
  } catch (e) {
    return res.send({ error: e.toString() });
  }
});