This repository was archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.js
More file actions
146 lines (131 loc) · 5.81 KB
/
Copy pathindex.js
File metadata and controls
146 lines (131 loc) · 5.81 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
//bot invite link: https://discordapp.com/oauth2/authorize?client_id=666309507105816586&scope=bot&permissions=10304
//local vs hosted switch
if (!process.env.hasOwnProperty("TOKEN")){
process.env = require("./env.json");
}
const Scanner = require('./scanner.js');
const Discord = require('discord.js');
require('./server.js')
//configure Discord
const client = new Discord.Client();
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}`);
client.user.setActivity('for QR Codes | tag me!', { type: 'WATCHING' })
});
client.on('message', async function(msg){
//don't scan dms or self messages
if (msg.channel.type == "dm" || msg.author.id == client.user.id){
return;
}
//if tagged, present about info
//this does not stop the message from being scanned
if (msg.content.includes(client.user.id)){
let uptimestr;
{
let diff = client.uptime;
let s = Math.floor(diff / 1000);
let m = Math.floor(s / 60);
s = s % 60;
let h = Math.floor(m / 60);
m = m % 60;
let d = Math.floor(h / 24);
h = h % 24;
uptimestr = `${d} days ${h} hours ${m} minutes ${s} seconds`;
}
const embed = new Discord.RichEmbed()
.setTitle(`About ${client.user.username}`)
.setAuthor(`${client.user.username} | Ravbug Software`, client.user.avatarURL)
.setColor(msg.member.displayHexColor)
.setDescription("I find QR codes in messages and delete them! You must give me the __Manage Messages__ and __Add Reactions__ permissions so that I can do my job most effectively.")
.setFooter("© Ravbug, released open source on GitHub.", "https://avatars2.githubusercontent.com/u/22283943")
.setThumbnail(client.user.avatarURL)
.setTimestamp()
.addField("Hey! You missed one!", "If I miss a QR Code, you can add any reaction to that message and I will check it again. If I believe the message is clean, I will react with ✅")
.addField("Invite me!", `Use [my invite link](https://discordapp.com/oauth2/authorize?client_id=${client.user.id}&scope=bot&permissions=10304) to add me to your server! Please give me all of the perms listed on the invite link page.`)
.addField("My Website", "Visit [My Website](https://qreaper.glitch.me) for information, including instructions for self-hosting me.")
.addField("Statistics", `Uptime ${uptimestr}\nProtecting ${client.guilds.size} servers\nPing: ${client.ping}ms`);
msg.channel.send({embed});
}
let deleted = await processMessage(msg);
//if not deleted, observe it for reactions to allow uers
//to have a message manually scanned
if (!deleted){
msg.awaitReactions((reaction, user) => {
//the reaction filter
//in this case accept all reactions
return true;
},{max:1,time:300000,errors:[]}).then(async function(collected){
let deleted = await processMessage(msg);
//if message is clean
if (!deleted && (msg.attachments.array().length > 0 || msg.embeds.length > 0)){
msg.react("✅").catch(()=>{});
}
});
}
});
async function processMessage(msg){
let removed = false;
if (msg.attachments.array().length > 0){
removed = await processAttachments(msg);
return true;
}
if (!removed && msg.embeds.length > 0){
return await processEmbeds(msg);
}
}
/**
* Process a message's attachments and delete the message if it contains QR codes
* @param {Discord.Message} msg the message object to check
*/
async function processAttachments(msg){
for (let attachment of msg.attachments.array()){
let res = await Scanner.scanURL(attachment.url);
if (res){
msg.channel.send(deleteMsg(msg)).catch(()=>{});
return true;
}
}
}
/**
* Process a message's embeds and delete the message if it contains QR codes
* @param {Discord.Message} msg the message object to check
*/
async function processEmbeds(msg){
for (let embed of msg.embeds){
let res = await Scanner.scanURL(embed.url);
if (res){
msg.channel.send(deleteMsg(msg)).catch(()=>{});
return true;
}
}
}
/**
* Deletes an offending message and sends a message stating that it worked
* @param {Discord.Message} message
*/
function deleteMsg(message){
//play a mad-libs game to assemble the response
const verbs = ["sneak","pass","smuggle","throw","drive","slip"];
const adjectives = ["fastest","quickest","most skillful", "acclaimed"];
const adjectives2 = ["type","stuff","garbage"];
const places = ["land","world","country","sea","server","internet"];
const verbs2 = ["spott","destroy","snip","sniff","roast","eat"]
const greetings = ["Hey", "Oy", "Whoa", "Stop"];
const affirmations = ["like","enjoy","allow","take","upvote","accept"]
const directions = ["past","through","under"];
const responses = [
`${rand(greetings)} <@${message.author.id}>! That's a QR Code! We don't ${rand(affirmations)} that ${rand(adjectives2)} around here!`,
`<@${message.author.id}> thought they could ${rand(verbs)} QR codes ${rand(directions)} me, but no dice.`,
`<@${message.author.id}>, I'm the ${rand(adjectives)} QR code ${rand(verbs2)}er in the ${rand(places)}, and I just ${rand(verbs2)}ed yours.`,
];
message.delete().catch(() => {message.channel.send("(Hey mods! I need perms to delete that!)").catch(()=>{})});
return responses[Math.floor(Math.random()*responses.length)];
}
/**
* @returns Returns a random element in an array
* @param {[]} array array to use
*/
function rand(array){
return array[Math.floor(Math.random()*array.length)];
}
client.login(process.env.TOKEN).then(delete process.env.TOKEN);