-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathutils.ts
311 lines (283 loc) · 8.39 KB
/
utils.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
import dayjs from "dayjs";
import { Octokit } from "octokit";
import { Context, Probot } from "probot";
import urllib from "urllib";
export function isTime0(time: string): boolean {
const v = dayjs.utc(time).valueOf();
// NB: This returns NaN when the string is empty
return isNaN(v) || v === 0;
}
export const TIME_0 = "1970-01-01 00:00:00.000000000";
export function repoKey(
context: Context | Context<"pull_request.labeled">
): string {
const repo = context.repo();
return `${repo.owner}/${repo.repo}`;
}
export function isPyTorchOrg(owner: string): boolean {
return owner === "pytorch";
}
export function isPyTorchPyTorch(owner: string, repo: string): boolean {
return isPyTorchOrg(owner) && repo === "pytorch";
}
export function isDrCIEnabled(owner: string, repo: string): boolean {
return (
isPyTorchOrg(owner) &&
[
"pytorch",
"vision",
"text",
"audio",
"pytorch-canary",
"tutorials",
"executorch",
"rl",
"torchtune",
"ao",
"torchchat",
].includes(repo)
);
}
export class CachedConfigTracker {
repoConfigs: any = {};
constructor(app: Probot) {
app.on("push", async (context) => {
if (
context.payload.ref === "refs/heads/master" ||
context.payload.ref === "refs/heads/main"
) {
await this.loadConfig(context, /* force */ true);
}
});
}
async loadConfig(
context: Context | Context<"pull_request.labeled">,
force = false
): Promise<object> {
const key = repoKey(context);
if (!(key in this.repoConfigs) || force) {
context.log({ key }, "loadConfig");
this.repoConfigs[key] = await context.config("pytorch-probot.yml");
}
return this.repoConfigs[key];
}
}
export class CachedIssueTracker extends CachedConfigTracker {
repoIssues: any = {};
configName: string;
issueParser: (_data: string) => object;
constructor(
app: Probot,
configName: string,
issueParser: (_data: string) => object
) {
super(app);
this.configName = configName;
this.issueParser = issueParser;
app.on("issues.edited", async (context) => {
const config: any = await this.loadConfig(context);
const issue = context.issue();
if (config[this.configName] === issue.issue_number) {
await this.loadIssue(context, /* force */ true);
}
});
}
async loadIssue(context: Context, force = false): Promise<object> {
const key = repoKey(context);
if (!(key in this.repoIssues) || force) {
context.log({ key }, "loadIssue");
const config: any = await this.loadConfig(context);
if (config != null && this.configName in config) {
const subsPayload = await context.octokit.issues.get(
context.repo({ issue_number: config[this.configName] })
);
const subsText = subsPayload.data["body"];
context.log({ subsText });
this.repoIssues[key] = this.issueParser(subsText!);
} else {
context.log(
`${this.configName} is not found in config, initializing with empty string`
);
this.repoIssues[key] = this.issueParser("");
}
context.log({ parsedIssue: this.repoIssues[key] });
}
return this.repoIssues[key];
}
}
export class CachedLabelerConfigTracker extends CachedConfigTracker {
repoLabels: any = {};
constructor(app: Probot) {
super(app);
app.on("push", async (context) => {
if (
context.payload.ref === "refs/heads/master" ||
context.payload.ref === "refs/heads/main"
) {
await this.loadLabelsConfig(context, /* force */ true);
}
});
}
async loadLabelsConfig(context: Context, force = false): Promise<object> {
const key = repoKey(context);
if (!(key in this.repoLabels) || force) {
const config: any = await this.loadConfig(context, force);
if (config != null && "labeler_config" in config) {
this.repoLabels[key] = context.config(config["labeler_config"]);
} else {
this.repoLabels[key] = {};
}
}
return this.repoLabels[key];
}
}
export class LabelToLabelConfigTracker extends CachedConfigTracker {
repoLabels: any = {};
constructor(app: Probot) {
super(app);
app.on("push", async (context) => {
if (
context.payload.ref === "refs/heads/master" ||
context.payload.ref === "refs/heads/main"
) {
await this.loadLabelsConfig(context, /* force */ true);
}
});
}
async loadLabelsConfig(context: Context, force = false): Promise<object> {
const key = repoKey(context);
if (!(key in this.repoLabels) || force) {
const config: any = await this.loadConfig(context, force);
if (config != null && "label_to_label_config" in config) {
this.repoLabels[key] = context.config(config["label_to_label_config"]);
} else {
this.repoLabels[key] = {};
}
}
return this.repoLabels[key];
}
}
// returns undefined if the request fails
export async function fetchJSON(path: string): Promise<any> {
const result = await retryRequest(path);
if (result.res.statusCode !== 200) {
return;
}
return JSON.parse(result.data.toString());
}
export async function retryRequest(
path: string,
numRetries: number = 3,
delay: number = 500
): Promise<urllib.HttpClientResponse<any>> {
for (let i = 0; i < numRetries; i++) {
const result = await urllib.request(path);
if (result.res.statusCode == 200) {
return result;
}
await new Promise((f) => setTimeout(f, delay));
}
return await urllib.request(path);
}
export async function reactOnComment(ctx: any, reaction: "+1" | "confused") {
ctx.log(
`Reacting with "${reaction}" to comment ${ctx.payload.comment.html_url}`
);
await ctx.octokit.reactions.createForIssueComment({
comment_id: ctx.payload.comment.id,
content: reaction,
owner: ctx.payload.repository.owner.login,
repo: ctx.payload.repository.name,
});
}
export async function addComment(ctx: any, message: string) {
ctx.log(
`Commenting with "${message}" on issue ${ctx.payload.issue.html_url}`
);
await ctx.octokit.issues.createComment({
owner: ctx.payload.repository.owner.login,
repo: ctx.payload.repository.name,
issue_number: ctx.payload.issue.number,
body: message,
});
}
export async function addLabels(ctx: any, labelsToAdd: string[]) {
if (ctx.payload.issue) {
ctx.log(
`Adding label(s) ${labelsToAdd} to issue ${ctx.payload.issue.html_url}`
);
}
if (ctx.payload.pull_request) {
ctx.log(
`Adding label(s) ${labelsToAdd} to pull request ${ctx.payload.pull_request.html_url}`
);
}
await ctx.octokit.issues.addLabels(ctx.issue({ labels: labelsToAdd }));
}
export async function getUserPermissions(
ctx: any,
username: string
): Promise<string> {
const res = await ctx.octokit.repos.getCollaboratorPermissionLevel({
owner: ctx.payload.repository.owner.login,
repo: ctx.payload.repository.name,
username,
});
return res?.data?.permission;
}
export async function hasWritePermissions(
ctx: any,
username: string
): Promise<boolean> {
const permissions = await getUserPermissions(ctx, username);
return permissions === "admin" || permissions === "write";
}
export async function hasApprovedPullRuns(
octokit: Octokit,
owner: string,
repo: string,
sha: string
): Promise<boolean> {
const res = await octokit.rest.actions.listWorkflowRunsForRepo({
owner: owner,
repo: repo,
head_sha: sha,
});
const pr_runs = res?.data?.workflow_runs?.filter(
(run) => run.event == "pull_request"
);
if (pr_runs == null || pr_runs?.length == 0) {
return false;
}
return pr_runs.every((run) => run.conclusion != "action_required");
}
export async function isFirstTimeContributor(
ctx: any,
username: string
): Promise<boolean> {
const commits = await ctx.octokit.repos.listCommits({
owner: ctx.payload.repository.owner.login,
repo: ctx.payload.repository.name,
author: username,
sha: ctx.payload.repository.default_branch,
per_page: 1,
});
return commits?.data?.length === 0;
}
export async function getFilesChangedByPr(
octokit: Octokit,
owner: string,
repo: string,
prNumber: number
): Promise<string[]> {
const filesChangedRes = await octokit.paginate(
"GET /repos/{owner}/{repo}/pulls/{pull_number}/files",
{
owner,
repo,
pull_number: prNumber,
per_page: 100,
}
);
return filesChangedRes.map((f: any) => f.filename);
}