簡體   English   中英

Nodejs Amazon S3文件上傳

[英]Nodejs Amazon S3 File Upload

我正在嘗試創建一個將本地文件上傳到S3存儲桶的表單,但是我對上傳邏輯的某些部分應該存在的位置有些困惑。 我想保持POST路由整潔,並引用存放在單獨文件中的AWS邏輯,但對於參數級別的Body屬性應使用哪個值以及如何引用此模塊,我有些困惑在fileAttachment行將完整的上載URL設置為我的數據庫屬性時。 誰能指出我正確的方向?

這是我的aws-s3.js文件:

module.exports = function() {

var path = require('path');
var async = require('async');
var fs = require('fs');
var AWS = require('aws-sdk');
var config = require(path.resolve(__dirname, '..', '..','./config/config.js'));

AWS.config.region = config.region;

var s3 = new AWS.S3({params: {Bucket: config.awsBucket}});

var params = {Key: config.awsAccessKeyId, Body: req.body.fileAttachment};

s3.upload(params, function(err, data){
    if (err) {
        console.log("Error uploading data: ", err);
    } else {
        console.log("Successfully uploaded data to " + config.awsBucket + " /myKey");

    }
});

return s3;

};

這是我的路線:

appRoutes.route('/create/file')

    .get(function(req, res){
        models.DiscoverySource.findAll({
            where: {
                organizationId: req.user.organizationId
            }, attributes: ['discoverySource']
        }).then(function(discoverySource){
            res.render('pages/app/file-create.hbs',{
                discoverySource: discoverySource
            });
        });

    })



    .post(function(req, res){
        models.File.create({
            discovery: req.body.discovery,
            discoverySource: req.body.discoverySource,
            fileAttachment: 
            userId: req.user.user_id        
        }).then(function(){
            res.redirect('/app');
        });
    });

形成:

<form action="/app/create/file" method="post">
                <div class="form-header">
                    <label for="data-discovery-source">Discovery Source:</label>
                    <select name="discoverySource">
                        {{#each discoverySource}}
                        <option value="{{this.discoverySource}}">{{this.discoverySource}}</option>
                        {{/each}}
                    </select>
                    <label for="data-discovery">Discovery:</label>
                    <textarea id="discovery-text-field" name="discovery"></textarea>
                    <label for="report-link">File Attachment:</label>
                    <input type="file" name="fileAttachment">
                </div>
                <button type="submit" id="create-button">Create File</button>
            </form>

您可以嘗試使用multer-s3模塊。

它允許您將配置為storaage的文件上傳到AWS。

該代碼使用aws-sdk模塊,有關其配置的更多信息,請參見此處

這是我的代碼示例:

它使用帶有Node.js的JavaScript的推薦的Amazon AWS開發工具包,並使用multer express中間件上傳文件。

var aws = require('aws-sdk')
var express = require('express')
var multer = require('multer')
var multerS3 = require('multer-s3')

var app = express()
var s3 = new aws.S3({ {accessKeyId: 'akid', secretAccessKey: 'secret'}) 
//this can also be configured in config file and through code



var upload = multer({
  storage: multerS3({
    s3: s3,
    bucket: 'some-bucket',
    key: function (req, file, cb) {
      cb(null, Date.now().toString())
    }
  })
})

//the upload.array -means that you can load multiple files(max 3) named photos maximum 3,  the resulting AWS full path urls will be returned in req.files 
app.post('/upload', upload.array('photos', 3), function(req, res, next) {
  //reference results that can be stored in database for example in req.files
  res.send('Successfully uploaded ' + req.files.length + ' files!')
})

該代碼還使用multer npm模塊。 有關其配置可能性的更多信息,例如:單個,任何upload.array,字段都可以在此處找到。

您也可以使用Minio-js,這里是presigned-postpolicy.js的示例。 希望對您有所幫助。

var Minio = require('minio')

var s3Client = new Minio({
  endPoint: 's3.amazonaws.com',
  accessKey: 'YOUR-ACCESSKEYID',
  secretKey: 'YOUR-SECRETACCESSKEY',
  insecure: false // Default is false.
})

// Construct a new postPolicy.
var policy = s3Client.newPostPolicy()
// Set the object name my-objectname.
policy.setKey("my-objectname")
// Set the bucket to my-bucketname.
policy.setBucket("my-bucketname")

var expires = new Date
expires.setSeconds(24 * 60 * 60 * 10) //10 days
policy.setExpires(expires)

policy.setContentLengthRange(1024, 1024*1024) // Min upload length is 1KB Max upload size is 1MB

s3Client.presignedPostPolicy(policy, function(e, formData) {
  if (e) return console.log(e)
  var curl = []
  curl.push('curl https://s3.amazonaws.com/my-bucketname')
  for (var key in formData) {
    if (formData.hasOwnProperty(key)) {
      var value = formData[key]
      curl.push(`-F ${key}=${value}`)
    }
  }
  // Print curl command to upload files.
  curl.push('-F file=@<FILE>')
  console.log(curl.join(' '))
}) 

免責聲明:我致力於與AWS S3兼容的Minio開源對象存儲。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM