New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

idea-toolbox

Package Overview
Dependencies
Maintainers
1
Versions
381
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

idea-toolbox - npm Package Compare versions

Comparing version

to
2.0.11

14

dist/s3.d.ts

@@ -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;

2

package.json
{
"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
});
}
}