1
1
import { S3Client , HeadObjectCommand } from '@aws-sdk/client-s3' ;
2
+ import { STSClient , AssumeRoleCommand } from '@aws-sdk/client-sts' ;
2
3
import { S3RequestPresigner } from '@aws-sdk/s3-request-presigner' ;
3
4
import { HttpRequest } from '@smithy/protocol-http' ;
4
5
import { parseUrl } from '@smithy/url-parser' ;
5
6
import { formatUrl } from '@aws-sdk/util-format-url' ;
6
7
import { Hash } from '@smithy/hash-node' ;
7
8
8
- const s3 = new S3Client ( {
9
- region : process . env . AWS_REGION ! ,
10
- credentials : {
11
- accessKeyId : process . env . AWS_ACCESS_KEY_ID ! ,
12
- secretAccessKey : process . env . AWS_SECRET_ACCESS_KEY ! ,
13
- } ,
14
- } ) ;
9
+ const bucketName = process . env . NEXT_PUBLIC_AWS_S3_BUCKET_NAME ! ;
10
+ const region = process . env . AWS_REGION || 'us-west-2' ;
11
+ const RoleArn = process . env . ASSUME_ROLE_ARN ;
12
+ const ExternalId = process . env . INGEST_UI_EXTERNAL_ID ;
13
+ const timestamp = Date . now ( ) ;
15
14
16
- const presigner = new S3RequestPresigner ( {
17
- credentials : s3 . config . credentials ,
18
- region : process . env . AWS_REGION ! ,
19
- sha256 : Hash . bind ( null , 'sha256' ) ,
20
- } ) ;
15
+ async function assumeRole ( ) {
16
+ const sts = new STSClient ( { region } ) ;
21
17
22
- const bucketName = process . env . NEXT_PUBLIC_AWS_S3_BUCKET_NAME ! ;
18
+ const roleParams = {
19
+ RoleArn,
20
+ RoleSessionName : `veda-ingest-ui-${ timestamp } ` ,
21
+ DurationSeconds : 900 ,
22
+ ExternalId,
23
+ } ;
24
+
25
+ const command = new AssumeRoleCommand ( roleParams ) ;
26
+ console . log ( { command } ) ;
27
+ const response = await sts . send ( command ) ;
28
+
29
+ if (
30
+ ! response . Credentials ||
31
+ ! response . Credentials . AccessKeyId ||
32
+ ! response . Credentials . SecretAccessKey ||
33
+ ! response . Credentials . SessionToken
34
+ ) {
35
+ throw new Error (
36
+ 'Failed to assume role: Missing credentials from STS response.'
37
+ ) ;
38
+ }
39
+
40
+ return {
41
+ accessKeyId : response . Credentials . AccessKeyId ,
42
+ secretAccessKey : response . Credentials . SecretAccessKey ,
43
+ sessionToken : response . Credentials . SessionToken ,
44
+ } ;
45
+ }
46
+
47
+ async function createS3Client ( ) {
48
+ const credentials = await assumeRole ( ) ;
49
+ return new S3Client ( {
50
+ region,
51
+ credentials,
52
+ } ) ;
53
+ }
54
+
55
+ async function createPresigner ( ) {
56
+ const credentials = await assumeRole ( ) ;
57
+ return new S3RequestPresigner ( {
58
+ credentials,
59
+ region,
60
+ sha256 : Hash . bind ( null , 'sha256' ) ,
61
+ } ) ;
62
+ }
23
63
24
64
export async function checkFileExists ( filename : string ) : Promise < boolean > {
25
65
try {
66
+ const s3 = await createS3Client ( ) ;
26
67
await s3 . send ( new HeadObjectCommand ( { Bucket : bucketName , Key : filename } ) ) ;
27
68
return true ;
28
69
} catch ( error : any ) {
@@ -37,6 +78,7 @@ export async function generateSignedUrl(
37
78
filename : string ,
38
79
filetype : string
39
80
) : Promise < string > {
81
+ const presigner = await createPresigner ( ) ;
40
82
const url = parseUrl (
41
83
`https://${ bucketName } .s3.${ process . env . AWS_REGION } .amazonaws.com/${ filename } `
42
84
) ;
0 commit comments