This repository has been archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.ts
358 lines (320 loc) · 11.6 KB
/
index.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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
import { Probot } from "probot";
import fetch from "node-fetch";
import { FormatToPascalCase } from "dummy-code"
const App = (app: Probot) => {
app.log.info("Yay, the app was loaded !!!");
// on issue labeled 'good first issue' or 'good-first-issue' or 'good_first_issue'
// schedule a tweet
app.on("issues.labeled", async (context: any) => {
const issue = context.payload.issue;
const label = context.payload.label.name;
// if issue is labeled with 'good first issue' or 'good-first-issue' or 'good_first_issue' and
// if repository visibility is public and
// if there is no assignee and
// if issue status is 'open' and
if (
FormatToPascalCase(label.toLowerCase()) === "GoodFirstIssue" &&
context.payload.repository.private === false &&
issue.assignee === null &&
issue.state === "open"
) {
const issue_title = issue.title;
const issue_url = issue.html_url;
const issue_label = await FormatToPascalCase(label);
const issue_author = issue.user.login;
// get latest issue data from the Github API
const latestIssueData: any = await fetch(
`https://api.github.com/repos/${context.payload.repository.full_name}/issues/${issue.number}`
)
.then((res) => res.json())
.catch((err) => console.log(err));
// if there is no assignee and
// 'good first issue' or 'good-first-issue' or 'good_first_issue' label is available (for accidental labeled issues) and
// issue status is 'open'
if (
latestIssueData.assignee === null &&
latestIssueData.labels.some(
(label: any) =>
FormatToPascalCase(label.name.toLowerCase()) === "GoodFirstIssue"
) &&
latestIssueData.state === "open"
) {
const latestIssueLabels = await latestIssueData.labels.map(
(label: any) => label.name.toLowerCase()
);
// make hash text of labels (e.g. '#Label1 #Label2 #Label3')
var labelsString = "";
for (const label of latestIssueLabels) {
labelsString = labelsString + `#${await FormatToPascalCase(label)} `;
}
// tweet text
const tweet = `Hey Geeks,
An issue got labeled with #${issue_label} for ${context.payload.repository.full_name}#${issue.number}`;
// make a POST request to the Tweet API (Not Twitter API)
await fetch(
`${process.env.BACKEND_API_URL}/good1stissue/`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Token ${process.env.BACKEND_API_TOKEN}`,
},
body: JSON.stringify({
tweet_text: tweet,
issue_title: issue_title,
issue_author: issue_author,
labels_text: labelsString,
issue_url: issue_url,
}),
}
)
.then((res) => res.text())
.then((text) => app.log.info(text))
.catch((err) => console.log(err));
}
}
});
// on issue unlabeled 'good first issue' or 'good-first-issue' or 'good_first_issue'
// delete the scheduled/tweeted tweet (if scheduled)
app.on("issues.unlabeled", async (context: any) => {
const issue = context.payload.issue;
const label = context.payload.label.name;
// if issue is unlabeled with 'good first issue' or 'good-first-issue' or 'good_first_issue' and
if (
FormatToPascalCase(label.toLowerCase()) === "GoodFirstIssue"
) {
// make a DELETE request to the Tweet API (Not Twitter API)
await fetch(
`${process.env.BACKEND_API_URL}/good1stissue/`,
{
method: "DELETE",
headers: {
"Content-Type": "application/json",
Authorization: `Token ${process.env.BACKEND_API_TOKEN}`,
},
body: JSON.stringify({
issue_url: issue.html_url,
}),
}
)
.then((res) => res.text())
.then((text) => app.log.info(text))
.catch((err) => console.log(err));
}
});
// on issue closed (regardless of the label)
// delete the scheduled/tweeted tweet (if scheduled)
app.on("issues.closed", async (context: any) => {
await app.log.info("Issue closed");
const issue = context.payload.issue;
await app.log.info("Issue closed");
// make a DELETE request to the Tweet API (Not Twitter API)
await fetch(
`${process.env.BACKEND_API_URL}/good1stissue/`,
{
method: "DELETE",
headers: {
"Content-Type": "application/json",
Authorization: `Token ${process.env.BACKEND_API_TOKEN}`,
},
body: JSON.stringify({
issue_url: issue.html_url,
}),
}
)
.then((res) => res.text())
.then((text) => app.log.info(text))
.catch((err) => console.log(err));
});
// on issue reopened and
// if issue is labeled with 'good first issue' or 'good-first-issue' or 'good_first_issue' and
// if repository visibility is public and
// if there is no assignee
// schedule a tweet
app.on("issues.reopened", async (context: any) => {
const issue = context.payload.issue;
// if issue is labeled with 'good first issue' or 'good-first-issue' or 'good_first_issue' and
// if repository visibility is public and
// if there is no assignee and
// if issue status is 'open' and
if (
issue.labels.some(
(label: any) =>
FormatToPascalCase(label.name.toLowerCase()) === "GoodFirstIssue"
) &&
context.payload.repository.private === false &&
issue.assignee === null &&
issue.state === "open"
) {
const issue_title = issue.title;
const issue_url = issue.html_url;
const issue_label = await FormatToPascalCase(
issue.labels.find(
(label: any) =>
FormatToPascalCase(label.name.toLowerCase()) === "GoodFirstIssue"
).name
);
const issue_author = issue.user.login;
const issueLabels = await issue.labels.map(
(label: any) => label.name.toLowerCase()
);
// make hash text of labels (e.g. '#Label1 #Label2 #Label3')
var labelsString = "";
for (const label of issueLabels) {
labelsString = labelsString + `#${await FormatToPascalCase(label)} `;
}
// tweet text
const tweet = `Hey Geeks,
An issue got labeled with #${issue_label} for ${context.payload.repository.full_name}#${issue.number}`;
// make a POST request to the Tweet API (Not Twitter API)
await fetch(
`${process.env.BACKEND_API_URL}/good1stissue/`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Token ${process.env.BACKEND_API_TOKEN}`,
},
body: JSON.stringify({
tweet_text: tweet,
issue_title: issue_title,
issue_author: issue_author,
labels_text: labelsString,
issue_url: issue_url,
}),
}
)
.then((res) => res.text())
.then((text) => app.log.info(text))
.catch((err) => console.log(err));
}
});
// on issue assigned and
// if issue is labeled with 'good first issue' or 'good-first-issue' or 'good_first_issue' and
// if repository visibility is public
// delete the scheduled/tweeted tweet (if scheduled)
app.on("issues.assigned", async (context: any) => {
const issue = context.payload.issue;
// if issue is labeled with 'good first issue' or 'good-first-issue' or 'good_first_issue' and
// if repository visibility is public
if (
issue.labels.some(
(label: any) =>
FormatToPascalCase(label.name.toLowerCase()) === "GoodFirstIssue"
) &&
context.payload.repository.private === false
) {
// make a DELETE request to the Tweet API (Not Twitter API)
await fetch(
`${process.env.BACKEND_API_URL}/good1stissue/`,
{
method: "DELETE",
headers: {
"Content-Type": "application/json",
Authorization: `Token ${process.env.BACKEND_API_TOKEN}`,
},
body: JSON.stringify({
issue_url: issue.html_url,
}),
}
)
.then((res) => res.text())
.then((text) => app.log.info(text))
.catch((err) => console.log(err));
}
});
// on issue unassigned and
// if issue is labeled with 'good first issue' or 'good-first-issue' or 'good_first_issue' and
// if repository visibility is public and
// if there is no assignee
// schedule a tweet
app.on("issues.unassigned", async (context: any) => {
const issue = context.payload.issue;
// if issue is labeled with 'good first issue' or 'good-first-issue' or 'good_first_issue' and
// if repository visibility is public and
// if there is no assignee and
// if issue status is 'open'
if (
issue.labels.some(
(label: any) =>
FormatToPascalCase(label.name.toLowerCase()) === "GoodFirstIssue"
) &&
context.payload.repository.private === false &&
issue.assignee === null &&
issue.state === "open"
) {
const issue_title = issue.title;
const issue_url = issue.html_url;
const issue_label = await FormatToPascalCase(
issue.labels.find(
(label: any) =>
FormatToPascalCase(label.name.toLowerCase()) === "GoodFirstIssue"
).name
);
const issue_author = issue.user.login;
const issueLabels = await issue.labels.map(
(label: any) => label.name.toLowerCase()
);
// make hash text of labels (e.g. '#Label1 #Label2 #Label3')
var labelsString = "";
for (const label of issueLabels) {
labelsString = labelsString + `#${await FormatToPascalCase(label)} `;
}
// tweet text
const tweet = `Hey Geeks,
An issue got labeled with #${issue_label} for ${context.payload.repository.full_name}#${issue.number}`;
// make a POST request to the Tweet API (Not Twitter API)
await fetch(
`${process.env.BACKEND_API_URL}/good1stissue/`,
{
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Token ${process.env.BACKEND_API_TOKEN}`,
},
body: JSON.stringify({
tweet_text: tweet,
issue_title: issue_title,
issue_author: issue_author,
labels_text: labelsString,
issue_url: issue_url,
}),
}
)
.then((res) => res.text())
.then((text) => app.log.info(text))
.catch((err) => console.log(err));
}
});
// on issue deleted (regarless of label) and
// if repository visibility is public
// delete the scheduled/tweeted tweet (if scheduled)
app.on("issues.deleted", async (context: any) => {
const issue = context.payload.issue;
// if repository visibility is public
if (context.payload.repository.private === false) {
// make a DELETE request to the Tweet API (Not Twitter API)
await fetch(
`${process.env.BACKEND_API_URL}/good1stissue/`,
{
method: "DELETE",
headers: {
"Content-Type": "application/json",
Authorization: `Token ${process.env.BACKEND_API_TOKEN}`,
},
body: JSON.stringify({
issue_url: issue.html_url,
}),
}
)
.then((res) => res.text())
.then((text) => app.log.info(text))
.catch((err) => console.log(err));
}
});
// For more information on building apps:
// https://probot.github.io/docs/
// To get your app running against GitHub, see:
// https://probot.github.io/docs/development/
};
export default App;