File size: 7,978 Bytes
a994ac1
 
 
99a01d8
 
a994ac1
99a01d8
 
 
 
 
a994ac1
 
99a01d8
 
 
 
 
 
 
 
 
 
 
 
a994ac1
 
99a01d8
 
 
a994ac1
 
99a01d8
 
 
 
 
 
 
 
 
 
 
 
a994ac1
99a01d8
 
 
 
 
 
 
a994ac1
 
99a01d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a994ac1
99a01d8
 
 
 
 
 
 
 
a994ac1
 
 
99a01d8
 
a994ac1
99a01d8
 
 
 
 
 
 
 
 
 
a994ac1
99a01d8
 
 
a994ac1
99a01d8
 
a994ac1
99a01d8
 
 
a994ac1
99a01d8
 
 
 
a994ac1
99a01d8
 
 
 
 
a994ac1
99a01d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a994ac1
 
99a01d8
a994ac1
 
99a01d8
a994ac1
99a01d8
a994ac1
 
99a01d8
a994ac1
 
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
import discord
import os
import threading
import gradio as gr
import requests
import json
import random
import time
import re
from discord import Embed, Color
from discord.ext import commands

from gradio_client import Client
from PIL import Image
from ratelimiter import RateLimiter

from datetime import datetime # for times
from pytz import timezone # for times

import asyncio # check if used

zurich_tz = timezone("Europe/Zurich")

def convert_to_timezone(dt, tz):
    return dt.astimezone(tz).strftime("%Y-%m-%d %H:%M:%S %Z")

DISCORD_TOKEN = os.environ.get("DISCORD_TOKEN", None)
intents = discord.Intents.default()
intents.message_content = True

bot = commands.Bot(command_prefix='!', intents=intents)

LOG_CHANNEL_ID = 

#rate_limiter = RateLimiter(max_calls=10, period=60)  # needs testing

# todo
'''
Make sure only can post in #bot-test

discord.gg / discord/invite (block completely, need to be cautious)
attempted @everyone / @here pings, or trying to use those strings (ping @alerts)
ping alerts for list of keywords 



'''




# moderation stuff----------------------------------------------------------------------------------------------------------------------------------------------------------

@bot.event
async def on_message_edit(before, after):
    if before.author == bot.user:
        return

    if before.content != after.content:
        embed = Embed(color=Color.orange())
        embed.set_author(name=f"{before.author}    ID: {before.author.id}", icon_url=before.author.avatar.url)
        embed.title = "Message Edited"
        embed.description = f"**Before:** {before.content or '*(empty message)*'}\n**After:** {after.content or '*(empty message)*'}"
        embed.add_field(name="Author Username", value=before.author.name, inline=True)
        embed.add_field(name="Channel", value=before.channel.mention, inline=True)
        #embed.add_field(name="Message Created On", value=before.created_at.strftime("%Y-%m-%d %H:%M:%S UTC"), inline=True)
        embed.add_field(name="Message Created On", value=convert_to_timezone(before.created_at, zurich_tz), inline=True)
        embed.add_field(name="Message ID", value=before.id, inline=True)
        embed.add_field(name="Message Jump URL", value=f"[Jump to message!](https://discord.com/channels/{before.guild.id}/{before.channel.id}/{before.id})", inline=True)

        if before.attachments:
            attachment_urls = "\n".join([attachment.url for attachment in before.attachments])
            embed.add_field(name="Attachments", value=attachment_urls, inline=False)

        #embed.set_footer(text=f"{datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S UTC')}")
        embed.set_footer(text=f"{convert_to_timezone(datetime.utcnow(), zurich_tz)}")

        await bot.log_channel.send(embed=embed)

@bot.event
async def on_message_delete(message):
    if message.author == bot.user:
        return

    embed = Embed(color=Color.red())
    embed.set_author(name=f"{message.author}    ID: {message.author.id}", icon_url=message.author.avatar.url)
    embed.title = "Message Deleted"
    embed.description = message.content or "*(empty message)*"
    embed.add_field(name="Author Username", value=message.author.name, inline=True)
    embed.add_field(name="Channel", value=message.channel.mention, inline=True)
    #embed.add_field(name="Message Created On", value=message.created_at.strftime("%Y-%m-%d %H:%M:%S UTC"), inline=True)
    embed.add_field(name="Message Created On", value=convert_to_timezone(message.created_at, zurich_tz), inline=True)
    embed.add_field(name="Message ID", value=message.id, inline=True)
    embed.add_field(name="Message Jump URL", value=f"[Jump to message!](https://discord.com/channels/{message.guild.id}/{message.channel.id}/{message.id})", inline=True)

    if message.attachments:
        attachment_urls = "\n".join([attachment.url for attachment in message.attachments])
        embed.add_field(name="Attachments", value=attachment_urls, inline=False)

    #embed.set_footer(text=f"{datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S UTC')}")
    embed.set_footer(text=f"{convert_to_timezone(datetime.utcnow(), zurich_tz)}")

    await bot.log_channel.send(embed=embed)

# nickname stuff
@bot.event
async def on_member_update(before, after):
    if before.nick != after.nick:
        embed = Embed(description=f'{before} changed their nickname to {after.nick}', color=Color.blue())
        await bot.log_channel.send(embed=embed)

@bot.event
async def on_member_ban(guild, user):
    # member banned from the guild
    embed = Embed(description=f'Member {user.mention} was banned from the guild', color=Color.red())
    await bot.log_channel.send(embed=embed)

@bot.event
async def on_member_unban(guild, user):
    # member unbanned from the guild
    embed = Embed(description=f'Member {user.mention} was unbanned from the guild', color=Color.green())
    await bot.log_channel.send(embed=embed)       

# admin stuff---------------------------------------------------------------------------------------------------------------------------------------------------------------

@bot.event
async def on_guild_channel_create(channel):
    # creating channels
    embed = Embed(description=f'Channel {channel.mention} was created', color=Color.green())
    await bot.log_channel.send(embed=embed)

@bot.event
async def on_guild_channel_delete(channel):
    # deleting channels, should ping @alerts for this
    embed = Embed(description=f'Channel {channel.name} ({channel.mention}) was deleted', color=Color.red())
    await bot.log_channel.send(embed=embed)

@bot.event
async def on_guild_role_create(role):
    # creating roles
    embed = Embed(description=f'Role {role.mention} was created', color=Color.green())
    await bot.log_channel.send(embed=embed)

@bot.event
async def on_guild_role_delete(role):
    # deleting roles, should ping @alerts for this
    embed = Embed(description=f'Role {role.name} ({role.mention}) was deleted', color=Color.red())
    await bot.log_channel.send(embed=embed)

@bot.event
async def on_guild_role_update(before, after):
    # editing roles, could expand this 
    if before.name != after.name:
        embed = Embed(description=f'Role {before.mention} was renamed to {after.name}', color=Color.orange())
        await bot.log_channel.send(embed=embed)

    if before.permissions.administrator != after.permissions.administrator:
        # changes involving the administrator permission / sensitive permissions (can help to prevent mistakes)
        certain_role_id = 1106995261487710411  # role to ping (@alerts)
        certain_role = after.guild.get_role(certain_role_id)
        embed = Embed(description=f'Role {after.mention} had its administrator permission {"enabled" if after.permissions.administrator else "disabled"}', color=Color.red())
        await bot.log_channel.send(content=certain_role.mention, embed=embed)  

@bot.event
async def on_voice_state_update(member, before, after):
    if before.mute != after.mute:
        # muting members
        embed = Embed(description=f'{member} was {"muted" if after.mute else "unmuted"} in voice chat', color=Color.orange())
        await bot.log_channel.send(embed=embed)

    if before.deaf != after.deaf:
        # deafening members
        embed = Embed(description=f'{member} was {"deafened" if after.deaf else "undeafened"} in voice chat', color=Color.orange())
        await bot.log_channel.send(embed=embed)

# bot stuff ---------------------------------------------------------------------------------------------------------------------------------------------------------------

# send messages
#

@bot.event
async def on_ready():
    print('Logged on as', bot.user)
    bot.log_channel = bot.get_channel(1100458786826747945)

        

def run_bot():
    bot.run(DISCORD_TOKEN)

threading.Thread(target=run_bot).start()

def greet(name):
    return "Hello " + name + "!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()