dobrud 5e3741586b
address PR feedback
# Conflicts:
#	packages/providers/upload-aws-s3/lib/index.js
2022-10-27 16:27:13 +02:00

84 lines
2.2 KiB
JavaScript

'use strict';
/**
* Module dependencies
*/
/* eslint-disable no-unused-vars */
// Public node modules.
const _ = require('lodash');
const AWS = require('aws-sdk');
module.exports = {
init({ baseUrl = null, rootPath = null, s3Options, ...legacyS3Options }) {
if (legacyS3Options && process.env.NODE_ENV !== 'production')
process.emitWarning(
"S3 configuration options passed at root level of the plugin's providerOptions is deprecated and will be removed in a future release. You wrap them inside the 's3Options:{}' property."
);
const S3 = new AWS.S3({
apiVersion: '2006-03-01',
...s3Options,
...legacyS3Options,
});
const filePrefix = rootPath ? `${rootPath.replace(/\/+$/, '')}/` : '';
const upload = (file, customParams = {}) =>
new Promise((resolve, reject) => {
// upload file on S3 bucket
const path = file.path ? `${file.path}/` : '';
const fileKey = `${filePrefix}${path}${file.hash}${file.ext}`;
S3.upload(
{
Key: fileKey,
Body: file.stream || Buffer.from(file.buffer, 'binary'),
ACL: 'public-read',
ContentType: file.mime,
...customParams,
},
(err, data) => {
if (err) {
return reject(err);
}
// set the bucket file url
file.url = baseUrl ? `${baseUrl}/${fileKey}` : data.Location;
resolve();
}
);
});
return {
uploadStream(file, customParams = {}) {
return upload(file, customParams);
},
upload(file, customParams = {}) {
return upload(file, customParams);
},
delete(file, customParams = {}) {
return new Promise((resolve, reject) => {
// delete file on S3 bucket
const path = file.path ? `${file.path}/` : '';
const fileKey = `${filePrefix}${path}${file.hash}${file.ext}`;
S3.deleteObject(
{
Key: fileKey,
...customParams,
},
(err) => {
if (err) {
return reject(err);
}
resolve();
}
);
});
},
};
},
};