-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.js
79 lines (66 loc) · 1.83 KB
/
util.js
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
const axios = require("axios");
async function getUser(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;
}
}
return { username: address, avatarUrl: "" };
}
async function getDAO(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;
} else {
throw new Error("Unable to retrieve DAO name");
}
}
const resolveAddress = async (address, type) => {
if (type === "USER") {
const user = await getUser(address);
return user.username;
}
const dao = await getDAO(address);
return dao.name;
};
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 setEmbedAuthor = (embed, user) => {
if (user.avatarUrl !== "") {
embed.setAuthor({
name: `${user.username}`,
url: `https://gitopia.com/${user.username}`,
iconURL: `${user.avatarUrl}`,
});
} else {
embed.setAuthor({
name: `${user.username}`,
url: `https://gitopia.com/${user.username}`,
});
}
};
module.exports = {
getUser,
getDAO,
resolveAddress,
getRepoDetails,
setEmbedAuthor,
};