Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 19,627 Bytes
a994ac1 99a01d8 a994ac1 99a01d8 a994ac1 99a01d8 a994ac1 b367fc9 4c68a14 b367fc9 99a01d8 b917408 32e47fb 3af4c4f 99a01d8 ca4b90b 32e47fb ca4b90b a12522f a966932 a12522f ca4b90b 3b94d3a a12522f d1d4fa9 a966932 fb1271a a12522f ddddd8f 3af4c4f 8f73afd 3af4c4f ddddd8f 3af4c4f 44aafd7 3af4c4f ca4b90b 99a01d8 ca4b90b 48a9b21 99a01d8 b917408 a994ac1 99a01d8 3967fb1 b049cc9 3967fb1 06db8e3 3967fb1 48a9b21 b367fc9 3967fb1 b049cc9 3967fb1 2ca1cec b367fc9 06db8e3 3967fb1 48a9b21 99a01d8 b917408 a994ac1 99a01d8 3967fb1 06db8e3 3967fb1 06db8e3 3967fb1 06db8e3 b049cc9 06db8e3 3967fb1 48a9b21 ee5d8f7 a994ac1 99a01d8 270b41a 3967fb1 dd844fd c621f1b 270b41a fc129e3 c621f1b 270b41a ba1c870 270b41a ba1c870 dd844fd ba1c870 270b41a 34ac5e1 bb08ef2 b917408 3967fb1 48a9b21 b917408 a994ac1 99a01d8 34ac5e1 3967fb1 c621f1b 34ac5e1 b049cc9 34ac5e1 5849c81 34ac5e1 bb08ef2 34ac5e1 3967fb1 48a9b21 3967fb1 b917408 99a01d8 57d79b2 c621f1b 57d79b2 0aa24a3 57d79b2 48a9b21 57d79b2 b049cc9 57d79b2 48a9b21 57d79b2 99a01d8 3967fb1 48a9b21 99a01d8 3967fb1 99a01d8 3967fb1 48a9b21 99a01d8 3967fb1 99a01d8 3967fb1 48a9b21 99a01d8 3967fb1 99a01d8 3967fb1 48a9b21 99a01d8 3967fb1 99a01d8 3967fb1 48a9b21 3967fb1 99a01d8 3967fb1 48a9b21 3967fb1 b917408 99a01d8 3c039fb 32e47fb b367fc9 a994ac1 99a01d8 a994ac1 99a01d8 a994ac1 99a01d8 a994ac1 6ff2a08 |
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 |
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.all()
bot = commands.Bot(command_prefix='!', intents=intents)
#rate_limiter = RateLimiter(max_calls=10, period=60) # needs testing
# stats stuff ---------------------------------------------------------------------------------------------------------------------------------------------------------
number_of_messages = 0
user_cooldowns = {}
@bot.event
async def on_message(message):
try:
global number_of_messages
if message.author != bot.user:
lunarflu = bot.get_user(811235357663297546) #811235357663297546
cakiki = bot.get_user(416019758492680203)
"""Backup"""
number_of_messages = number_of_messages + 1
message_link = f"[#{message.channel.name}]({message.jump_url})"
dm_message = await lunarflu.send(f"{number_of_messages}| {message_link} |{message.author}: {message.content}")
"""Antispam"""
#Detecting certain unwanted strings
try:
forbidden_strings = ["@everyone", "@here", "discord.gg", "discord.com/invite", "discord.com", "discord-premium"]
if any(string.lower() in message.content.lower() for string in forbidden_strings):
ignored_role_ids = [897381378172264449, 897376942817419265] #admins, huggingfolks
if any(role.id in ignored_role_ids for role in message.author.roles):
if message.author != lunarflu:
return
dm_unwanted = await lunarflu.send(f" {lunarflu.mention} [experimental] SUSPICIOUS MESSAGE: {message_link} | {message.author}: {message.content}")
dm_unwanted = await cakiki.send(f" {cakiki.mention} [experimental] SUSPICIOUS MESSAGE: {message_link} | {message.author}: {message.content}")
except Exception as e:
print(f"Antispam->Detecting certain unwanted strings Error: {e}")
#Posting too fast
cooldown_duration = 3 # messages per n seconds, was 1, now 3, could try 5
if message.author.id not in user_cooldowns:
user_cooldowns[message.author.id] = {'count': 1, 'timestamp': message.created_at}
else:
if (message.created_at - user_cooldowns[message.author.id]['timestamp']).total_seconds() > cooldown_duration:
var1 = message.created_at
var2 = user_cooldowns[message.author.id]['timestamp']
print(f"seconds since last message by {message.author}: ({var1} - {var2}).seconds = {(var1 - var2).total_seconds()}")
# if we wait longer than cooldown_duration, count will reset
user_cooldowns[message.author.id] = {'count': 1, 'timestamp': message.created_at}
else:
user_cooldowns[message.author.id]['count'] += 1
# tldr; if we post 2 messages with less than 1s between them
if user_cooldowns[message.author.id]['count'] > 3: # 4 in a row, helps avoid false positives for posting in threads
var1 = message.created_at
var2 = user_cooldowns[message.author.id]['timestamp']
print(f"seconds since last message by {message.author}: {(var1 - var2).total_seconds()}")
spam_count = user_cooldowns[message.author.id]['count']
print(f"count: {user_cooldowns[message.author.id]['count']}")
test_server = os.environ.get('TEST_SERVER')
if test_server == 'True':
alert = "<@&1106995261487710411>" # test @alerts role
if test_server == 'False':
alert = "<@&1108342563628404747>" # normal @alerts role
await bot.log_channel.send(
f"[EXPERIMENTAL ALERT] {message.author} may be posting too quickly! \n"
f"Spam count: {user_cooldowns[message.author.id]['count']}\n"
f"Message content: {message.content}\n"
f"[Jump to message!](https://discord.com/channels/{message.guild.id}/{message.channel.id}/{message.id})\n"
f"{alert}"
)
await cakiki.send(
f"[EXPERIMENTAL ALERT] {message.author} may be posting too quickly! \n"
f"Spam count: {user_cooldowns[message.author.id]['count']}\n"
f"Message content: {message.content}\n"
f"[Jump to message!](https://discord.com/channels/{message.guild.id}/{message.channel.id}/{message.id})\n"
)
"""
if user_cooldowns[message.author.id]['count']/5 > cooldown_duration:
# ping admins
# timeout for user
# kick user
"""
user_cooldowns[message.author.id]['timestamp'] = message.created_at
await bot.process_commands(message)
except Exception as e:
print(f"on_message Error: {e}")
# moderation stuff-----------------------------------------------------------------------------------------------------------------------------------------------------
@bot.event
async def on_message_edit(before, after):
try:
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 if before.author.avatar else bot.user.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)
except Exception as e:
print(f"on_message_edit Error: {e}")
@bot.event
async def on_message_delete(message):
try:
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 if message.author.avatar else bot.user.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)
except Exception as e:
print(f"on_message_delete Error: {e}")
# nickname stuff ---------------------------------------------------------------------------------------------------------------------------
@bot.event
async def on_member_update(before, after):
try:
"""
if before.name != after.name:
async for entry in before.guild.audit_logs(limit=5):
print(f'{entry.user} did {entry.action} to {entry.target}')
"""
if before.nick != after.nick:
embed = Embed(color=Color.orange())
embed.set_author(name=f"{after} ID: {after.id}", icon_url=after.avatar.url if after.avatar else bot.user.avatar.url)
embed.title = "Nickname Modified"
embed.add_field(name="Mention", value=after.mention, inline=True)
embed.add_field(name="Old", value=before.nick, inline=True)
embed.add_field(name="New", value=after.nick, inline=True)
embed.set_footer(text=f"{convert_to_timezone(datetime.utcnow(), zurich_tz)}")
await bot.log_channel.send(embed=embed)
except Exception as e:
print(f"on_member_update Error: {e}")
@bot.event
async def on_member_ban(guild, banned_user):
try:
await asyncio.sleep(1)
entry1 = await guild.fetch_ban(banned_user)
ban_reason = entry1.reason
print(f"ban_reason: {ban_reason}")
async for entry2 in guild.audit_logs(action=discord.AuditLogAction.ban, limit=1):
if ban_reason:
print(f'{entry2.user} banned {entry2.target} for {ban_reason}')
else:
print(f'{entry2.user} banned {entry2.target} (no reason specified)')
content = "<@&1108342563628404747>" # @alerts role
embed = Embed(color=Color.red())
embed.set_author(name=f"{entry2.target} ID: {entry2.target.id}", icon_url=entry2.target.avatar.url if entry2.target.avatar else bot.user.avatar.url)
embed.title = "User Banned"
embed.add_field(name="User", value=entry2.target.mention, inline=True)
#nickname = entry2.target.nick if entry2.target.nick else "None"
#embed.add_field(name="Nickname", value=nicknmae, inline=True)
#embed.add_field(name="Account Created At", value=entry2.target.created_at, inline=True)
embed.add_field(name="Moderator", value=entry2.user.mention, inline=True)
embed.add_field(name="Nickname", value=entry2.user.nick, inline=True)
embed.add_field(name="Reason", value=ban_reason, inline=False)
embed.set_footer(text=f"{convert_to_timezone(datetime.utcnow(), zurich_tz)}")
#user = bot.get_user(811235357663297546)
#dm_message = await user.send(content=content, embed=embed)
await bot.log_channel.send(content=content, embed=embed)
except Exception as e:
print(f"on_member_ban Error: {e}")
@bot.event
async def on_member_unban(guild, unbanned_user):
try:
await asyncio.sleep(5)
async for entry in guild.audit_logs(action=discord.AuditLogAction.unban, limit=1):
if unbanned_user == entry.target: # verify that unbanned user is in audit log
moderator = entry.user
created_and_age = f"{unbanned_user.created_at}"
content = "<@&1108342563628404747>" # @alerts role
embed = Embed(color=Color.red())
embed.set_author(name=f"{unbanned_user} ID: {unbanned_user.id}", icon_url=unbanned_user.avatar.url if unbanned_user.avatar else bot.user.avatar.url)
embed.title = "User Unbanned"
embed.add_field(name="User", value=unbanned_user.mention, inline=True)
embed.add_field(name="Account Created At", value=created_and_age, inline=True)
embed.add_field(name="Moderator", value=moderator.mention, inline=True)
embed.add_field(name="Nickname", value=moderator.nick, inline=True)
embed.set_footer(text=f"{convert_to_timezone(datetime.utcnow(), zurich_tz)}")
#user = bot.get_user(811235357663297546)
#dm_message = await user.send(content=content, embed=embed)
await bot.log_channel.send(content=content, embed=embed)
except Exception as e:
print(f"on_member_unban Error: {e}")
# admin stuff-----------------------------------------------------------------------------------------------------------------------
@bot.event
async def on_member_join(member):
try:
await asyncio.sleep(5)
embed = Embed(color=Color.blue())
avatar_url = member.avatar.url if member.avatar else bot.user.avatar.url
embed.set_author(name=f"{member} ID: {member.id}", icon_url=avatar_url)
embed.title = "User Joined"
embed.add_field(name="Mention", value=member.mention, inline=True)
embed.add_field(name="Nickname", value=member.nick, inline=True)
embed.add_field(name="Account Created At", value=member.created_at, inline=True)
embed.set_footer(text=f"{convert_to_timezone(datetime.utcnow(), zurich_tz)}")
await bot.log_channel.send(embed=embed)
except Exception as e:
print(f"on_member_join Error: {e}")
@bot.event
async def on_member_remove(member):
try:
embed = Embed(color=Color.blue())
embed.set_author(name=f"{member} ID: {member.id}", icon_url=member.avatar.url if member.avatar else bot.user.avatar.url)
embed.title = "User Left"
embed.add_field(name="Mention", value=member.mention, inline=True)
embed.add_field(name="Nickname", value=member.nick, inline=True)
embed.add_field(name="Account Created At", value=member.created_at, inline=True)
embed.set_footer(text=f"{convert_to_timezone(datetime.utcnow(), zurich_tz)}")
await bot.log_channel.send(embed=embed)
except Exception as e:
print(f"on_member_remove Error: {e}")
@bot.event
async def on_guild_channel_create(channel):
try:
# creating channels
embed = Embed(description=f'Channel {channel.mention} was created', color=Color.green())
await bot.log_channel.send(embed=embed)
except Exception as e:
print(f"on_guild_channel_create Error: {e}")
@bot.event
async def on_guild_channel_delete(channel):
try:
# 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)
except Exception as e:
print(f"on_guild_channel_delete Error: {e}")
@bot.event
async def on_guild_role_create(role):
try:
# creating roles
embed = Embed(description=f'Role {role.mention} was created', color=Color.green())
await bot.log_channel.send(embed=embed)
except Exception as e:
print(f"on_guild_role_create Error: {e}")
@bot.event
async def on_guild_role_delete(role):
try:
# 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)
except Exception as e:
print(f"on_guild_role_delete Error: {e}")
@bot.event
async def on_guild_role_update(before, after):
try:
# 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)
content = "<@&1108342563628404747>" # @alerts role
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=content, embed=embed)
except Exception as e:
print(f"on_guild_role_update Error: {e}")
@bot.event
async def on_voice_state_update(member, before, after):
try:
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)
except Exception as e:
print(f"on_voice_state_update Error: {e}")
# github test stuff -------------------------------------------------------------------------------------------------------------------
"""
async def check_github():
url = f'https://api.github.com/repos/{github_repo}/pulls'
response = requests.get(url)
pulls = response.json()
for pull in pulls:
# Check if the pull request was just opened
if pull['state'] == 'open' and pull['created_at'] == pull['updated_at']:
channel = client.get_channel(channel_id)
if channel:
await channel.send(f'New PR opened: {pull["title"]}')
"""
# bot stuff ---------------------------------------------------------------------------------------------------------------------------
@bot.event
async def on_ready():
print('Logged on as', bot.user)
bot.log_channel = bot.get_channel(1036960509586587689) # admin-logs
print(bot.log_channel)
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()
|