-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paths3.js
More file actions
41 lines (36 loc) · 1.02 KB
/
Copy paths3.js
File metadata and controls
41 lines (36 loc) · 1.02 KB
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
const aws = require('aws-sdk');
const fs = require('fs');
let secrets;
if (process.env.NODE_ENV == 'production') {
secrets = process.env; // in prod the secrets are environment variables
} else {
secrets = require('./secrets'); // in dev they are in secrets.json which is listed in .gitignore
}
//------passing credentials to AWS-----------------//
const s3 = new aws.S3({
accessKeyId: secrets.AWS_KEY,
secretAccessKey: secrets.AWS_SECRET
});
exports.upload = (req, res, next) => {
const {file} = req;
if(!file){
console.log("Multer failed :(");
return res.sendStatus(500);
}
const {filename, mimetype, size, path} = req.file;
s3.putObject({
Bucket: 'spicedling',
ACL: 'public-read',
Key: filename,
Body: fs.createReadStream(path),
ContentType: mimetype,
ContentLength: size
}).promise().then(info => {
console.log(info);
next();
}).catch(err => {
console.log('Error', err);
res.sendStatus(500);
}).then(
() => fs.unlink(path, () => {}));
};