MongoDB
 sql >> डेटाबेस >  >> NoSQL >> MongoDB

S3 URL को उजागर किए बिना NodeJS सर्वर के माध्यम से Amazon S3 से फ़ाइलें पास करें?

एक्सप्रेस मिडलवेयर का संयोजन (अनुरोध करने वाले उपयोगकर्ता के प्राधिकरण की जांच करने के लिए) और नोड एडब्ल्यूएस एसडीके चाल चलनी चाहिए।

यहां multer का इस्तेमाल करके पूरा उदाहरण दिया गया है अपलोड करने के लिए।

var express = require('express');
var app = express();
var router = express.Router();
var multer = require('multer');
var upload = multer({
  dest: "tmp/"
});
var fs = require('fs');
var async = require('async');
var AWS = require('aws-sdk');
// Configure AWS SDK here
var s3 = new AWS.s3({
  params: {
    Bucket: 'xxx'
  }
});

/**
 * Authentication middleware
 *
 * It will be called for any routes starting with /files
 */
app.use("/files", function (req, res, next) {
  var authorized = true; // use custom logic here
  if (!authorized) {
    return res.status(403).end("not authorized");
  }
  next();
});

// Route for the upload
app.post("/files/upload", upload.single("form-field-name"), function (req, res) {
  var fileInfo = console.log(req.file);
  var fileStream = fs.readFileSync(fileInfo.path);
  var options = {
    Bucket: 'xxx',
    Key: 'yyy/'+fileName,
    Body: fileStream
  };

  s3.upload(options, function (err) {
    // Remove the temporary file
    fs.removeFileSync("tmp/"+fileInfo.path); // ideally use the async version
    if (err) {
      return res.status(500).end("Upload to s3 failed");
    }
    res.status(200).end("File uploaded");
  });
});

// Route for the download
app.get("/files/download/:name", function (req, res) {
  var fileName = req.params.name;
  if (!fileName) {
    return res.status(400).end("missing file name");
  }
  var options = {
    Bucket: 'xxx',
    Key: 'yyy/'+fileName
  };
  res.attachment(fileName);
  s3.getObject(options).createReadStream().pipe(res);
});

app.listen(3000);

जाहिर है कि यह केवल आंशिक रूप से परीक्षण किया गया है और उचित त्रुटि प्रबंधन की कमी है - लेकिन उम्मीद है कि यह आपको इसे लागू करने का एक मोटा विचार देना चाहिए।



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. मोंगोडीबी $substrCP

  2. Azure पर MongoDB:सही इंस्टेंस प्रकार कैसे चुनें?

  3. मैं mongodb के लिए node.js ड्राइवर में कनेक्शन स्ट्रिंग में सभी विकल्प डालकर X509 से कैसे जुड़ सकता हूं?

  4. NestJs/Mongoose में ऑटो इंक्रीमेंट सीक्वेंस

  5. रनटाइम त्रुटि:कार्य एक अलग लूप से जुड़ा हुआ है