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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
/* eslint-disable @typescript-eslint/no-unused-vars */
import { GuildMember, RoleResolvable } from 'discord.js';
import { BushClient, BushGuild, BushUser, BushUserResolvable, ModLogType } from '../..';
interface BushPunishmentOptions {
reason?: string;
moderator: BushUserResolvable;
}
interface BushTimedPunishmentOptions extends BushPunishmentOptions {
duration?: number;
}
interface BushPunishmentRoleOptions extends BushTimedPunishmentOptions {
role: RoleResolvable;
}
type PunishmentResponse = 'success' | 'error creating modlog entry' | 'failed to dm';
type WarnResponse = PunishmentResponse;
type PunishmentRoleResponse = PunishmentResponse;
type MuteResponse =
| PunishmentResponse
| 'missing permissions'
| 'no mute role'
| 'invalid mute role'
| 'mute role not manageable'
| 'error giving mute role'
| 'error creating mute entry';
type UnmuteResponse = PunishmentResponse;
type KickResponse = PunishmentResponse | 'missing permissions' | 'error kicking';
interface BushBanOptions extends BushTimedPunishmentOptions {
deleteDays?: number;
duration?: number;
}
type BanResponse = PunishmentResponse;
export class BushGuildMember extends GuildMember {
public declare readonly client: BushClient;
public declare guild: BushGuild;
public declare user: BushUser;
public constructor(client: BushClient, data: unknown, guild: BushGuild) {
super(client, data, guild);
}
public async warn(options: BushPunishmentOptions): Promise<{ result: WarnResponse; caseNum: number }> {
//add modlog entry
const { log, caseNum } = await this.client.util
.createModLogEntry(
{
type: ModLogType.WARN,
user: this,
moderator: options.moderator,
reason: options.reason,
guild: this.guild
},
true
)
.catch(() => null);
if (!log) return { result: 'error creating modlog entry', caseNum: null };
//dm user
const ending = this.guild.getSetting('punishmentEnding');
const dmSuccess = await this.send({
content: `You have been warned in **${this.guild}** for **${options.reason || 'No reason provided'}**.${
ending ? `\n\n${ending}` : ''
}`
}).catch(() => null);
if (!dmSuccess) return { result: 'failed to dm', caseNum };
return { result: 'success', caseNum };
}
public punishRole(options: BushPunishmentRoleOptions): Promise<PunishmentRoleResponse> {
throw 'not implemented';
}
public async mute(options: BushTimedPunishmentOptions): Promise<MuteResponse> {
//checks
if (!this.guild.me.permissions.has('MANAGE_ROLES')) return 'missing permissions';
const muteRoleID = await this.guild.getSetting('muteRole');
if (!muteRoleID) return 'no mute role';
const muteRole = this.guild.roles.cache.get(muteRoleID);
if (!muteRole) return 'invalid mute role';
if (muteRole.position >= this.guild.me.roles.highest.position || muteRole.managed) return 'mute role not manageable';
const moderator = this.client.users.cache.get(this.client.users.resolveID(options.moderator));
//add role
const muteSuccess = await this.roles
.add(muteRole, `[Mute] ${moderator.tag} | ${options.reason || 'No reason provided.'}`)
.catch(() => null);
if (!muteSuccess) return 'error giving mute role';
//add modlog entry
const modlog = await this.client.util
.createModLogEntry({
type: options.duration ? ModLogType.TEMP_MUTE : ModLogType.PERM_MUTE,
user: this,
moderator: options.moderator,
reason: options.reason,
duration: options.duration,
guild: this.guild
})
.catch(() => null);
if (!modlog) return 'error creating modlog entry';
// add punishment entry so they can be unmuted later
const mute = await this.client.util
.createPunishmentEntry({
type: 'mute',
user: this,
guild: this.guild,
duration: options.duration,
modlog: modlog.id
})
.catch(() => null);
if (!mute) return 'error creating mute entry';
//dm user
const ending = this.guild.getSetting('punishmentEnding');
const dmSuccess = await this.send({
content: `You have been muted ${
options.duration ? 'for ' + this.client.util.humanizeDuration(options.duration) : 'permanently'
} in **${this.guild}** for **${options.reason || 'No reason provided'}**.${ending ? `\n\n${ending}` : ''}`
}).catch(() => null);
if (!dmSuccess) return 'failed to dm';
return 'success';
}
public async unmute(options: BushPunishmentOptions): Promise<UnmuteResponse> {
throw 'not implemented';
}
public async bushKick(options: BushPunishmentOptions): Promise<KickResponse> {
//checks
if (!this.guild.me.permissions.has('KICK_MEMBERS') || !this.kickable) return 'missing permissions';
//dm user
const ending = this.guild.getSetting('punishmentEnding');
const dmSuccess = await this.send({
content: `You have been kicked from **${this.guild}** for **${options.reason || 'No reason provided'}**.${
ending ? `\n\n${ending}` : ''
}`
}).catch(() => null);
//Kick
const kickSuccess = await this.kick().catch(() => null);
if (!kickSuccess) return 'error kicking';
//add modlog entry
const modlog = await this.client.util
.createModLogEntry({
type: ModLogType.KICK,
user: this,
moderator: options.moderator,
reason: options.reason,
guild: this.guild
})
.catch(() => null);
if (!modlog) return 'error creating modlog entry';
if (!dmSuccess) return 'failed to dm';
return 'success';
}
public async bushBan(options?: BushBanOptions): Promise<BanResponse> {
throw 'not implemented';
}
public isOwner(): boolean {
return this.client.isOwner(this);
}
public isSuperUser(): boolean {
return this.client.isSuperUser(this);
}
}
|