-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
122 lines (87 loc) · 3.37 KB
/
bot.py
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
from sqlite3 import IntegrityError
import discord
from discord.ext import commands
from database import Database
from dotenv import load_dotenv
import os
load_dotenv()
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix="!", intents=intents)
database = Database()
@bot.event
async def on_ready():
await database.create_tables()
print(f"Tudo ok! Estou conectado como {bot.user}")
@bot.command(name="ping")
async def ping(ctx):
response = "pong"
await ctx.send(response)
@bot.command(name="inserir_categoria")
async def insert_category(ctx, category):
try:
response = "categoria inserida"
await database.create_category(category)
await ctx.send(response)
except IntegrityError:
await ctx.send("categoria já existe!")
@bot.command(name="listar_categorias")
async def list_categories(ctx):
categories = await database.list_category()
response = f"olá {ctx.author.name}, aqui estão as categorias:\n"
response += "\n".join([category[0] for category in categories])
await ctx.send(response)
@bot.command(name="remover_categoria")
async def remove_categories(ctx, category):
await database.remove_category(category)
await ctx.send(f"categoria {category} removida")
@bot.command(name="inserir_receita")
async def insert_recipe(ctx, name, link, category):
try:
response = "mais uma delícia inserida"
await database.create_recipe(name, link, category)
await ctx.send(response)
except IndexError:
await ctx.send("categoria não encontrada")
except IntegrityError:
await ctx.send(f"receita já existe na categoria {category}")
@bot.command(name="listar_receitas")
async def list_recipes_category(ctx, category):
recipes = await database.list_recipes_category(category)
response = "aqui estão todas as receitas:\n"
response += "\n".join([recipe[0] for recipe in recipes])
await ctx.send(response)
@bot.command(name="buscar_receita")
async def get_recipe(ctx, recipe, category):
recipe_data = await database.get_recipe(recipe, category)
if len(recipe_data) == 0:
await ctx.send(f"receita {recipe} não encontrada")
else:
response = f"aqui está a receita **{recipe_data[0][0]}**: {recipe_data[0][1]}"
await ctx.send(response)
@bot.command(name="remover_receita")
async def remove_recipe(ctx, recipe, category):
await database.remove_recipe(recipe, category)
await ctx.send(f"receita {recipe} removida")
@bot.command(name="listar_comandos")
async def list_comands(ctx):
response = f'''
** Comandos: **
*- criar nova categoria:*
` !inserir_categoria $NOME_DA_CATEGORIA `
*- buscar todas categorias existentes:*
` !listar_categorias `
*- excluir categoria:*
` !remover_categoria $NOME_DA_CATEGORIA `
*- criar uma nova receita:*
` !inserir_receita $NOME_DA_RECEITA $LINK_DA_RECEITA $NOME_DA_CATEGORIA `
*- buscar receitas por categoria:*
` !listar_receitas $NOME_DA_CATEGORIA `
*- buscar uma receita específica:*
` !buscar_receita $NOME_DA_RECEITA $NOME_DA_CATEGORIA `
*- excluir receita:*
` !remover_receita $NOME_DA_RECEITA $NOME_DA_CATEGORIA `
'''
await ctx.send(response)
token = os.getenv("TOKEN")
bot.run(token)