This repository was archived by the owner on Jan 28, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathgetOriginConfig.ts
87 lines (79 loc) · 2.26 KB
/
getOriginConfig.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
import { getBucketNameFromUrl } from "./getBucketNameFromUrl";
export type OriginConfig = {
Id: string;
DomainName: string;
CustomHeaders: Record<string, unknown>;
OriginPath: string;
S3OriginConfig?: { OriginAccessIdentity: string };
CustomOriginConfig?: {
HTTPPort: number;
HTTPSPort: number;
OriginProtocolPolicy: Record<string, unknown> | string;
OriginSslProtocols: {
Quantity: number;
Items: string[];
};
OriginReadTimeout: number;
OriginKeepaliveTimeout: number;
};
};
export type Options = { originAccessIdentityId: string };
export type Origin =
| string
| {
protocolPolicy: string;
url: string;
pathPatterns: Record<string, unknown>;
headers: Record<string, string>;
};
export const getOriginConfig = (
origin: Origin,
options: Options = { originAccessIdentityId: "" }
) => {
const originUrl = typeof origin === "string" ? origin : origin.url;
const { hostname, pathname } = new URL(originUrl);
const originConfig: OriginConfig = {
Id: hostname,
DomainName: hostname,
CustomHeaders: {
Quantity: 0,
Items: []
},
OriginPath: pathname === "/" ? "" : pathname
};
if (originUrl.includes("s3")) {
const bucketName = getBucketNameFromUrl(hostname);
originConfig.Id = bucketName;
originConfig.DomainName = hostname;
originConfig.S3OriginConfig = {
OriginAccessIdentity: options.originAccessIdentityId
? `origin-access-identity/cloudfront/${options.originAccessIdentityId}`
: ""
};
} else {
if (typeof origin === "object" && origin.headers) {
originConfig.CustomHeaders.Quantity = Object.keys(origin.headers).length;
originConfig.CustomHeaders.Items = Object.keys(origin.headers).map(
(key) => ({
HeaderName: key,
HeaderValue: origin.headers[key]
})
);
}
originConfig.CustomOriginConfig = {
HTTPPort: 80,
HTTPSPort: 443,
OriginProtocolPolicy:
typeof origin === "object" && origin.protocolPolicy
? origin.protocolPolicy
: "https-only",
OriginSslProtocols: {
Quantity: 1,
Items: ["TLSv1.2"]
},
OriginReadTimeout: 180,
OriginKeepaliveTimeout: 60
};
}
return originConfig;
};