idea-toolbox
Advanced tools
Comparing version
@@ -25,2 +25,16 @@ /** | ||
downloadThroughUrl(prefix: string, key: string, dataToUpload: any, contentType: string, bucket?: string, secToExp?: number): Promise<string>; | ||
/** | ||
* Get a signed URL to put a file on a S3 bucket. | ||
* @param {string} bucket | ||
* @param {string} key | ||
* @param {number} expires seconds after which the signed URL expires | ||
*/ | ||
signedUrlPut(bucket: string, key: string, expires?: number): string; | ||
/** | ||
* Get a signed URL to get a file on a S3 bucket. | ||
* @param {string} bucket | ||
* @param {string} key | ||
* @param {number} expires seconds after which the signed URL expires | ||
*/ | ||
signedUrlGet(bucket: string, key: string, expires?: number): string; | ||
} |
@@ -10,2 +10,3 @@ "use strict"; | ||
const S3_DEFAULT_DOWNLOAD_BUCKET_SEC_TO_EXP = 180; | ||
const S3_DEFAULT_UPLOAD_BUCKET_SEC_TO_EXP = 300; | ||
class S3 { | ||
@@ -45,3 +46,25 @@ /** | ||
} | ||
/** | ||
* Get a signed URL to put a file on a S3 bucket. | ||
* @param {string} bucket | ||
* @param {string} key | ||
* @param {number} expires seconds after which the signed URL expires | ||
*/ | ||
signedUrlPut(bucket, key, expires) { | ||
return this.s3.getSignedUrl('putObject', { | ||
Bucket: bucket, Key: key, Expires: expires || S3_DEFAULT_UPLOAD_BUCKET_SEC_TO_EXP | ||
}); | ||
} | ||
/** | ||
* Get a signed URL to get a file on a S3 bucket. | ||
* @param {string} bucket | ||
* @param {string} key | ||
* @param {number} expires seconds after which the signed URL expires | ||
*/ | ||
signedUrlGet(bucket, key, expires) { | ||
return this.s3.getSignedUrl('getObject', { | ||
Bucket: bucket, Key: key, Expires: expires || S3_DEFAULT_DOWNLOAD_BUCKET_SEC_TO_EXP | ||
}); | ||
} | ||
} | ||
exports.S3 = S3; |
{ | ||
"name": "idea-toolbox", | ||
"version": "2.0.10", | ||
"version": "2.0.11", | ||
"description": "IDEA's utility functions", | ||
@@ -5,0 +5,0 @@ "engines": { |
@@ -12,2 +12,3 @@ /** | ||
const S3_DEFAULT_DOWNLOAD_BUCKET_SEC_TO_EXP = 180; | ||
const S3_DEFAULT_UPLOAD_BUCKET_SEC_TO_EXP = 300; | ||
@@ -52,2 +53,26 @@ export class S3 { | ||
} | ||
/** | ||
* Get a signed URL to put a file on a S3 bucket. | ||
* @param {string} bucket | ||
* @param {string} key | ||
* @param {number} expires seconds after which the signed URL expires | ||
*/ | ||
public signedUrlPut(bucket: string, key: string, expires?: number): string { | ||
return this.s3.getSignedUrl('putObject', { | ||
Bucket: bucket, Key: key, Expires: expires || S3_DEFAULT_UPLOAD_BUCKET_SEC_TO_EXP | ||
}); | ||
} | ||
/** | ||
* Get a signed URL to get a file on a S3 bucket. | ||
* @param {string} bucket | ||
* @param {string} key | ||
* @param {number} expires seconds after which the signed URL expires | ||
*/ | ||
public signedUrlGet(bucket: string, key: string, expires?: number): string { | ||
return this.s3.getSignedUrl('getObject', { | ||
Bucket: bucket, Key: key, Expires: expires || S3_DEFAULT_DOWNLOAD_BUCKET_SEC_TO_EXP | ||
}); | ||
} | ||
} |
92679
2.54%2418
2.54%