-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbirthday.py
464 lines (438 loc) · 18 KB
/
birthday.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
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
from discord.ext import commands, tasks
import discord
import asyncio
import os
import json
import sqlite3
from dotenv import load_dotenv
import requests
from datetime import datetime, time
from time import sleep
load_dotenv()
class Birthday(commands.Cog):
"""Birthday commands."""
def __init__(self, client):
self.client = client
self.birthday_announcments.start()
@commands.command(hidden=True)
@commands.is_owner()
async def force_add_user(self, ctx, user: discord.Member, day: int, month: int):
"""Adds a user to the birthday list."""
if day > 31 or day < 1 or month > 12 or month < 1:
await ctx.send("Invalid date.")
return
con = sqlite3.connect("databases/user_brithdays.db")
cur = con.cursor()
cur.execute("SELECT * FROM birthday WHERE user_id = ?", (user.id,))
if cur.fetchone() is not None:
await ctx.send("User already exists.")
return
cur.execute("INSERT INTO birthday VALUES (?, ?, ?)", (user.id, day, month))
con.commit()
con.close()
await ctx.send("Added user to birthday list.")
@commands.command(hidden=True)
@commands.is_owner()
async def makeservertablebirthday(self, ctx):
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
cur.execute(
"CREATE TABLE server(ServerID int, Servertoggle, birthdaychannel int,birthdaymessage text)"
)
con.commit()
con.close()
con = sqlite3.connect("databases/user_brithdays.db")
cur = con.cursor()
cur.execute("CREATE TABLE birthday(UsersID int, birthday)")
con.commit()
con.close()
await ctx.send("Done")
#
# @commands.command(hidden = True)
# @commands.is_owner()
# async def setallbithday(self,ctx):
# for i in self.client.guilds:
# con = sqlite3.connect("databases/server_brithdays.db")
# cur = con.cursor()
# cur.execute("INSERT INTO server(ServerID, Servertoggle,birthdaychannel) VALUES(?, ?,?)", (i.id, False,None))
# await ctx.send(f"{i} has been set")
# con.commit()
# con.close()
@commands.Cog.listener()
async def on_guild_join(self, guild):
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
cur.execute(
"INSERT INTO server(ServerID, Servertoggle) VALUES(?, ?)", (guild.id, False)
)
con.commit()
con.close()
@commands.command(help=" enable and disable Birthday")
@commands.has_permissions(administrator=True)
async def toggle_birthday(self, ctx):
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
datas = cur.execute("SELECT * FROM server WHERE ServerID=?", (ctx.guild.id,))
datas = cur.fetchall()
toggle = datas[0][1]
if toggle == True:
cur.execute(
"UPDATE server SET Servertoggle = ? WHERE ServerID=?",
(
False,
ctx.guild.id,
),
)
con.commit()
con.close()
await ctx.send("Birthday reminders has been turned off")
if toggle == False:
cur.execute(
"UPDATE server SET Servertoggle = ? WHERE ServerID=?",
(
True,
ctx.guild.id,
),
)
con.commit()
con.close()
await ctx.send("Birthday reminders has been turrned on")
@commands.slash_command(
name="toggle_birthday", description="enable and disable Birthday"
)
@commands.has_permissions(administrator=True)
async def _toggle_birthday(self, ctx):
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
datas = cur.execute("SELECT * FROM server WHERE ServerID=?", (ctx.guild.id,))
datas = cur.fetchall()
toggle = datas[0][1]
if toggle == True:
cur.execute(
"UPDATE server SET Servertoggle = ? WHERE ServerID=?",
(
False,
ctx.guild.id,
),
)
con.commit()
con.close()
await ctx.respond("Birthday reminders has been turned off")
if toggle == False:
cur.execute(
"UPDATE server SET Servertoggle = ? WHERE ServerID=?",
(
True,
ctx.guild.id,
),
)
con.commit()
con.close()
await ctx.respond("Birthday reminders has been turrned on")
await ctx.followup.send(
"If you like the bot, please consider voting for it at https://top.gg/bot/902240397273743361 \n It helps a lot! :D",
ephemeral=True,
)
@commands.slash_command(
name="setbirthday", description="Set your birthday use day then month"
)
async def setbirthday__slash(self, ctx, day: int, month: int):
tocken = os.getenv("TOPGG_TOKEN")
api = requests.get(
f"https://top.gg/api/bots/902240397273743361/check?userId={ctx.author.id}",
headers={"Authorization": tocken, "Content-Type": "application/json"},
)
data = api.json()
print(api)
print(data)
voted = data["voted"]
# if the api does not return a 200 status code
if api.status_code != 200:
voted = 1
print("api error")
if voted == 0:
await ctx.respond(
"You need to have voted for simplex in the last 24 hours to set your birthday. Please vote and then try again, you can vote here: https://top.gg/bot/902240397273743361/vote",
ephemeral=True,
)
return
else:
if day > 31 or day < 1 or month > 12 or month < 1:
await ctx.respond("Invalid date.")
else:
# force 2 digit date
if day < 10:
day = f"0{day}"
if month < 10:
month = f"0{month}"
con = sqlite3.connect("databases/user_brithdays.db")
cur = con.cursor()
data = cur.execute(
"SELECT * FROM birthday WHERE UsersID=?", (ctx.author.id,)
)
data = cur.fetchall()
if data == []:
cur.execute(
"INSERT INTO birthday(UsersID, birthday) VALUES(?, ?)",
(ctx.author.id, f"{day}/{month}"),
)
con.commit()
con.close()
await ctx.respond("Your birthday has been set")
else:
cur.execute(
"UPDATE birthday SET birthday = ? WHERE UsersID=?",
(
f"{day}/{month}",
ctx.author.id,
),
)
con.commit()
con.close()
await ctx.respond("Your birthday has been updated")
@commands.command(name="setbirthday", help="Set your birthday use day then month")
async def setbirthday_commands(self, ctx, day: int, month: int):
if day > 31 or day < 1 or month > 12 or month < 1:
await ctx.send("Invalid date.")
else:
# formate date 2 digit
if len(str(day)) == 1:
day = f"0{day}"
if len(str(month)) == 1:
month = f"0{month}"
con = sqlite3.connect("databases/user_brithdays.db")
cur = con.cursor()
data = cur.execute(
"SELECT * FROM birthday WHERE UsersID=?", (ctx.author.id,)
)
data = cur.fetchall()
if data == []:
cur.execute(
"INSERT INTO birthday(UsersID, birthday) VALUES(?, ?)",
(ctx.author.id, f"{day}/{month}"),
)
con.commit()
con.close()
await ctx.send("Your birthday has been set")
else:
cur.execute(
"UPDATE birthday SET birthday = ? WHERE UsersID=?",
(
f"{day}/{month}",
ctx.author.id,
),
)
con.commit()
con.close()
await ctx.send("Your birthday has been updated")
@commands.command(name="set_birthday_channel", help="Set the birthday channel")
@commands.has_permissions(administrator=True)
async def set_birthday_channel_command(
self, ctx, channel: commands.TextChannelConverter
):
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
cur.execute(
"UPDATE server SET birthdaychannel = ? WHERE ServerID=?",
(
channel.id,
ctx.guild.id,
),
)
con.commit()
con.close()
await ctx.send(
f"Birthday channel has been set to {channel} \n To enable birthday reminders use the command `/toggle_birthday` \n To set a custom message use the command `/birthday_message`"
)
@commands.slash_command(
name="set_birthday_channel", help="Set the birthday channel"
)
@commands.has_permissions(administrator=True)
async def set_birthday_channel__slash(
self, ctx, channel: commands.TextChannelConverter
):
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
cur.execute(
"UPDATE server SET birthdaychannel = ? WHERE ServerID=?",
(
channel.id,
ctx.guild.id,
),
)
con.commit()
con.close()
await ctx.respond(f"Birthday channel has been set to {channel}")
@commands.slash_command(name="findbirthday", description="Find a users birthday")
async def findbirthday__slash(self, ctx, user: discord.Member):
con = sqlite3.connect("databases/user_brithdays.db")
cur = con.cursor()
data = cur.execute("SELECT * FROM birthday WHERE UsersID=?", (user.id,))
data = cur.fetchall()
if data == []:
await ctx.respond(f"{user} has not set their birthday")
else:
await ctx.respond(f"{user} birthday is {data[0][1]}")
await ctx.followup.send(
"If you like the bot, please consider voting for it at https://top.gg/bot/902240397273743361 \n It helps a lot! :D",
ephemeral=True,
)
@tasks.loop(time=time(7, 00))
async def birthday_announcments(self):
print("Birthday announcments")
for server in self.client.guilds:
try:
print(server)
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
datas = cur.execute("SELECT * FROM server WHERE ServerID=?", (server.id,))
datas = cur.fetchall()
if datas == []:
cur.execute(
"INSERT INTO server(ServerID, Servertoggle, birthdaychannel) VALUES(?, ?, ?)",
(server.id, False, None),
)
con.commit()
con.close()
else:
pass
con = sqlite3.connect("databases/user_brithdays.db")
cur = con.cursor()
data = cur.execute("SELECT * FROM birthday")
data = cur.fetchall()
if data == []:
print("No birthday")
# does not work below here
else:
for x in data:
if datas[0][1] == True:
if datas[0][2] == None:
pass
else:
try:
user = await self.client.fetch_user(x[0])
if user in server.members:
channel = await self.client.fetch_channel(datas[0][2])
message = datas[0][3]
if message == None:
message = ":tada:"
print(channel)
print(x[1])
print(datetime.now().strftime("%d/%m"))
if x[1] == datetime.now().strftime("%d/%m"):
print("Birthday")
print(x[0])
await channel.send(
f"Happy birthday <@{x[0]}>! \n {message}"
)
else:
username = await self.client.fetch_user(x[0])
print(f"User {username} not in server {x[0]} {server}")
except:
pass
else:
pass
except Exception as e:
print(e)
@commands.command()
@commands.is_owner()
async def add_message_to_birthday(self, ctx, *, message):
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
# creat a new column
cur.execute("ALTER TABLE server ADD COLUMN birthdaymessage TEXT")
# set the message
cur.execute("UPDATE server SET birthdaymessage = ?", (message,))
con.commit()
con.close()
await ctx.send("Done")
@commands.slash_command(
name="birthday_message", description="Add a message to the birthday announcment"
)
@commands.has_permissions(administrator=True)
async def add_message_to_birthday__slash(self, ctx, *, message):
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
data = cur.execute("SELECT * FROM server WHERE ServerID=?", (ctx.guild.id,))
data = cur.fetchall()
if data == []:
await ctx.respond("You have not set a birthday channel")
else:
cur.execute(
"UPDATE server SET birthdaymessage = ? WHERE ServerID=?",
(
message,
ctx.guild.id,
),
)
con.commit()
con.close()
await ctx.respond("Done")
await ctx.followup.send(
"If you like the bot, please consider voting for it at https://top.gg/bot/902240397273743361 \n It helps a lot! :D",
ephemeral=True,
)
@commands.command()
@commands.is_owner()
async def force_birthday_announcments(self, ctx):
print("Birthday announcments")
await ctx.send("Birthday announcments")
for number, server in enumerate(self.client.guilds):
try:
sleep(0.5)
print(server)
await ctx.send(f"Birthday announcments {number}")
con = sqlite3.connect("databases/server_brithdays.db")
cur = con.cursor()
datas = cur.execute("SELECT * FROM server WHERE ServerID=?", (server.id,))
datas = cur.fetchall()
if datas == []:
cur.execute(
"INSERT INTO server(ServerID, Servertoggle, birthdaychannel) VALUES(?, ?, ?)",
(server.id, False, None),
)
con.commit()
con.close()
else:
pass
con = sqlite3.connect("databases/user_brithdays.db")
cur = con.cursor()
data = cur.execute("SELECT * FROM birthday")
data = cur.fetchall()
if data == []:
print("No birthday")
# does not work below here
else:
for x in data:
if datas[0][1] == True:
if datas[0][2] == None:
pass
else:
try:
user = await self.client.fetch_user(x[0])
if user in server.members:
channel = await self.client.fetch_channel(datas[0][2])
message = datas[0][3]
if message == None:
message = ":tada:"
print(channel)
print(x[1])
print(datetime.now().strftime("%d/%m"))
if x[1] == datetime.now().strftime("%d/%m"):
print("Birthday")
print(x[0])
await channel.send(
f"Happy birthday <@{x[0]}>! \n {message}"
)
else:
username = await self.client.fetch_user(x[0])
print(f"User {username} not in server {x[0]} {server}")
except Exception as e:
print(e)
else:
pass
except Exception as e:
print(e)
await ctx.send("Done")
def setup(bot):
bot.add_cog(Birthday(bot))