-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
130 lines (69 loc) · 2.76 KB
/
index.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
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
const fetch = require("node-fetch");
const Discord = require("discord.js");
const client = new Discord.Client();
const webhook = new Discord.WebhookClient(
process.env.WEBHOOKID,
process.env.SECRET
);
//Initialize express
const express = require("express");
const bodyParser = require("body-parser");
async function f(id) {
const response = await fetch(`https://discord.com/api/v9/users/${id}`, {
headers: {
Authorization: `Bot ${process.env.TOKEN}`, //put your Bot's token in enviornment variables and keep them safe.
},
});
return await response.json();//returns reponse Status : 403 = Unauthorised
}
//Initialize app
const app = express();
const PORT = 4000;
app.get("/" , (req,res)=>{
res.send("ok")
})
app.use(bodyParser.json());
app.post("/voted", async (req, res) => {
console.log(req.body);
//your botlist bot token
if (req.header("Authorization") != process.env.DISCORDBOTLIST) {
return res.status("401").end();
}
//The following 9 lines are to fetch avatar of the voter.
const usera = await f(req.body.id);
function getAvatarURL(usera, avatar, options) {
if (!avatar) return null;
options.format = options.format || "webp";
if (options.dynamic)
options.format = avatar.startsWith("a_") ? "gif" : options.format;
return `https://cdn.discordapp.com/avatars/${usera}/${avatar}.${options.format}${options.size ? `?size=${options.size}` : ""}`;
}
let avatar = getAvatarURL(usera.id , usera.avatar,{ dynamic: true });
//Create an embed
const embed = new Discord.MessageEmbed()
.setAuthor("Thanks for voting !", avatar)
.setDescription(`» ${usera.username}#${usera.discriminator} has voted for <bot-name> on [DISCORD BOT LIST](https://discordbotlist.com)! \n» You can vote again after : **12 hours**. \n» Voting link : [Click here](https://discordbotlist.com/bots/<bot-name>/upvote) \n» You have got the <@&role-id> role! `)
.setColor("#738ADB")
.setTimestamp()
.setThumbnail("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRKOZTeY8UhXGZcjfXmZTZjCSpniGx-wj-EjSzUeqlQiXMCrolhKi3THhU&s=10");
try {
//I am rewarding users with a role ,you can do something different also
await rolemanager("SERVER_ID" , req.body.id ,"ROLE_ID" , "PUT" );
await webhook.send(embed);
} catch (e) {
console.log(e);
}
console.log(
`${req.body.id} ${usera.username} has voted for Izumi#9987 on discordbotlist.com`
);
res.status(200).end();
});
app.listen(PORT, () => console.log(`🚀 | Server running on port ${PORT} !`));
const rolemanager = async(guild,user , role , action )=>{
await fetch(`https://discord.com/api/v9/guilds/${guild}/members/${user}/roles/${role}` ,{
method : action,
headers : {
Authorization : `Bot ${process.env.TOKEN}`
}
})
}