-
Notifications
You must be signed in to change notification settings - Fork 398
/
Copy paths3.ts
102 lines (90 loc) · 2.63 KB
/
s3.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { S3Client } from "@aws-sdk/client-s3";
import type { s3Buckets } from "@cap/database/schema";
import type { InferSelectModel } from "drizzle-orm";
import { decrypt } from "@cap/database/crypto";
import { clientEnv, serverEnv } from "@cap/env";
type S3Config = {
endpoint?: string | null;
region?: string;
accessKeyId?: string;
secretAccessKey?: string;
forcePathStyle?: boolean;
} | null;
async function tryDecrypt(
text: string | null | undefined
): Promise<string | undefined> {
if (!text) return undefined;
try {
const decrypted = await decrypt(text);
return decrypted;
} catch (error) {
return text;
}
}
export async function getS3Config(config?: S3Config) {
if (!config) {
return {
endpoint: clientEnv.NEXT_PUBLIC_CAP_AWS_ENDPOINT,
region: clientEnv.NEXT_PUBLIC_CAP_AWS_REGION,
credentials: {
accessKeyId: serverEnv.CAP_AWS_ACCESS_KEY ?? "",
secretAccessKey: serverEnv.CAP_AWS_SECRET_KEY ?? "",
},
forcePathStyle:
clientEnv.NEXT_PUBLIC_CAP_AWS_ENDPOINT?.includes("localhost"),
};
}
const endpoint = config.endpoint
? await tryDecrypt(config.endpoint)
: clientEnv.NEXT_PUBLIC_CAP_AWS_ENDPOINT;
const region =
(await tryDecrypt(config.region)) ?? clientEnv.NEXT_PUBLIC_CAP_AWS_REGION;
const finalRegion = endpoint?.includes("localhost") ? "us-east-1" : region;
const isLocalOrMinio =
endpoint?.includes("localhost") || endpoint?.includes("127.0.0.1");
return {
endpoint,
region: finalRegion,
credentials: {
accessKeyId:
(await tryDecrypt(config.accessKeyId)) ??
serverEnv.CAP_AWS_ACCESS_KEY ??
"",
secretAccessKey:
(await tryDecrypt(config.secretAccessKey)) ??
serverEnv.CAP_AWS_SECRET_KEY ??
"",
},
forcePathStyle: config.forcePathStyle ?? true,
useArnRegion: false,
requestHandler: {
connectionTimeout: isLocalOrMinio ? 5000 : 10000,
socketTimeout: isLocalOrMinio ? 30000 : 60000,
},
};
}
export async function getS3Bucket(
bucket?: InferSelectModel<typeof s3Buckets> | null
) {
if (!bucket?.bucketName) {
return clientEnv.NEXT_PUBLIC_CAP_AWS_BUCKET || "";
}
return (
((await tryDecrypt(bucket.bucketName)) ??
clientEnv.NEXT_PUBLIC_CAP_AWS_BUCKET) ||
""
);
}
export async function createS3Client(config?: S3Config) {
const s3Config = await getS3Config(config);
const isLocalOrMinio =
s3Config.endpoint?.includes("localhost") ||
s3Config.endpoint?.includes("127.0.0.1");
return [
new S3Client({
...s3Config,
maxAttempts: isLocalOrMinio ? 5 : 3,
}),
s3Config,
] as const;
}