54 lines
1.8 KiB
Python
54 lines
1.8 KiB
Python
import discord, pymongo, os
|
|
from discord.ext import commands
|
|
|
|
from dotenv import load_dotenv
|
|
load_dotenv()
|
|
|
|
class setprefix(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@commands.Cog.listener()
|
|
async def on_ready(self):
|
|
print("Setprefix Online")
|
|
|
|
def is_enabled(self):
|
|
client = pymongo.MongoClient(os.getenv("mongo_url"))
|
|
db = client.servers
|
|
coll = db.settings
|
|
|
|
if coll.find_one({"_id": {"guild_id": self.guild.id, "commands":"prefix"}}):
|
|
command = coll.find_one({"_id": {"guild_id": self.guild.id, "commands":"prefix"}})
|
|
command_enabled = command["enabled"] # True or False
|
|
if command_enabled:
|
|
return True
|
|
else:
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
@commands.hybrid_command(name="setprefix", description="Set the prefix for the server")
|
|
@commands.has_permissions(manage_guild=True)
|
|
async def setprefix(self, ctx, prefix:str):
|
|
await ctx.send(f"Prefix set to `{prefix}`")
|
|
client = pymongo.MongoClient(os.getenv("mongo_url"))
|
|
db = client.servers
|
|
coll = db.prefixes
|
|
|
|
if coll.find_one({"_id":ctx.guild.id}):
|
|
coll.update_one({"_id":ctx.guild.id}, {"$set":{"prefix":prefix}})
|
|
else:
|
|
coll.insert_one({"_id":ctx.guild.id, "prefix":prefix})
|
|
|
|
@commands.hybrid_command(name="prefix", description="Get the prefix for the server")
|
|
@commands.check(is_enabled)
|
|
async def prefix(self, ctx):
|
|
client = pymongo.MongoClient(os.getenv("mongo_url"))
|
|
db = client.servers
|
|
coll = db.prefixes
|
|
|
|
prefix = coll.find_one({"_id":ctx.guild.id})["prefix"]
|
|
await ctx.send(f"The prefix for this server is `{prefix}`")
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(setprefix(bot)) |