Skip to content

Commit a784c7e

Browse files
update to s3 assume role (#62)
* update to s3 assume role
1 parent 3a5f94c commit a784c7e

File tree

3 files changed

+58
-19
lines changed

3 files changed

+58
-19
lines changed

.env.example

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ NEXT_PUBLIC_USER_POOL_CLIENT_ID=
88
GITHUB_PRIVATE_KEY=
99
AWS_REGION=
1010
NEXT_PUBLIC_AWS_S3_BUCKET_NAME=
11-
AWS_ACCESS_KEY_ID=
12-
AWS_SECRET_ACCESS_KEY=
13-
NEXT_PUBLIC_ENABLE_THUMBNAIL_UPLOAD=
11+
NEXT_PUBLIC_ENABLE_THUMBNAIL_UPLOAD=
12+
ASSUME_ROLE_ARN=
13+
INGEST_UI_EXTERNAL_ID=

components/MenuBar.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ const filteredItems =
4848
)
4949
: items;
5050

51-
console.log(process.env.NEXT_PUBLIC_ENABLE_THUMBNAIL_UPLOAD);
52-
console.log(filteredItems);
53-
5451
const MenuBar = () => {
5552
const pathname = usePathname();
5653

utils/s3.ts

+55-13
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,69 @@
11
import { S3Client, HeadObjectCommand } from '@aws-sdk/client-s3';
2+
import { STSClient, AssumeRoleCommand } from '@aws-sdk/client-sts';
23
import { S3RequestPresigner } from '@aws-sdk/s3-request-presigner';
34
import { HttpRequest } from '@smithy/protocol-http';
45
import { parseUrl } from '@smithy/url-parser';
56
import { formatUrl } from '@aws-sdk/util-format-url';
67
import { Hash } from '@smithy/hash-node';
78

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();
1514

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 });
2117

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+
}
2363

2464
export async function checkFileExists(filename: string): Promise<boolean> {
2565
try {
66+
const s3 = await createS3Client();
2667
await s3.send(new HeadObjectCommand({ Bucket: bucketName, Key: filename }));
2768
return true;
2869
} catch (error: any) {
@@ -37,6 +78,7 @@ export async function generateSignedUrl(
3778
filename: string,
3879
filetype: string
3980
): Promise<string> {
81+
const presigner = await createPresigner();
4082
const url = parseUrl(
4183
`https://${bucketName}.s3.${process.env.AWS_REGION}.amazonaws.com/${filename}`
4284
);

0 commit comments

Comments
 (0)