2018-02-20 15:57:34 +01:00
'use strict' ;
/ * *
* Module dependencies
* /
2018-05-04 18:27:39 +02:00
/* eslint-disable no-unused-vars */
2018-02-20 15:57:34 +01:00
// Public node modules.
const _ = require ( 'lodash' ) ;
2018-02-21 14:06:57 +01:00
const AWS = require ( 'aws-sdk' ) ;
2018-02-20 15:57:34 +01:00
module . exports = {
2022-04-01 18:40:22 +03:00
init ( { baseUrl , rootPath = "" , s3Options , ... legacyS3Options } ) {
if ( legacyS3Options && process . env . NODE _ENV !== 'production' )
console . log ( "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." )
2018-02-21 14:06:57 +01:00
const S3 = new AWS . S3 ( {
apiVersion : '2006-03-01' ,
2022-04-01 18:40:22 +03:00
... s3Options ,
... legacyS3Options
2018-02-21 14:06:57 +01:00
} ) ;
2022-01-05 19:02:04 +01:00
const upload = ( file , customParams = { } ) =>
new Promise ( ( resolve , reject ) => {
// upload file on S3 bucket
const path = file . path ? ` ${ file . path } / ` : '' ;
2022-04-01 18:40:22 +03:00
const fileKey = ` ${ rootPath } ${ path } ${ file . hash } ${ file . ext } `
2022-01-05 19:02:04 +01:00
S3 . upload (
{
2022-04-01 18:40:22 +03:00
Key : fileKey ,
2022-01-05 19:02:04 +01:00
Body : file . stream || Buffer . from ( file . buffer , 'binary' ) ,
ACL : 'public-read' ,
ContentType : file . mime ,
... customParams ,
} ,
( err , data ) => {
if ( err ) {
return reject ( err ) ;
}
2018-02-21 14:06:57 +01:00
2022-01-05 19:02:04 +01:00
// set the bucket file url
2022-04-01 18:40:22 +03:00
file . url = baseUrl ? ` ${ baseUrl } / ${ fileKey } ` : data . Location ;
2018-02-20 15:57:34 +01:00
2022-01-05 19:02:04 +01:00
resolve ( ) ;
}
) ;
} ) ;
return {
uploadStream ( file , customParams = { } ) {
return upload ( file , customParams ) ;
} ,
upload ( file , customParams = { } ) {
return upload ( file , customParams ) ;
2018-02-20 15:57:34 +01:00
} ,
2020-02-27 19:34:14 +01:00
delete ( file , customParams = { } ) {
2018-02-22 14:43:10 +01:00
return new Promise ( ( resolve , reject ) => {
// delete file on S3 bucket
2018-07-20 10:16:50 -07:00
const path = file . path ? ` ${ file . path } / ` : '' ;
2019-07-18 19:28:52 +02:00
S3 . deleteObject (
{
2022-04-01 18:40:22 +03:00
Key : ` ${ rootPath } ${ path } ${ file . hash } ${ file . ext } ` ,
2020-02-27 19:34:14 +01:00
... customParams ,
2019-07-18 19:28:52 +02:00
} ,
2022-04-01 18:40:22 +03:00
( err ) => {
2019-07-18 19:28:52 +02:00
if ( err ) {
return reject ( err ) ;
}
2018-02-20 15:57:34 +01:00
2019-07-18 19:28:52 +02:00
resolve ( ) ;
}
) ;
2018-02-22 14:43:10 +01:00
} ) ;
2019-07-18 19:28:52 +02:00
} ,
2018-02-20 15:57:34 +01:00
} ;
2019-07-18 19:28:52 +02:00
} ,
2018-02-20 15:57:34 +01:00
} ;