-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutil.js
More file actions
109 lines (92 loc) · 2.37 KB
/
util.js
File metadata and controls
109 lines (92 loc) · 2.37 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
const axios = require("axios");
async function getUser(address) {
const response = await axios.get(
`${process.env.GITOPIA_API_URL}/user/${address}`
);
if (response.data) {
return response.data.User;
}
return null;
}
async function getUsername(address) {
const response = await axios.get(
`${process.env.GITOPIA_API_URL}/user/${address}`
);
// Ensure the response data contains a username
if (response.data && response.data.User.username) {
if (response.data.User.username !== "") {
return response.data.User.username;
}
}
return address;
}
async function getDAOname(address) {
const response = await axios.get(
`${process.env.GITOPIA_API_URL}/dao/${address}`
);
// Ensure the response data contains a name
if (response.data && response.data.dao.name) {
return response.data.dao.name;
} else {
throw new Error("Unable to retrieve DAO name");
}
}
const resolveAddress = async (address, type) => {
if (type === "USER") {
return await getUsername(address);
}
return await getDAOname(address);
};
const getRepoDetails = async (repositoryId) => {
const response = await axios.get(
`${process.env.GITOPIA_API_URL}/repository/${repositoryId}`
);
const repositoryOwnerId = response.data.Repository.owner.id;
const repositoryOwnerType = response.data.Repository.owner.type;
const repositoryName = response.data.Repository.name;
const repoOwnerName = await resolveAddress(
repositoryOwnerId,
repositoryOwnerType
);
return { repoOwnerName, repositoryName };
};
const generateSectionBlock = (message) => {
return {
type: "section",
text: {
type: "mrkdwn",
text: message,
},
};
};
const postToSlack = async (web, subscriptions, repoOwnerName, blocks) => {
for (let channel in subscriptions) {
if (
subscriptions[channel].some(
(item) =>
item === "*" || item.toLowerCase() === repoOwnerName.toLowerCase()
)
) {
// Send the message to Slack
if (blocks.length > 0) {
try {
await web.chat.postMessage({
channel,
blocks: blocks,
});
} catch (e) {
console.error("Error sending message to Slack:", e);
}
}
}
}
};
module.exports = {
getUser,
getUsername,
getDAOname,
resolveAddress,
getRepoDetails,
generateSectionBlock,
postToSlack,
};