-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
778 lines (691 loc) · 27.4 KB
/
index.js
File metadata and controls
778 lines (691 loc) · 27.4 KB
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
require("dotenv").config();
const { WebClient } = require("@slack/web-api");
const WebSocket = require("ws");
const express = require("express");
const bodyParser = require("body-parser");
const {
getUser,
getUsername,
resolveAddress,
getRepoDetails,
generateSectionBlock,
postToSlack,
} = require("./util");
// Initialize a Slack Web API client
const web = new WebClient(process.env.SLACK_BOT_TOKEN);
let ws;
function connect() {
// Connect to a WebSocket server
ws = new WebSocket(process.env.WS_ADDR);
ws.on("open", () => {
console.log("Connected to WebSocket server");
ws.send(
JSON.stringify({
method: "subscribe",
params: { query: "tm.event='Tx'" },
id: 1,
jsonrpc: "2.0",
})
);
});
ws.on("message", async (message) => {
// Parse the incoming message
let data;
try {
data = JSON.parse(message).result.data;
} catch (e) {
console.error("Invalid JSON:", e);
return;
}
if (!data || !data.value) {
console.log("Ignoring message without value");
return;
}
// Get the events from the transaction result
const events = data.value.TxResult.result.events;
// Iterate over the events
for (let event of events) {
// Decode the event type
let eventType = Buffer.from(event.type).toString();
// If the event type matches what we're interested in...
if (eventType === "message") {
let eventAttributes = {};
// Iterate over the attributes of the event
for (let attribute of event.attributes) {
// Decode the attribute key and value
let key = Buffer.from(attribute.key, "base64").toString();
let value = Buffer.from(attribute.value, "base64").toString();
eventAttributes[key] = value;
}
let blocks = []; // message blocks to be sent to Slack
// Change the message format and displayed attributes based on the action value
switch (eventAttributes["action"]) {
case "MultiSetRepositoryBranch": {
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`Branches updated by <https://gitopia.com/${username}|${username}>`
)
);
let branches;
try {
branches = JSON.parse(eventAttributes["RepositoryBranch"]);
} catch (e) {
console.error("Invalid JSON:", e);
return;
}
let branchSection = {
type: "section",
fields: [
{
type: "mrkdwn",
text: "*Name*",
},
{
type: "mrkdwn",
text: "*Sha*",
},
],
};
const repoOwnerName = await resolveAddress(
eventAttributes["RepositoryOwnerId"],
eventAttributes["RepositoryOwnerType"]
);
for (let branch of branches) {
branchSection.fields.push(
{
type: "mrkdwn",
text: `<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}/tree/${branch.name}|${branch.name}>`,
},
{
type: "mrkdwn",
text: `${branch.sha}`,
}
);
}
blocks.push(branchSection);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}|${repoOwnerName}/${eventAttributes["RepositoryName"]}>`
)
);
break;
}
case "MultiDeleteRepositoryBranch": {
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`Branches deleted by <https://gitopia.com/${username}|${username}>`
)
);
let branches;
try {
branches = JSON.parse(eventAttributes["RepositoryBranch"]);
} catch (e) {
console.error("Invalid JSON:", e);
return;
}
let branchSection = {
type: "section",
fields: [
{
type: "mrkdwn",
text: "*Name*",
},
{
type: "mrkdwn",
text: "*Sha*",
},
],
};
for (let branch of branches) {
branchSection.fields.push(
{
type: "mrkdwn",
text: `${branch.name}`,
},
{
type: "mrkdwn",
text: `${branch.sha}`,
}
);
}
blocks.push(branchSection);
const repoOwnerName = await resolveAddress(
eventAttributes["RepositoryOwnerId"],
eventAttributes["RepositoryOwnerType"]
);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}|${repoOwnerName}/${eventAttributes["RepositoryName"]}>`
)
);
break;
}
case "MultiSetRepositoryTag": {
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`Tags updated by <https://gitopia.com/${username}|${username}>`
)
);
let tags;
try {
tags = JSON.parse(eventAttributes["RepositoryTag"]);
} catch (e) {
console.error("Invalid JSON:", e);
return;
}
let tagSection = {
type: "section",
fields: [
{
type: "mrkdwn",
text: "*Name*",
},
{
type: "mrkdwn",
text: "*Sha*",
},
],
};
const repoOwnerName = await resolveAddress(
eventAttributes["RepositoryOwnerId"],
eventAttributes["RepositoryOwnerType"]
);
for (let tag of tags) {
tagSection.fields.push(
{
type: "mrkdwn",
text: `<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}/tree/${tag.name}|${tag.name}>`,
},
{
type: "mrkdwn",
text: `${tag.sha}`,
}
);
}
blocks.push(tagSection);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}|${repoOwnerName}/${eventAttributes["RepositoryName"]}>`
)
);
break;
}
case "MultiDeleteRepositoryTag": {
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`Tags deleted by <https://gitopia.com/${username}|${username}>`
)
);
let tags;
try {
tags = JSON.parse(eventAttributes["RepositoryTag"]);
} catch (e) {
console.error("Invalid JSON:", e);
return;
}
let tagSection = {
type: "section",
fields: [
{
type: "mrkdwn",
text: "*Name*",
},
{
type: "mrkdwn",
text: "*Sha*",
},
],
};
for (let tag of tags) {
tagSection.fields.push(
{
type: "mrkdwn",
text: `${tag.name}`,
},
{
type: "mrkdwn",
text: `${tag.sha}`,
}
);
}
blocks.push(tagSection);
const repoOwnerName = await resolveAddress(
eventAttributes["RepositoryOwnerId"],
eventAttributes["RepositoryOwnerType"]
);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}|${repoOwnerName}/${eventAttributes["RepositoryName"]}>`
)
);
break;
}
case "CreateUser": {
blocks.push(
generateSectionBlock(
`New user created <https://gitopia.com/${eventAttributes["UserUsername"]}|${eventAttributes["UserUsername"]}>`
)
);
break;
}
case "CreateDao": {
blocks.push(
generateSectionBlock(
`New dao created <https://gitopia.com/${eventAttributes["DaoName"]}|${eventAttributes["DaoName"]}>`
)
);
break;
}
case "CreateRepository": {
const username = await getUsername(eventAttributes["Creator"]);
const repoOwnerName = await resolveAddress(
eventAttributes["RepositoryOwnerId"],
eventAttributes["RepositoryOwnerType"]
);
blocks.push(
generateSectionBlock(
`New repository created by <https://gitopia.com/${username}|${username}>\n<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}|${eventAttributes["RepositoryName"]}>`
)
);
break;
}
case "CreateIssue": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`New issue created by <https://gitopia.com/${username}|${username}>\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["IssueIid"]}|#${eventAttributes["IssueIid"]} ${eventAttributes["IssueTitle"]}>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "AddIssueAssignees": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
let assignees = "";
for (let assignee of JSON.parse(eventAttributes["Assignees"])) {
const assigneeUsername = await getUsername(assignee);
assignees += `<https://gitopia.com/${assigneeUsername}|${assigneeUsername}>, `;
}
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${username}|${username}> assigned the issue to ${assignees.slice(
0,
-2
)}\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${
eventAttributes["IssueIid"]
}|${repoOwnerName}/${repositoryName} #${
eventAttributes["IssueIid"]
}>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "ToggleIssueState": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
let message = "";
switch (eventAttributes["IssueState"]) {
case "OPEN":
message = `<https://gitopia.com/${username}|${username}> re-opened the issue\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["IssueIid"]}|${repoOwnerName}/${repositoryName} #${eventAttributes["IssueIid"]}>`;
break;
case "CLOSED":
message = `<https://gitopia.com/${username}|${username}> closed the issue\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["IssueIid"]}|${repoOwnerName}/${repositoryName} #${eventAttributes["IssueIid"]}>`;
break;
default:
message = "Unhandled state";
}
blocks.push(generateSectionBlock(message));
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "CreatePullRequest": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`New PR created by <https://gitopia.com/${username}|${username}>\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/pulls/${eventAttributes["PullRequestIid"]}|#${eventAttributes["PullRequestIid"]} ${eventAttributes["PullRequestTitle"]}>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "AddPullRequestReviewers": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
let reviewers = "";
for (let reviewer of JSON.parse(
eventAttributes["PullRequestReviewers"]
)) {
const reviewerUsername = await getUsername(reviewer);
reviewers += `<https://gitopia.com/${reviewerUsername}|${reviewerUsername}>, `;
}
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${username}|${username}> wants ${reviewers.slice(
0,
-2
)} to review the PR\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/pulls/${
eventAttributes["PullRequestIid"]
}|${repoOwnerName}/${repositoryName} #${
eventAttributes["PullRequestIid"]
}>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "SetPullRequestState": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
let message = "";
switch (eventAttributes["PullRequestState"]) {
case "MERGED": {
const headRepo = JSON.parse(
eventAttributes["PullRequestHead"]
);
const {
repoOwnerName: headRepoOwnerName,
repositoryName: headRepositoryName,
} = await getRepoDetails(headRepo.repositoryId);
const baseRepoBranch = JSON.parse(
eventAttributes["RepositoryBranch"]
);
message = `<https://gitopia.com/${username}|${username}> merged <https://gitopia.com/${headRepoOwnerName}/${headRepositoryName}/tree/${headRepo.branch}|${headRepoOwnerName}:${headRepositoryName}/${headRepo.branch}> to <https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}/tree/${baseRepoBranch.name}|${baseRepoBranch.name}>\n<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}/pulls/${eventAttributes["PullRequestIid"]}|${repoOwnerName}/${eventAttributes["RepositoryName"]} #${eventAttributes["PullRequestIid"]}>`;
break;
}
case "CLOSED":
message = `PR closed by <https://gitopia.com/${username}|${username}>\n<https://gitopia.com/${repoOwnerName}/${eventAttributes["RepositoryName"]}/pulls/${eventAttributes["PullRequestIid"]}|PR #${eventAttributes["PullRequestIid"]}>`;
break;
default:
message = "Unhandled state";
}
blocks.push(generateSectionBlock(message));
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "LinkPullRequestIssueByIid": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${username}|${username}> linked the PR to <https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["IssueIid"]}|#${eventAttributes["IssueIid"]}>\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/pulls/${eventAttributes["PullRequestIid"]}|${repoOwnerName}/${repositoryName} #${eventAttributes["PullRequestIid"]}>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "UnlinkPullRequestIssueByIid": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${username}|${username}> unlinked the PR from <https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["IssueIid"]}|#${eventAttributes["IssueIid"]}>\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/pulls/${eventAttributes["PullRequestIid"]}|${repoOwnerName}/${repositoryName} #${eventAttributes["PullRequestIid"]}>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "CreateComment": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
const urlPath =
eventAttributes["CommentParent"] === "COMMENT_PARENT_ISSUE"
? "issues"
: "pulls";
let section = generateSectionBlock(
`<https://gitopia.com/${username}|${username}> commented: "${eventAttributes["CommentBody"]}" on <https://gitopia.com/${repoOwnerName}/${repositoryName}/${urlPath}/${eventAttributes["CommentParentIid"]}|${repoOwnerName}/${repositoryName} #${eventAttributes["CommentParentIid"]}>`
);
const user = await getUser(eventAttributes["Creator"]);
if (user.avatarUrl) {
section.accessory = {
type: "image",
image_url: user.avatarUrl,
alt_text: "user avatar",
};
}
blocks.push(section);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "ForkRepository": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["ParentRepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
const forkedRepoOwnerName = await resolveAddress(
eventAttributes["RepositoryOwnerId"],
eventAttributes["RepositoryOwnerType"]
);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${username}|${username}> forked the repository <https://gitopia.com/${repoOwnerName}/${repositoryName}|${repoOwnerName}/${repositoryName}>\n<https://gitopia.com/${forkedRepoOwnerName}/${eventAttributes["RepositoryName"]}|${forkedRepoOwnerName}/${eventAttributes["RepositoryName"]}>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "CreateBounty": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${username}|${username}> created a bounty in <https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["BountyParentIid"]}|#${eventAttributes["BountyParentIid"]}>\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["BountyParentIid"]}/bounties|${repoOwnerName}/${repositoryName} #${eventAttributes["BountyParentIid"]}/bounties>`
)
);
let tokens = JSON.parse(eventAttributes["BountyAmount"]);
let tokenSection = {
type: "section",
fields: [
{
type: "mrkdwn",
text: "*Denom*",
},
{
type: "mrkdwn",
text: "*Amount*",
},
],
};
for (let token of tokens) {
tokenSection.fields.push(
{
type: "mrkdwn",
text: token.denom,
},
{
type: "mrkdwn",
text: token.amount,
}
);
}
blocks.push(tokenSection);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "UpdateBountyExpiry": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
const expiry = new Date(eventAttributes["BountyExpiry"] * 1000);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${username}|${username}> updated the bounty expiry to ${expiry.toLocaleDateString()} in <https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${
eventAttributes["BountyParentIid"]
}|#${
eventAttributes["BountyParentIid"]
}>\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${
eventAttributes["BountyParentIid"]
}/bounties|${repoOwnerName}/${repositoryName} #${
eventAttributes["BountyParentIid"]
}/bounties>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
case "CloseBounty": {
try {
const { repoOwnerName, repositoryName } = await getRepoDetails(
eventAttributes["RepositoryId"]
);
const username = await getUsername(eventAttributes["Creator"]);
blocks.push(
generateSectionBlock(
`<https://gitopia.com/${username}|${username}> closed a bounty in <https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["BountyParentIid"]}|#${eventAttributes["BountyParentIid"]}>\n<https://gitopia.com/${repoOwnerName}/${repositoryName}/issues/${eventAttributes["BountyParentIid"]}/bounties|${repoOwnerName}/${repositoryName} #${eventAttributes["BountyParentIid"]}/bounties>`
)
);
} catch (error) {
console.error(`Error getting repository details: ${error}`);
}
break;
}
default:
// console.log(`Unsupported action ${eventAttributes["action"]}`);
}
const keysToCheck = ["RepositoryOwnerId", "RepositoryOwnerType"];
const keysExist = keysToCheck.every((key) =>
eventAttributes.hasOwnProperty(key)
);
let repoOwnerName = "";
if (keysExist) {
repoOwnerName = await resolveAddress(
eventAttributes["RepositoryOwnerId"],
eventAttributes["RepositoryOwnerType"]
);
}
postToSlack(web, subscriptions, repoOwnerName, blocks);
}
}
});
ws.on("error", (error) => {
console.error(`WebSocket error: ${error}`);
ws.close();
});
ws.on("close", (code, reason) => {
console.log(
`WebSocket connection closed. Code: ${code}, Reason: ${reason}`
);
setTimeout(connect, 1000);
});
}
let subscriptions = {};
connect();
const app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
const server = app.listen(3000, () => {
console.log(
"Express server listening on port %d in %s mode",
server.address().port,
app.settings.env
);
});
app.post("/", (req, res) => {
let message = "";
const text = req.body.text;
const args = text.split(" ");
if (args.length !== 2) {
message = "Invalid command";
}
const channel = req.body.channel_name;
if (!subscriptions[channel]) {
subscriptions[channel] = [];
}
switch (args[0]) {
case "subscribe": {
if (args[1] === "list") {
message = `Active subscriptions: ${subscriptions[channel]}`;
} else {
const index = subscriptions[channel].indexOf(args[1]);
if (index !== -1) {
message = `Already subscribed to ${args[1]}`;
} else {
subscriptions[channel].push(args[1]);
message = `Subscribed to ${args[1]}`;
}
}
break;
}
case "unsubscribe": {
const index = subscriptions[channel].indexOf(args[1]);
if (index !== -1) {
subscriptions[channel].splice(index, 1);
message = `Unsubscribed to ${args[1]}`;
} else {
message = `Not subscribing to ${args[1]} already`;
}
break;
}
default:
message = "Invalid command";
}
let data = {
response_type: "ephemeral",
text: message,
};
res.json(data);
});