import discord import os import threading from discord.ext import commands import json import datetime import gradio_client import gradio as gr from gradio_client import Client DISCORD_TOKEN = os.environ.get("DISCORD_TOKEN", None) intents = discord.Intents.all() bot = commands.Bot(command_prefix='!', intents=intents) """""" XP_PER_MESSAGE = 10 # 100k messages = 1M exp = lvl 100 """""" @bot.event async def on_ready(): print(f'Logged in as {bot.user.name}') print(f"XP_PER_MESSAGE: {XP_PER_MESSAGE}") print(f"xp_data: {xp_data}") try: with open('xp_data.json', 'r') as f: xp_data = json.load(f) except FileNotFoundError: xp_data = {} def save_xp_data(): with open('xp_data.json', 'w') as f: json.dump(xp_data, f) @bot.event async def on_message(message): try: if message.author != bot.user: """AWAIT LEVEL ALGORITM OR SOMETHING (MULTIPLE FILES?)""" author_id = str(message.author.id) # dictionary pairs (ID -> TOTAL XP) xp_data.setdefault(author_id, 0) # default if it doesn't already exist xp_data[author_id] += XP_PER_MESSAGE print(f"xp_data: {xp_data}") save_xp_data() user = bot.get_user(811235357663297546) try: await user.send(f"xp_data: {xp_data}") except discord.HTTPException: await user.send("Failed to send a DM.") await bot.process_commands(message) except Exception as e: print(f"Error: {e}") def calculate_level(xp): return int(xp ** (1.0 / 3.0)) @bot.command() async def level(ctx): if ctx.author.id == 811235357663297546: author_id = str(ctx.author.id) if author_id in xp_data: xp = xp_data[author_id] level = calculate_level(xp) await ctx.send(f'You are at level {level} with {xp} XP.') else: await ctx.send('You have not earned any XP yet.') # show top users by level / exp @bot.command() async def count(ctx): """Count total messages per user in all channels.""" if ctx.author.id == 811235357663297546: message_counts = {} for channel in ctx.guild.text_channels: try: async for message in channel.history(limit=None): message_counts[message.author] = message_counts.get(message.author, 0) + 1 except discord.Forbidden: # Handle the Forbidden error #await ctx.send(f"Missing access to read messages in {channel.name}") print(f"Missing access to read messages in {channel.name}") sorted_users = sorted(message_counts.items(), key=lambda x: x[1], reverse=True) top_list = "\n".join([f"{member.name}: {count}" for member, count in sorted_users[:50]]) #await ctx.send(f"Message count per user in all text channels:\n{top_list}") print(f"Message count per user in all text channels:\n{top_list}") @bot.command() async def count_messages1(ctx): if ctx.author.id == 811235357663297546: end_date = datetime.datetime.utcnow() # Current date and time start_date = end_date - datetime.timedelta(days=1) message_count = 0 for channel in ctx.guild.text_channels: try: async for message in channel.history(limit=None, after=start_date, before=end_date): message_count += 1 except discord.Forbidden: print(f"Missing access to read messages in {channel.name}") print(f'Total messages between {start_date} and {end_date}: {message_count}') @bot.command() async def count_messages7(ctx): if ctx.author.id == 811235357663297546: end_date = datetime.datetime.utcnow() # Current date and time start_date = end_date - datetime.timedelta(days=7) message_count = 0 for channel in ctx.guild.text_channels: try: async for message in channel.history(limit=None, after=start_date, before=end_date): message_count += 1 except discord.Forbidden: print(f"Missing access to read messages in {channel.name}") print(f'Total messages between {start_date} and {end_date}: {message_count}') @bot.command() async def count_messages14(ctx): if ctx.author.id == 811235357663297546: end_date = datetime.datetime.utcnow() # Current date and time start_date = end_date - datetime.timedelta(days=14) message_count = 0 for channel in ctx.guild.text_channels: try: async for message in channel.history(limit=None, after=start_date, before=end_date): message_count += 1 except discord.Forbidden: print(f"Missing access to read messages in {channel.name}") print(f'Total messages between {start_date} and {end_date}: {message_count}') @bot.command() async def count_messages30(ctx): if ctx.author.id == 811235357663297546: end_date = datetime.datetime.utcnow() # Current date and time start_date = end_date - datetime.timedelta(days=30) message_count = 0 for channel in ctx.guild.text_channels: try: async for message in channel.history(limit=None, after=start_date, before=end_date): message_count += 1 except discord.Forbidden: print(f"Missing access to read messages in {channel.name}") print(f'Total messages between {start_date} and {end_date}: {message_count}') @bot.command() async def count_messages60(ctx): if ctx.author.id == 811235357663297546: end_date = datetime.datetime.utcnow() # Current date and time start_date = end_date - datetime.timedelta(days=60) message_count = 0 for channel in ctx.guild.text_channels: try: async for message in channel.history(limit=None, after=start_date, before=end_date): message_count += 1 except discord.Forbidden: print(f"Missing access to read messages in {channel.name}") print(f'Total messages between {start_date} and {end_date}: {message_count}') @bot.command() async def count_messages(ctx, time: int): if ctx.author.id == 811235357663297546: end_date = datetime.datetime.utcnow() # Current date and time start_date = end_date - datetime.timedelta(days=time) message_count = 0 for channel in ctx.guild.text_channels: print(channel.name) try: async for message in channel.history(limit=None, after=start_date, before=end_date): message_count += 1 except discord.Forbidden: print(f"Missing access to read messages in {channel.name}") print(f'Total messages between {start_date} and {end_date}: {message_count}') @bot.command() async def count_threads(ctx, time: int): if ctx.author.id == 811235357663297546: end_date = datetime.datetime.utcnow() # Current date and time start_date = end_date - datetime.timedelta(days=time) thread_message_count = 0 for channel in ctx.guild.text_channels: print(f"CHANNELNAME: {channel.name}") for thread in channel.threads: print(channel.name) print(thread.name) async for message in thread.history(limit=None, after=start_date, before=end_date): thread_message_count += 1 print(f'Total thread_messages between {start_date} and {end_date}: {thread_message_count}') @bot.command() async def count_forum_threads(ctx, time: int): if ctx.author.id == 811235357663297546: end_date = datetime.datetime.utcnow() # Current date and time start_date = end_date - datetime.timedelta(days=time) forum_thread_message_count = 0 for forum in ctx.guild.forums: print(f"FORUMNAME: {forum.name}") for thread in forum.threads: print(forum.name) print(thread.name) async for message in thread.history(limit=None, after=start_date, before=end_date): print(f"THREAD NAME: {thread.name}") forum_thread_message_count += 1 """ async for thread in forum.archived_threads(limit=None, before=end_date): print(f"ARCHIVED THREAD NAME: {thread.name}") forum_thread_message_count += 1 """ print(f'Total forum_thread_messages between {start_date} and {end_date}: {forum_thread_message_count}') @bot.command() async def top_gradio(ctx, channel_id): if ctx.author.id == 811235357663297546: message_counts = {} try: channel = await bot.fetch_channel(channel_id) async for message in channel.history(limit=None): message_counts[message.author] = message_counts.get(message.author, 0) + 1 except discord.Forbidden: print(f"Missing access to read messages in {channel.name}") sorted_users = sorted(message_counts.items(), key=lambda x: x[1], reverse=True) top_list = "\n".join([f"{member.name}: {count}" for member, count in sorted_users[:50]]) print(f"Message count per user in the channel:\n{top_list}") @bot.command() async def top_gradio_threads(ctx, channel_id): if ctx.author.id == 811235357663297546: message_counts = {} try: channel = await bot.fetch_channel(channel_id) threads = await channel.fetch_threads(limit=None) for thread in threads: async for message in thread.history(limit=None): message_counts[message.author] = message_counts.get(message.author, 0) + 1 except discord.Forbidden: print(f"Missing access to read messages in {channel.name}") sorted_users = sorted(message_counts.items(), key=lambda x: x[1], reverse=True) top_list = "\n".join([f"{member.name}: {count}" for member, count in sorted_users[:50]]) print(f"Message count per user in the channel:\n{top_list}") """""" DISCORD_TOKEN = os.environ.get("DISCORD_TOKEN", None) 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()