-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCaptcha.py
227 lines (208 loc) · 8.87 KB
/
Captcha.py
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
import discord
from discord.ext import commands
import asyncio
import aiosqlite
class verificationview(discord.ui.View):
def __init__(self, client, ctx):
super().__init__(timeout=30)
self.client = client
self.ctx = ctx
@discord.ui.button(
label="toggle", style=discord.ButtonStyle.green, custom_id="toggle"
)
async def toggle(self, button, interaction):
async with aiosqlite.connect("databases/verification.db") as db:
data = await db.execute(
"SELECT * FROM verification WHERE ServerID = ?", (self.ctx.guild.id,)
)
data = await data.fetchall()
if data:
if data[0][1] == 0:
await db.execute(
"UPDATE verification SET ServerToggle = 1 WHERE ServerID = ?",
(self.ctx.guild.id,),
)
await db.commit()
await db.close()
await interaction.response.send_message(
"verification is now enabled"
)
elif data[0][1] == 1:
await db.execute(
"UPDATE verification SET ServerToggle = 0 WHERE ServerID = ?",
(self.ctx.guild.id,),
)
await db.commit()
await db.close()
await interaction.response.send_message(
"verification is now disabled"
)
else:
await db.execute(
"INSERT INTO verification VALUES(?, ?, ?, ?, ?)",
(self.ctx.guild.id, 1, 0, 0, 0),
)
await db.commit()
await db.close()
await interaction.response.send_message("verification is now enabled")
@discord.ui.button(
label="set channel", style=discord.ButtonStyle.green, custom_id="set channel"
)
async def set_channel(self, button, interaction):
await interaction.response.send_message("Enter the channel")
def check(m):
return m.channel == self.ctx.channel and m.author == self.ctx.author
channel = await self.client.wait_for("message", check=check)
channel = channel.content
channel = self.ctx.guild.get_channel(int(channel[2:-1]))
async with aiosqlite.connect("databases/verification.db") as db:
data = await db.execute(
"SELECT * FROM verification WHERE ServerID = ?", (self.ctx.guild.id,)
)
data = await data.fetchall()
if data:
await db.execute(
"UPDATE verification SET verifyChannel = ? WHERE ServerID = ?",
(channel.id, self.ctx.guild.id),
)
await db.commit()
await db.close()
await interaction.followup.send(
f"verification channel is now {channel.mention}"
)
else:
await db.execute(
"INSERT INTO verification VALUES(?, ?, ?, ?, ?)",
(self.ctx.guild.id, 0, channel.id, 0, 0),
)
await db.commit()
await db.close()
await interaction.followup.send(
f"verification channel is now {channel.mention}"
)
@discord.ui.button(
label="set code", style=discord.ButtonStyle.green, custom_id="set code"
)
async def set_code(self, button, interaction):
await interaction.response.send_message("Enter the code")
def check(m):
return m.channel == self.ctx.channel and m.author == self.ctx.author
code = await self.client.wait_for("message", check=check)
code = code.content
async with aiosqlite.connect("databases/verification.db") as db:
data = await db.execute(
"SELECT * FROM verification WHERE ServerID = ?", (self.ctx.guild.id,)
)
data = await data.fetchall()
if data:
await db.execute(
"UPDATE verification SET verifycode = ? WHERE ServerID = ?",
(code, self.ctx.guild.id),
)
await db.commit()
await db.close()
await interaction.followup.send(f"verification code is now {code}")
else:
await db.execute(
"INSERT INTO verification VALUES(?, ?, ?, ?, ?)",
(self.ctx.guild.id, 0, 0, code, 0),
)
await db.commit()
await db.close()
await interaction.followup.send(f"verification code is now {code}")
@discord.ui.button(
label="set role", style=discord.ButtonStyle.green, custom_id="set role"
)
async def set_role(self, button, interaction):
await interaction.response.send_message("Enter the role")
def check(m):
return m.channel == self.ctx.channel and m.author == self.ctx.author
role = await self.client.wait_for("message", check=check)
role = role.content
# if role is above the bot
if (
self.ctx.guild.me.top_role.position
< self.ctx.guild.get_role(int(role[3:-1])).position
):
await interaction.followup.send("The role is above the bot")
else:
role = self.ctx.guild.get_role(int(role[3:-1]))
async with aiosqlite.connect("databases/verification.db") as db:
data = await db.execute(
"SELECT * FROM verification WHERE ServerID = ?",
(self.ctx.guild.id,),
)
data = await data.fetchall()
if data:
await db.execute(
"UPDATE verification SET verifyedRole = ? WHERE ServerID = ?",
(role.id, self.ctx.guild.id),
)
await db.commit()
await db.close()
await interaction.followup.send(
f"verification role is now {role.mention}"
)
else:
await db.execute(
"INSERT INTO verification VALUES(?, ?, ?, ?, ?)",
(self.ctx.guild.id, 0, 0, 0, role.id),
)
await db.commit()
await db.close()
await interaction.followup.send(
f"verification role is now {role.mention}"
)
class Captcha(commands.Cog):
def __init__(self, client):
self.client = client
@commands.command()
@commands.is_owner()
async def verification(self, ctx):
view = verificationview(self.client, ctx)
em = discord.Embed(title="verification Settings:")
message = await ctx.send(embed=em, view=view)
res = await view.wait()
if res:
for i in view.children:
i.disabled = True
return await message.edit(view=view)
@commands.Cog.listener()
async def on_message(self, message):
if message.author.bot:
return
async with aiosqlite.connect("databases/verification.db") as db:
data = await db.execute(
"SELECT * FROM verification WHERE ServerID = ?", (message.guild.id,)
)
data = await data.fetchall()
if data:
if data[0][1] == 1:
if data[0][2] == message.channel.id:
if data[0][3] == message.content:
await message.author.add_roles(
message.guild.get_role(data[0][4])
)
await message.delete()
await message.author.send(
f"Welcome to {message.guild.name} {message.author.mention}"
)
else:
await message.delete()
# dm user that he entered the wrong code
await message.author.send(
f"You entered the wrong verification code on {message.guild.name}"
)
else:
return
else:
return
# @commands.command()
# @commands.is_owner()
# async def maketableverification(self, ctx):
# async with aiosqlite.connect("databases/verification.db") as db:
# await db.execute("CREATE TABLE verification(ServerID int, ServerToggle, verifyChannel int, verifycode int, verifyedRole int)")
# await db.commit()
# await db.close()
def setup(client):
client.add_cog(Captcha(client))