Format code
This commit is contained in:
@@ -8,6 +8,7 @@ from pluralkit import db
|
||||
from pluralkit.bot import client, logger
|
||||
from pluralkit.utils import command, generate_hid, generate_member_info_card, generate_system_info_card, member_command, parse_mention, text_input, get_system_fuzzy, get_member_fuzzy, command_map
|
||||
|
||||
|
||||
@command(cmd="pk;system", subcommand=None, description="Shows information about your system.")
|
||||
async def this_system_info(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
@@ -18,6 +19,7 @@ async def this_system_info(conn, message, args):
|
||||
await client.send_message(message.channel, embed=await generate_system_info_card(conn, system))
|
||||
return True
|
||||
|
||||
|
||||
@command(cmd="pk;system", subcommand="new", usage="[name]", description="Registers a new system to this account.")
|
||||
async def new_system(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
@@ -39,12 +41,13 @@ async def new_system(conn, message, args):
|
||||
await db.link_account(conn, system_id=system["id"], account_id=message.author.id)
|
||||
return True, "System registered! To begin adding members, use `pk;member new <name>`."
|
||||
|
||||
|
||||
@command(cmd="pk;system", subcommand="info", usage="[system]", description="Shows information about a system.")
|
||||
async def system_info(conn, message, args):
|
||||
if len(args) == 0:
|
||||
# Use sender's system
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
|
||||
|
||||
if system is None:
|
||||
return False, "No system is registered to this account."
|
||||
else:
|
||||
@@ -53,14 +56,15 @@ async def system_info(conn, message, args):
|
||||
|
||||
if system is None:
|
||||
return False, "Unable to find system \"{}\".".format(args[0])
|
||||
|
||||
|
||||
await client.send_message(message.channel, embed=await generate_system_info_card(conn, system))
|
||||
return True
|
||||
|
||||
|
||||
@command(cmd="pk;system", subcommand="name", usage="[name]", description="Renames your system. Leave blank to clear.")
|
||||
async def system_name(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
|
||||
|
||||
if system is None:
|
||||
return False, "No system is registered to this account."
|
||||
|
||||
@@ -73,10 +77,11 @@ async def system_name(conn, message, args):
|
||||
await db.update_system_field(conn, system_id=system["id"], field="name", value=new_name)
|
||||
return True, "Name updated to {}.".format(new_name) if new_name else "Name cleared."
|
||||
|
||||
|
||||
@command(cmd="pk;system", subcommand="description", usage="[clear]", description="Updates your system description. Add \"clear\" to clear.")
|
||||
async def system_description(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
|
||||
|
||||
if system is None:
|
||||
return False, "No system is registered to this account."
|
||||
|
||||
@@ -93,10 +98,11 @@ async def system_description(conn, message, args):
|
||||
await db.update_system_field(conn, system_id=system["id"], field="description", value=new_description)
|
||||
return True, "Description set." if new_description else "Description cleared."
|
||||
|
||||
|
||||
@command(cmd="pk;system", subcommand="tag", usage="[tag]", description="Updates your system tag. Leave blank to clear.")
|
||||
async def system_tag(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
|
||||
|
||||
if system is None:
|
||||
return False, "No system is registered to this account."
|
||||
|
||||
@@ -110,24 +116,27 @@ async def system_tag(conn, message, args):
|
||||
members_exceeding = await db.get_members_exceeding(conn, system_id=system["id"], length=max_length - len(tag))
|
||||
if len(members_exceeding) > 0:
|
||||
# If so, error out and warn
|
||||
member_names = ", ".join([member["name"] for member in members_exceeding])
|
||||
logger.debug("Members exceeding combined length with tag '{}': {}".format(tag, member_names))
|
||||
member_names = ", ".join([member["name"]
|
||||
for member in members_exceeding])
|
||||
logger.debug("Members exceeding combined length with tag '{}': {}".format(
|
||||
tag, member_names))
|
||||
return False, "The maximum length of a name plus the system tag is 32 characters. The following members would exceed the limit: {}. Please reduce the length of the tag, or rename the members.".format(member_names)
|
||||
|
||||
async with conn.transaction():
|
||||
await db.update_system_field(conn, system_id=system["id"], field="tag", value=tag)
|
||||
|
||||
|
||||
return True, "Tag updated to {}.".format(tag) if tag else "Tag cleared."
|
||||
|
||||
|
||||
@command(cmd="pk;system", subcommand="remove", description="Removes your system ***permanently***.")
|
||||
async def system_remove(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
|
||||
|
||||
if system is None:
|
||||
return False, "No system is registered to this account."
|
||||
|
||||
await client.send_message(message.channel, "Are you sure you want to remove your system? If so, reply to this message with the system's ID (`{}`).".format(system["hid"]))
|
||||
|
||||
|
||||
msg = await client.wait_for_message(author=message.author, channel=message.channel)
|
||||
if msg.content == system["hid"]:
|
||||
await db.remove_system(conn, system_id=system["id"])
|
||||
@@ -139,7 +148,7 @@ async def system_remove(conn, message, args):
|
||||
@command(cmd="pk;system", subcommand="link", usage="<account>", description="Links another account to your system.")
|
||||
async def system_link(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
|
||||
|
||||
if system is None:
|
||||
return False, "No system is registered to this account."
|
||||
|
||||
@@ -176,7 +185,7 @@ async def system_link(conn, message, args):
|
||||
@command(cmd="pk;system", subcommand="unlink", description="Unlinks your system from this account. There must be at least one other account linked.")
|
||||
async def system_unlink(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
|
||||
|
||||
if system is None:
|
||||
return False, "No system is registered to this account."
|
||||
|
||||
@@ -184,15 +193,16 @@ async def system_unlink(conn, message, args):
|
||||
linked_accounts = await db.get_linked_accounts(conn, system_id=system["id"])
|
||||
if len(linked_accounts) == 1:
|
||||
return False, "This is the only account on your system, so you can't unlink it."
|
||||
|
||||
|
||||
async with conn.transaction():
|
||||
await db.unlink_account(conn, system_id=system["id"], account_id=message.author.id)
|
||||
return True, "Account unlinked."
|
||||
|
||||
|
||||
@command(cmd="pk;member", subcommand="new", usage="<name>", description="Adds a new member to your system.")
|
||||
async def new_member(conn, message, args):
|
||||
system = await db.get_system_by_account(conn, message.author.id)
|
||||
|
||||
|
||||
if system is None:
|
||||
return False, "No system is registered to this account."
|
||||
|
||||
@@ -208,11 +218,13 @@ async def new_member(conn, message, args):
|
||||
await db.create_member(conn, system_id=system["id"], member_name=name, member_hid=hid)
|
||||
return True, "Member \"{}\" (`{}`) registered!".format(name, hid)
|
||||
|
||||
|
||||
@member_command(cmd="pk;member", subcommand="info", description="Shows information about a system member.", system_only=False)
|
||||
async def member_info(conn, message, member, args):
|
||||
await client.send_message(message.channel, embed=await generate_member_info_card(conn, member))
|
||||
return True
|
||||
|
||||
|
||||
@member_command(cmd="pk;member", subcommand="color", usage="[color]", description="Updates a member's associated color. Leave blank to clear.")
|
||||
async def member_color(conn, message, member, args):
|
||||
if len(args) == 0:
|
||||
@@ -227,7 +239,8 @@ async def member_color(conn, message, member, args):
|
||||
async with conn.transaction():
|
||||
await db.update_member_field(conn, member_id=member["id"], field="color", value=color)
|
||||
return True, "Color updated to #{}.".format(color) if color else "Color cleared."
|
||||
|
||||
|
||||
|
||||
@member_command(cmd="pk;member", subcommand="pronouns", usage="[pronouns]", description="Updates a member's pronouns. Leave blank to clear.")
|
||||
async def member_pronouns(conn, message, member, args):
|
||||
if len(args) == 0:
|
||||
@@ -239,12 +252,13 @@ async def member_pronouns(conn, message, member, args):
|
||||
await db.update_member_field(conn, member_id=member["id"], field="pronouns", value=pronouns)
|
||||
return True, "Pronouns set to {}".format(pronouns) if pronouns else "Pronouns cleared."
|
||||
|
||||
|
||||
@member_command(cmd="pk;member", subcommand="birthdate", usage="[birthdate]", description="Updates a member's birthdate. Must be in ISO-8601 format (eg. 1999-07-25). Leave blank to clear.")
|
||||
async def member_birthday(conn, message, member, args):
|
||||
if len(args) == 0:
|
||||
new_date = None
|
||||
else:
|
||||
# Parse date
|
||||
# Parse date
|
||||
try:
|
||||
new_date = datetime.strptime(args[0], "%Y-%m-%d").date()
|
||||
except ValueError:
|
||||
@@ -254,6 +268,7 @@ async def member_birthday(conn, message, member, args):
|
||||
await db.update_member_field(conn, member_id=member["id"], field="birthday", value=new_date)
|
||||
return True, "Birthdate set to {}".format(new_date) if new_date else "Birthdate cleared."
|
||||
|
||||
|
||||
@member_command(cmd="pk;member", subcommand="description", description="Updates a member's description. Add \"clear\" to clear.")
|
||||
async def member_description(conn, message, member, args):
|
||||
if len(args) > 0 and args[0] == "clear":
|
||||
@@ -267,11 +282,12 @@ async def member_description(conn, message, member, args):
|
||||
async with conn.transaction():
|
||||
await db.update_member_field(conn, member_id=member["id"], field="description", value=new_description)
|
||||
return True, "Description set." if new_description else "Description cleared."
|
||||
|
||||
|
||||
|
||||
@member_command(cmd="pk;member", subcommand="remove", description="Removes a member from your system.")
|
||||
async def member_remove(conn, message, member, args):
|
||||
await client.send_message(message.channel, "Are you sure you want to remove {}? If so, reply to this message with the member's name.".format(member["name"]))
|
||||
|
||||
|
||||
msg = await client.wait_for_message(author=message.author, channel=message.channel)
|
||||
if msg.content == member["name"]:
|
||||
await db.delete_member(conn, member_id=member["id"])
|
||||
@@ -279,6 +295,7 @@ async def member_remove(conn, message, member, args):
|
||||
else:
|
||||
return True, "Member removal cancelled."
|
||||
|
||||
|
||||
@member_command(cmd="pk;member", subcommand="avatar", usage="[user|url]", description="Updates a member's avatar. Can be an account mention (which will use that account's avatar), or a link to an image. Leave blank to clear.")
|
||||
async def member_avatar(conn, message, member, args):
|
||||
if len(args) == 0:
|
||||
@@ -296,11 +313,11 @@ async def member_avatar(conn, message, member, args):
|
||||
avatar_url = args[0]
|
||||
else:
|
||||
return False, "Invalid URL."
|
||||
|
||||
|
||||
async with conn.transaction():
|
||||
await db.update_member_field(conn, member_id=member["id"], field="avatar_url", value=avatar_url)
|
||||
return True, "Avatar set." if avatar_url else "Avatar cleared."
|
||||
|
||||
|
||||
|
||||
@member_command(cmd="pk;member", subcommand="proxy", usage="[example]", description="Updates a member's proxy settings. Needs an \"example\" proxied message containing the string \"text\" (eg. [text], |text|, etc).")
|
||||
async def member_proxy(conn, message, member, args):
|
||||
@@ -318,7 +335,8 @@ async def member_proxy(conn, message, member, args):
|
||||
# Extract prefix and suffix
|
||||
prefix = example[:example.index("text")].strip()
|
||||
suffix = example[example.index("text")+4:].strip()
|
||||
logger.debug("Matched prefix '{}' and suffix '{}'".format(prefix, suffix))
|
||||
logger.debug(
|
||||
"Matched prefix '{}' and suffix '{}'".format(prefix, suffix))
|
||||
|
||||
# DB stores empty strings as None, make that work
|
||||
if not prefix:
|
||||
@@ -331,6 +349,7 @@ async def member_proxy(conn, message, member, args):
|
||||
await db.update_member_field(conn, member_id=member["id"], field="suffix", value=suffix)
|
||||
return True, "Proxy settings updated." if prefix or suffix else "Proxy settings cleared."
|
||||
|
||||
|
||||
@command(cmd="pk;message", subcommand=None, usage="<id>", description="Shows information about a proxied message. Requires the message ID.")
|
||||
async def message_info(conn, message, args):
|
||||
try:
|
||||
@@ -357,14 +376,16 @@ async def message_info(conn, message, args):
|
||||
embed = discord.Embed()
|
||||
embed.timestamp = message.timestamp
|
||||
embed.colour = discord.Colour.blue()
|
||||
|
||||
|
||||
if system["name"]:
|
||||
system_value = "`{}`: {}".format(system["hid"], system["name"])
|
||||
else:
|
||||
system_value = "`{}`".format(system["hid"])
|
||||
embed.add_field(name="System", value=system_value)
|
||||
embed.add_field(name="Member", value="`{}`: {}".format(member["hid"], member["name"]))
|
||||
embed.add_field(name="Sent by", value="{}#{}".format(original_sender.name, original_sender.discriminator))
|
||||
embed.add_field(name="Member", value="`{}`: {}".format(
|
||||
member["hid"], member["name"]))
|
||||
embed.add_field(name="Sent by", value="{}#{}".format(
|
||||
original_sender.name, original_sender.discriminator))
|
||||
embed.add_field(name="Content", value=message.clean_content, inline=False)
|
||||
|
||||
embed.set_author(name=member["name"], url=member["avatar_url"])
|
||||
@@ -372,12 +393,14 @@ async def message_info(conn, message, args):
|
||||
await client.send_message(message.channel, embed=embed)
|
||||
return True
|
||||
|
||||
|
||||
@command(cmd="pk;help", subcommand=None, usage="[system|member|message]", description="Shows this help message.")
|
||||
async def show_help(conn, message, args):
|
||||
embed = discord.Embed()
|
||||
embed.colour = discord.Colour.blue()
|
||||
embed.title = "PluralKit Help"
|
||||
embed.set_footer(text="<> denotes mandatory arguments, [] denotes optional arguments")
|
||||
embed.set_footer(
|
||||
text="<> denotes mandatory arguments, [] denotes optional arguments")
|
||||
|
||||
if len(args) > 0 and ("pk;" + args[0]) in command_map:
|
||||
cmds = ["", ("pk;" + args[0], command_map["pk;" + args[0]])]
|
||||
@@ -386,7 +409,8 @@ async def show_help(conn, message, args):
|
||||
|
||||
for cmd, subcommands in cmds:
|
||||
for subcmd, (_, usage, description) in subcommands.items():
|
||||
embed.add_field(name="{} {} {}".format(cmd, subcmd or "", usage or ""), value=description, inline=False)
|
||||
|
||||
embed.add_field(name="{} {} {}".format(
|
||||
cmd, subcmd or "", usage or ""), value=description, inline=False)
|
||||
|
||||
await client.send_message(message.channel, embed=embed)
|
||||
return True
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user