1 |
const { lockAll } = require('../commands/lockall'); |
2 |
|
3 |
module.exports = class AntiRaid { |
4 |
constructor() { |
5 |
this.joins = 0; |
6 |
} |
7 |
|
8 |
load(guild) { |
9 |
this.maxJoins = app.config.props[guild.id].raid.max_joins; |
10 |
this.included = app.config.props[guild.id].raid.included; |
11 |
this.time = app.config.props[guild.id].raid.time; |
12 |
this.enabled = app.config.props[guild.id].raid.enabled; |
13 |
} |
14 |
|
15 |
async start(member) { |
16 |
if (member.user.bot) { |
17 |
console.log('bot'); |
18 |
return; |
19 |
} |
20 |
|
21 |
await this.load(member.guild); |
22 |
|
23 |
if (!this.enabled) |
24 |
return; |
25 |
|
26 |
console.log('Joined'); |
27 |
|
28 |
setTimeout(() => { |
29 |
this.joins = 0; |
30 |
console.log('RAID reset'); |
31 |
}, this.time); |
32 |
|
33 |
this.joins++; |
34 |
|
35 |
if (this.joins >= this.maxJoins) { |
36 |
let role = member.guild.roles.cache.find(r => r.id === app.config.props[member.guild.id].gen_role); |
37 |
let channels = member.guild.channels.cache.filter(channel => this.included.indexOf(channel.id) !== -1); |
38 |
|
39 |
await lockAll(role, channels, true); |
40 |
} |
41 |
} |
42 |
}; |