|
|
@ -35,7 +35,11 @@ async def on_ready(): |
|
|
|
async def on_message(message): |
|
|
|
# Binflop |
|
|
|
if len(message.attachments) > 0: |
|
|
|
if message.author.id != 834065535041798225: |
|
|
|
if message.author.bot: |
|
|
|
return |
|
|
|
perms = message.channel.permissions_for(message.guild.me) |
|
|
|
if not perms.send_messages: |
|
|
|
return |
|
|
|
if not message.attachments[0].url.lower().endswith(('.html')): |
|
|
|
file_type = mimetypes.guess_type(message.attachments[0].url) |
|
|
|
if not file_type[0] == None: |
|
|
@ -66,8 +70,6 @@ async def on_message(message): |
|
|
|
except: |
|
|
|
print("Permission error") |
|
|
|
logging.info(f'File uploaded by {message.author} ({message.author.id}): https://bin.birdflop.com/{key}') |
|
|
|
else: |
|
|
|
logging.info(f'Blocked file upload by {message.author} ({message.author.id})') |
|
|
|
# Pastebin is blocked in some countries |
|
|
|
words = message.content.replace("\n", " ").split(" ") |
|
|
|
for word in words: |
|
|
|