Created
December 20, 2022 21:38
-
-
Save johnbahamon/69f2a8e6bd1cf3022144f799c82e2189 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs') | |
const S3 = require('aws-sdk/clients/s3') | |
const bucketName = process.env.AWS_BUCKET_NAME | |
const region = process.env.AWS_BUCKET_REGION | |
const accessKeyId = process.env.AWS_ACCESS_KEY | |
const secretAccessKey = process.env.AWS_SECRET_KEY | |
const s3 = new S3({ | |
region, | |
accessKeyId, | |
secretAccessKey | |
}) | |
// uploads a file to s3 | |
function uploadFile(file) { | |
const fileStream = fs.createReadStream("./logo.png") | |
console.log(fileStream.path) | |
const uploadParams = { | |
Bucket: bucketName, | |
Body: fileStream, | |
Key: 'products/logo.png', | |
ContentType: 'image/png', | |
//ACL: 'public-read', | |
//Expires: 60, | |
} | |
return s3.upload(uploadParams).promise() | |
} | |
exports.uploadFile = uploadFile | |
// downloads a file from s3 | |
function getFileStream(fileKey) { | |
const downloadParams = { | |
Key: fileKey, | |
Bucket: bucketName, | |
Expires: 86400 | |
} | |
return s3.getSignedUrl('getObject', downloadParams) | |
} | |
exports.getFileStream = getFileStream |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment