-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathenv.ts
90 lines (80 loc) · 2.46 KB
/
env.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
/**
* Raw environment from Workers
*/
export interface Env {
IGNORED_BRANCHES_REGEX: string;
IGNORED_BRANCHES: string;
IGNORED_USERS: string;
IGNORED_PAYLOADS: string;
GITHUB_WEBHOOK_SECRET: string;
DEBUG_PASTE: string;
AWAIT_ERRORS: string;
}
/**
* Parsed environment
*/
export class BoundEnv {
private ignoredBranchPattern?: RegExp;
private ignoredBranches: string[];
private ignoredUsers: string[];
private ignoredPayloads: string[];
readonly githubWebhookSecret: string;
readonly debugPaste: boolean;
readonly awaitErrors: boolean;
constructor(env: Env) {
if (typeof env.IGNORED_BRANCHES_REGEX !== 'undefined') {
this.ignoredBranchPattern = new RegExp(env.IGNORED_BRANCHES_REGEX);
}
this.ignoredBranches = env.IGNORED_BRANCHES?.split(",") || [];
this.ignoredUsers = env.IGNORED_USERS?.split(",") || [];
this.ignoredPayloads = env.IGNORED_PAYLOADS?.split(",") || [];
this.githubWebhookSecret = env.GITHUB_WEBHOOK_SECRET;
this.debugPaste = env.DEBUG_PASTE == "true" || env.DEBUG_PASTE == "1";
this.awaitErrors = env.AWAIT_ERRORS == "true" || env.AWAIT_ERRORS == "1";
}
/**
* @param {String} branch
* @return {boolean}
*/
isIgnoredBranch(branch: string): boolean {
return (this.ignoredBranchPattern && branch.match(this.ignoredBranchPattern) != null) || this.ignoredBranches.includes(branch);
}
/**
* @param {String} user
* @return {boolean}
*/
isIgnoredUser(user: string): boolean {
return this.ignoredUsers.includes(user);
}
/**
* @param {String} payload
* @return {boolean}
*/
isIgnoredPayload(payload: string): boolean {
return this.ignoredPayloads.includes(payload);
}
async buildDebugPaste(embed: any): Promise<string> {
embed = JSON.stringify({
"files": [
{
"content": {
"format": "text",
"value": embed
}
}
]
});
embed = await (await fetch("https://api.pastes.dev/post", {
headers: {
"user-agent": "disgit",
"content-type": "application/json",
},
method: "POST",
body: embed
})).text();
embed = JSON.stringify({
"content": embed
});
return embed;
}
}