forked from Fearrocks/BumpCord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
76 lines (62 loc) · 2.44 KB
/
main.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
import discord, datetime
from asyncio import sleep
import os
import keep_alive
channel_id = CHANNEL_ID
class Client(discord.Client):
active = True
async def pauseBump(self):
self.active = False
print("Bump paused.")
async def clean(self, user_message=None, bot_message=None):
await sleep(3)
if user_message is not None:
await user_message.delete()
if bot_message is not None:
await bot_message.delete()
print("Chat cleaned.")
async def continueBump(self):
self.active = True
print("Bump restored.")
async def send(self, ctx, content):
message = await ctx.channel.send(f"{ctx.author.mention} {content}")
print(f"Sent '{content}' to '{ctx.author}'")
await self.clean(ctx, message)
async def bumpCheck(self):
channel = self.get_channel(channel_id)
async for message in channel.history(limit=50):
if str(message.author) == "DISBOARD#2760":
if "Bump done" in message.embeds[0].description:
now = datetime.datetime.utcnow()
two = datetime.timedelta(hours=2)
min = datetime.timedelta(minutes=1)
difference = now - message.created_at
difference = two - difference + min
print(f"Time until next bump {difference}")
return difference.seconds
break
async def bump(self):
self.diff = await self.bumpCheck()
await sleep(self.diff)
channel = self.get_channel(channel_id)
command = await channel.send("!d bump")
print("Server bumped")
return command
async def on_ready(self):
print(f"Logged as {self.user}")
while self.active == True:
command = await self.bump()
await self.clean(command)
async def on_message(self, message):
if message.author == self.user:
if message.content == "!pause":
await self.pauseBump()
await self.send(message, "Bot is paused :sleeping:")
elif message.content == "!continue":
await self.continueBump()
await self.send(
message,
f"Bump is activated, next bump in {self.diff} seconds :hourglass_flowing_sand:",
)
keep_alive.keep_alive()
Client().run(os.getenv("TOKEN"), bot=False)