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 |
} |
13 |
|
14 |
async start(member) { |
15 |
await this.load(member.guild); |
16 |
|
17 |
console.log('Joined'); |
18 |
|
19 |
setTimeout(() => { |
20 |
this.joins = 0; |
21 |
console.log('RAID reset'); |
22 |
}, this.time); |
23 |
|
24 |
this.joins++; |
25 |
|
26 |
if (this.joins >= this.maxJoins) { |
27 |
let role = member.guild.roles.cache.find(r => r.id === app.config.props[member.guild.id].gen_role); |
28 |
let channels = member.guild.channels.cache.filter(channel => this.included.indexOf(channel.id) !== -1); |
29 |
|
30 |
await lockAll(role, channels, true); |
31 |
} |
32 |
} |
33 |
}; |