nova-cord/cord/bot.py
2023-08-02 17:00:18 +02:00

93 lines
3.2 KiB
Python

"""Bot base."""
import os
import nextcord
import chatbot
import embedder
import autochat
import accounts
import community
import tutorials
import credential_manager
from dotenv import load_dotenv
from nextcord.ext import commands
from nextcord import SlashOption
load_dotenv()
guild_ids = [int(guild_id) for guild_id in os.getenv('DISCORD_GUILD_IDS').split()]
bot = commands.Bot(
intents=nextcord.Intents.all(),
default_guild_ids=guild_ids # so slash commands work
)
@bot.event
async def on_ready():
print(f'Online as {bot.user} (ID: {bot.user.id})')
await bot.change_presence(activity=nextcord.Game(name='with fire'))
@bot.event
async def on_message(message):
if message.author.bot: # block bots
return
await autochat.process(message)
await bot.process_commands(message)
# @bot.slash_command(description='Chat with AI')
# async def chat(interaction: nextcord.Interaction,
# prompt: str = SlashOption(description='AI Prompt', required=True)
# ):
# await chatbot.respond(interaction, prompt)
@bot.slash_command(description='Sets your DMs up, so you can write the bot.')
async def dm_setup(interaction: nextcord.Interaction):
try:
await interaction.user.create_dm()
await embedder.info(interaction.user.dm_channel, 'Hello!')
except nextcord.Forbidden:
await embedder.error(interaction, text="""Please open this server\'s options,
go to `Privacy Settings` and enable `Direct Messages` as well as `Message Requests`.""")
else:
await embedder.ok(interaction, 'Great, DMs are set up successfully!')
@bot.slash_command(description='Create your account and get your API key.')
async def credentials(interaction: nextcord.Interaction):
return await credential_manager.get_credentials(interaction)
@bot.slash_command(description='Leaderboard.')
async def leaderboard(interaction: nextcord.Interaction):
return await community.leaderboard(interaction)
@bot.slash_command(description='Get info and stats about your NovaAI API account.')
async def account(interaction: nextcord.Interaction):
return await accounts.get_info(interaction)
@bot.slash_command(name='credits', description='Get information about the amount of credits you have on your NovaAI API account.')
async def credits_(interaction: nextcord.Interaction):
return await accounts.get_credits(interaction)
@bot.slash_command(description='View examples and tips for implementing NovaAI\'s API.')
async def tutorial(interaction: nextcord.Interaction,
how_can_i: str = SlashOption(#
description='Read a tutorial on how to...',
required=True,
choices=['fix ModuleNotFoundErrors', 'use the Python library', 'use curl', 'use Node.js', 'program a Python Discord Bot with streaming']
)
):
return await tutorials.send(interaction, how_can_i)
@bot.slash_command(description='Lookup members by their Discord ID.')
async def lookup(interaction: nextcord.Interaction,
discord_id: int = SlashOption(description='Discord ID', required=True)
):
for member in interaction.guild.members:
if str(member.id).startswith(str(discord_id)):
return await embedder.ok(interaction, f'Result: {member.mention} (`{member.id}`)')
bot.run(os.getenv('DISCORD_TOKEN'))