2018-03-18 01:14:50 +00:00
|
|
|
'use strict'
|
|
|
|
const fs = require('fs')
|
|
|
|
const path = require('path')
|
|
|
|
|
2020-01-04 22:30:23 +00:00
|
|
|
const config = require('../config')
|
|
|
|
const { getImageMimeType } = require('../utils')
|
|
|
|
const logger = require('../logger')
|
2018-03-18 01:14:50 +00:00
|
|
|
|
2020-04-11 18:24:35 +00:00
|
|
|
const { S3Client } = require('@aws-sdk/client-s3-node/S3Client')
|
|
|
|
const { PutObjectCommand } = require('@aws-sdk/client-s3-node/commands/PutObjectCommand')
|
|
|
|
|
|
|
|
const s3 = new S3Client(config.s3)
|
2018-03-18 01:14:50 +00:00
|
|
|
|
|
|
|
exports.uploadImage = function (imagePath, callback) {
|
|
|
|
if (!imagePath || typeof imagePath !== 'string') {
|
|
|
|
callback(new Error('Image path is missing or wrong'), null)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!callback || typeof callback !== 'function') {
|
2018-06-01 11:01:57 +00:00
|
|
|
logger.error('Callback has to be a function')
|
2018-03-18 01:14:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
fs.readFile(imagePath, function (err, buffer) {
|
|
|
|
if (err) {
|
|
|
|
callback(new Error(err), null)
|
|
|
|
return
|
|
|
|
}
|
2019-08-01 17:00:34 +00:00
|
|
|
const params = {
|
2018-03-18 01:14:50 +00:00
|
|
|
Bucket: config.s3bucket,
|
|
|
|
Key: path.join('uploads', path.basename(imagePath)),
|
2019-12-05 17:33:35 +00:00
|
|
|
Body: buffer,
|
|
|
|
ACL: 'public-read'
|
2018-03-18 01:14:50 +00:00
|
|
|
}
|
|
|
|
const mimeType = getImageMimeType(imagePath)
|
|
|
|
if (mimeType) { params.ContentType = mimeType }
|
|
|
|
|
2020-04-11 18:24:35 +00:00
|
|
|
const command = new PutObjectCommand(params)
|
2018-03-18 01:14:50 +00:00
|
|
|
|
2020-04-11 18:24:35 +00:00
|
|
|
s3.send(command).then(data => {
|
2018-03-18 01:14:50 +00:00
|
|
|
let s3Endpoint = 's3.amazonaws.com'
|
2019-02-11 16:31:45 +00:00
|
|
|
if (config.s3.endpoint) {
|
|
|
|
s3Endpoint = config.s3.endpoint
|
|
|
|
} else if (config.s3.region && config.s3.region !== 'us-east-1') {
|
2018-03-18 01:14:50 +00:00
|
|
|
s3Endpoint = `s3-${config.s3.region}.amazonaws.com`
|
|
|
|
}
|
|
|
|
callback(null, `https://${s3Endpoint}/${config.s3bucket}/${params.Key}`)
|
2020-04-11 18:24:35 +00:00
|
|
|
}).catch(err => {
|
|
|
|
if (err) {
|
|
|
|
callback(new Error(err), null)
|
|
|
|
}
|
2018-03-18 01:14:50 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|