/[sudobot]/trunk/src/AntiRaid.js
ViewVC logotype

Annotation of /trunk/src/AntiRaid.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12 - (hide annotations)
Mon Jul 29 17:28:13 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: text/javascript
File size: 1044 byte(s)
Release fixup
1 rakin 10 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 rakin 12 this.enabled = app.config.props[guild.id].raid.enabled;
13 rakin 10 }
14    
15     async start(member) {
16     await this.load(member.guild);
17    
18 rakin 12 if (!this.enabled)
19     return;
20    
21 rakin 10 console.log('Joined');
22    
23     setTimeout(() => {
24     this.joins = 0;
25     console.log('RAID reset');
26     }, this.time);
27    
28     this.joins++;
29    
30     if (this.joins >= this.maxJoins) {
31     let role = member.guild.roles.cache.find(r => r.id === app.config.props[member.guild.id].gen_role);
32     let channels = member.guild.channels.cache.filter(channel => this.included.indexOf(channel.id) !== -1);
33    
34     await lockAll(role, channels, true);
35     }
36     }
37     };

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26