1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2022 OSN Inc. |
5 |
|
|
* |
6 |
|
|
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
|
|
* under the terms of the GNU Affero General Public License as published by |
8 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* SudoBot is distributed in the hope that it will be useful, but |
12 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU Affero General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU Affero General Public License |
17 |
|
|
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
|
|
import { GuildMember } from "discord.js"; |
21 |
|
|
import { Request } from "express"; |
22 |
|
|
import MessageEmbed from "../client/MessageEmbed"; |
23 |
|
|
import Service from "../utils/structures/Service"; |
24 |
|
|
import { hasConfig } from "../utils/util"; |
25 |
|
|
|
26 |
|
|
export default class Verification extends Service { |
27 |
|
|
async success(member: GuildMember, req: Request) { |
28 |
|
|
if (!hasConfig(this.client, member.guild.id, "verification")) |
29 |
|
|
return; |
30 |
|
|
|
31 |
|
|
await member.roles.remove(this.client.config.props[member.guild.id].verification.role); |
32 |
|
|
|
33 |
|
|
try { |
34 |
|
|
await member.send({ |
35 |
|
|
embeds: [ |
36 |
|
|
new MessageEmbed({ |
37 |
|
|
author: { |
38 |
|
|
name: member.guild.name, |
39 |
|
|
iconURL: member.guild.iconURL() ?? undefined, |
40 |
|
|
}, |
41 |
|
|
title: "Thanks for verifying!", |
42 |
|
|
description: "The verification was completed successfully!", |
43 |
|
|
timestamp: new Date() |
44 |
|
|
}) |
45 |
|
|
], |
46 |
|
|
}); |
47 |
|
|
} |
48 |
|
|
catch (e) { |
49 |
|
|
console.log(e); |
50 |
|
|
} |
51 |
|
|
|
52 |
|
|
const { default: UnverifiedMember } = await import('../models/UnverifiedMember'); |
53 |
|
|
|
54 |
|
|
const data = await UnverifiedMember.findOne({ |
55 |
|
|
guild_id: member.guild.id, |
56 |
|
|
user_id: member.id, |
57 |
|
|
status: 'pending' |
58 |
|
|
}); |
59 |
|
|
|
60 |
|
|
await data?.set('status', 'done'); |
61 |
|
|
await data?.set('ip', req.ip); |
62 |
|
|
await data?.set('user_agent', req.get('User-Agent')); |
63 |
|
|
await data?.save(); |
64 |
|
|
} |
65 |
|
|
|
66 |
|
|
async start(member: GuildMember) { |
67 |
|
|
const { default: UnverifiedMember } = await import('../models/UnverifiedMember'); |
68 |
|
|
|
69 |
|
|
await UnverifiedMember.create({ |
70 |
|
|
guild_id: member.guild.id, |
71 |
|
|
user_id: member.id, |
72 |
|
|
status: 'pending', |
73 |
|
|
createdAt: new Date() |
74 |
|
|
}); |
75 |
|
|
|
76 |
|
|
await member.roles.add(this.client.config.props[member.guild.id].verification.role); |
77 |
|
|
|
78 |
|
|
const url = `${this.client.config.props.global.cp_host}/challenge/v1/verify/?guild_id=${member.guild.id}`; |
79 |
|
|
|
80 |
|
|
try { |
81 |
|
|
await member.send({ |
82 |
|
|
embeds: [ |
83 |
|
|
new MessageEmbed({ |
84 |
|
|
author: { |
85 |
|
|
name: member.guild.name, |
86 |
|
|
iconURL: member.guild.iconURL() ?? undefined, |
87 |
|
|
}, |
88 |
|
|
title: "Verification Required!", |
89 |
|
|
description: `Hey ${member.nickname ?? member.user.username}, the server **${member.guild.name}** requires verification!\nTo verify yourself, simply go to the verification URL given below and you might be asked to solve some captcha.\n\nHave a nice day,\n*${member.guild.name} Staff*`, |
90 |
|
|
timestamp: new Date(), |
91 |
|
|
fields: [ |
92 |
|
|
{ |
93 |
|
|
name: "Verification URL", |
94 |
|
|
value: url |
95 |
|
|
} |
96 |
|
|
], |
97 |
|
|
url |
98 |
|
|
}) |
99 |
|
|
] |
100 |
|
|
}); |
101 |
|
|
} |
102 |
|
|
catch (e) { |
103 |
|
|
console.log(e); |
104 |
|
|
} |
105 |
|
|
} |
106 |
|
|
} |