Ruby-Cogs/away/away.py
2025-02-19 22:02:13 -05:00

686 lines
34 KiB
Python

import discord
from redbot.core import Config, commands, checks
from typing import Optional, Literal
import re
from datetime import datetime
IMAGE_LINKS = re.compile(r"(http[s]?:\/\/[^\"\']*\.(?:png|jpg|jpeg|gif|png))")
class Away(commands.Cog):
"""Le away cog"""
default_global_settings = {"ign_servers": []}
default_guild_settings = {"TEXT_ONLY": False, "BLACKLISTED_MEMBERS": []}
default_user_settings = {
"MESSAGE": False,
"IDLE_MESSAGE": False,
"DND_MESSAGE": False,
"OFFLINE_MESSAGE": False,
"GAME_MESSAGE": {},
"STREAMING_MESSAGE": False,
"LISTENING_MESSAGE": False
}
async def red_delete_data_for_user(
self, *, requester: Literal["discord", "owner", "user", "user_strict"], user_id: int,
):
await self.config.user_from_id(user_id).clear()
def __init__(self, bot):
self.bot = bot
self.config = Config.get_conf(self, 8423491260, force_registration=True)
self.config.register_global(**self.default_global_settings)
self.config.register_guild(**self.default_guild_settings)
self.config.register_user(**self.default_user_settings)
def _draw_play(self, song):
song_start_time = song.start
total_time = song.duration
current_time = discord.utils.utcnow()
elapsed_time = current_time - song_start_time
sections = 12
loc_time = round((elapsed_time / total_time) * sections) # 10 sections
bar_char = "\N{BOX DRAWINGS HEAVY HORIZONTAL}"
seek_char = "\N{RADIO BUTTON}"
play_char = "\N{BLACK RIGHT-POINTING TRIANGLE}"
msg = "\n" + play_char + " "
for i in range(sections):
if i == loc_time:
msg += seek_char
else:
msg += bar_char
dt_elapsed_time = datetime.utcfromtimestamp(elapsed_time.total_seconds())
dt_total_time = datetime.utcfromtimestamp(total_time.total_seconds())
if dt_total_time.hour >= 1: #If song is an hour or over long
total_time = dt_total_time.strftime(f"{dt_total_time.hour}:%M:%S")
if dt_elapsed_time.hour == 0: #If time elapsed has not been over an hour
elapsed_time = dt_elapsed_time.strftime(f"{dt_elapsed_time.minute}:%S")
else:
elapsed_time = dt_elapsed_time.strftime(f"{dt_elapsed_time.hour}:%M:%S")
else:
elapsed_time = dt_elapsed_time.strftime(f"{dt_elapsed_time.minute}:%S")
total_time = dt_total_time.strftime(f"{dt_total_time.minute}:%S")
msg += " `{}`/`{}`".format(elapsed_time, total_time)
return msg
async def make_embed_message(self, author, message, state=None):
"""
Makes the embed reply
"""
avatar = author.display_avatar # This will return default avatar if no avatar is present
color = author.color
if message:
link = IMAGE_LINKS.search(message)
if link:
message = message.replace(link.group(0), " ")
if state == "away":
em = discord.Embed(description=message, color=color)
em.set_author(name=f"{author.display_name} is currently away", icon_url=avatar)
elif state == "idle":
em = discord.Embed(description=message, color=color)
em.set_author(name=f"{author.display_name} is currently idle", icon_url=avatar)
elif state == "dnd":
em = discord.Embed(description=message, color=color)
em.set_author(name=f"{author.display_name} is currently do not disturb", icon_url=avatar)
elif state == "offline":
em = discord.Embed(description=message, color=color)
em.set_author(name=f"{author.display_name} is currently offline", icon_url=avatar)
elif state == "gaming":
em = discord.Embed(description=message, color=color)
em.set_author(
name=f"{author.display_name} is currently playing {author.activity.name}", icon_url=avatar,
)
em.title = getattr(author.activity, "details", None)
thumbnail = getattr(author.activity, "large_image_url", None)
if thumbnail:
em.set_thumbnail(url=thumbnail)
elif state == "gamingcustom":
status = [c for c in author.activities if c.type == discord.ActivityType.playing]
em = discord.Embed(description=message, color=color)
em.set_author(
name=f"{author.display_name} is currently playing {status[0].name}", icon_url=avatar,
)
em.title = getattr(status[0], "details", None)
thumbnail = getattr(status[0], "large_image_url", None)
if thumbnail:
em.set_thumbnail(url=thumbnail)
elif state == "listening":
em = discord.Embed(color=author.activity.color)
url = f"https://open.spotify.com/track/{author.activity.track_id}"
artist_title = f"{author.activity.title} by " + ", ".join(
a for a in author.activity.artists
)
limit = 256 - (
len(author.display_name) + 27
) # incase we go over the max allowable size
em.set_author(
name=f"{author.display_name} is currently listening to",
icon_url=avatar,
url=url,
)
em.description = (
f"{message}\n "
f"[{artist_title}]({url})\n"
f"{self._draw_play(author.activity)}"
)
em.set_thumbnail(url=author.activity.album_cover_url)
elif state == "listeningcustom":
activity = [c for c in author.activities if c.type == discord.ActivityType.listening]
em = discord.Embed(color=activity[0].color)
url = f"https://open.spotify.com/track/{activity[0].track_id}"
artist_title = f"{activity[0].title} by " + ", ".join(a for a in activity[0].artists)
limit = 256 - (len(author.display_name) + 27)
em.set_author(
name=f"{author.display_name} is currently listening to",
icon_url=avatar,
url=url
)
em.description = (
f"{message}\n "
f"[{artist_title}]({url})\n"
f"{self._draw_play(activity[0])}"
)
em.set_thumbnail(url=activity[0].album_cover_url)
elif state == "streaming":
color = int("6441A4", 16)
em = discord.Embed(color=color)
em.description = message + "\n" + author.activity.url
em.title = getattr(author.activity, "details", None)
em.set_author(
name=f"{author.display_name} is currently streaming {author.activity.name}", icon_url=avatar,
)
elif state == "streamingcustom":
activity = [c for c in author.activities if c.type == discord.ActivityType.streaming]
color = int("6441A4", 16)
em = discord.Embed(color=color)
em.description = message + "\n" + activity[0].url
em.title = getattr(author.activity, "details", None)
em.set_author(
name=f"{author.display_name} is currently streaming {activity[0].name}", icon_url=avatar,
)
else:
em = discord.Embed(color=color)
em.set_author(name="{} is currently away".format(author.display_name), icon_url=avatar)
if link and state not in ["listening", "listeningcustom", "gaming"]:
em.set_image(url=link.group(0))
return em
async def find_user_mention(self, message):
"""
Replaces user mentions with their username
"""
for word in message.split():
match = re.search(r"<@!?([0-9]+)>", word)
if match:
user = await self.bot.fetch_user(int(match.group(1)))
message = re.sub(match.re, "@" + user.name, message)
return message
async def make_text_message(self, author, message, state=None):
"""
Makes the message to display if embeds aren't available
"""
message = await self.find_user_mention(message)
if state == "away":
msg = f"{author.display_name} is currently away"
elif state == "idle":
msg = f"{author.display_name} is currently idle"
elif state == "dnd":
msg = f"{author.display_name} is currently do not disturb"
elif state == "offline":
msg = f"{author.display_name} is currently offline"
elif state == "gaming":
msg = f"{author.display_name} is currently playing {author.activity.name}"
elif state == "gamingcustom":
status = [c for c in author.activities if c.type == discord.ActivityType.playing]
msg = f"{author.display_name} is currently playing {status[0].name}"
elif state == "listening":
artist_title = f"{author.activity.title} by " + ", ".join(a for a in author.activity.artists)
currently_playing = self._draw_play(author.activity)
msg = f"{author.display_name} is currently listening to {artist_title}\n{currently_playing}"
elif state == "listeningcustom":
status = [c for c in author.activities if c.type == discord.ActivityType.listening]
artist_title = f"{status[0].title} by " + ", ".join(a for a in status[0].artists)
currently_playing = self._draw_play(status[0])
msg = f"{author.display_name} is currently listening to {artist_title}\n{currently_playing}"
elif state == "streaming":
msg = f"{author.display_name} is currently streaming at {author.activity.url}"
elif state == "streamingcustom":
status = [c for c in author.activities if c.type == discord.ActivityType.streaming]
msg = f"{author.display_name} is currently streaming at {status[0].url}"
else:
msg = f"{author.display_name} is currently away"
if message != " " and state != "listeningcustom":
msg += f" and has set the following message: `{message}`"
elif message != " " and state == "listeningcustom":
msg += f"\n\nCustom message: `{message}`"
return msg
async def is_mod_or_admin(self, member: discord.Member):
guild = member.guild
if member == guild.owner:
return True
if await self.bot.is_owner(member):
return True
if await self.bot.is_admin(member):
return True
if await self.bot.is_mod(member):
return True
return False
@commands.Cog.listener()
async def on_message_without_command(self, message: discord.Message):
guild = message.guild
if not guild or not message.mentions or message.author.bot:
return
if not message.channel.permissions_for(guild.me).send_messages:
return
blocked_guilds = await self.config.ign_servers()
guild_config = await self.config.guild(guild).all()
for author in message.mentions:
if (guild.id in blocked_guilds and not await self.is_mod_or_admin(author)) or author.id in guild_config["BLACKLISTED_MEMBERS"]:
continue
user_data = await self.config.user(author).all()
embed_links = message.channel.permissions_for(guild.me).embed_links
away_msg = user_data["MESSAGE"]
# Convert possible `delete_after` of < 5s of before PR#212
if isinstance(away_msg, list) and away_msg[1] is not None and away_msg[1] < 5:
await self.config.user(author).MESSAGE.set((away_msg[0], 5))
away_msg = away_msg[0], 5
if away_msg:
if type(away_msg) in [tuple, list]:
# This is just to keep backwards compatibility
away_msg, delete_after = away_msg
else:
delete_after = None
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, away_msg, "away")
await message.channel.send(embed=em, delete_after=delete_after)
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, away_msg, "away")
await message.channel.send(msg, delete_after=delete_after)
continue
idle_msg = user_data["IDLE_MESSAGE"]
# Convert possible `delete_after` of < 5s of before PR#212
if isinstance(idle_msg, list) and idle_msg[1] is not None and idle_msg[1] < 5:
await self.config.user(author).IDLE_MESSAGE.set((idle_msg[0], 5))
idle_msg = idle_msg[0], 5
if idle_msg and author.status == discord.Status.idle:
if type(idle_msg) in [tuple, list]:
idle_msg, delete_after = idle_msg
else:
delete_after = None
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, idle_msg, "idle")
await message.channel.send(embed=em, delete_after=delete_after)
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, idle_msg, "idle")
await message.channel.send(msg, delete_after=delete_after)
continue
dnd_msg = user_data["DND_MESSAGE"]
# Convert possible `delete_after` of < 5s of before PR#212
if isinstance(dnd_msg, list) and dnd_msg[1] is not None and dnd_msg[1] < 5:
await self.config.user(author).DND_MESSAGE.set((dnd_msg[0], 5))
dnd_msg = dnd_msg[0], 5
if dnd_msg and author.status == discord.Status.dnd:
if type(dnd_msg) in [tuple, list]:
dnd_msg, delete_after = dnd_msg
else:
delete_after = None
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, dnd_msg, "dnd")
await message.channel.send(embed=em, delete_after=delete_after)
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, dnd_msg, "dnd")
await message.channel.send(msg, delete_after=delete_after)
continue
offline_msg = user_data["OFFLINE_MESSAGE"]
# Convert possible `delete_after` of < 5s of before PR#212
if isinstance(offline_msg, list) and offline_msg[1] is not None and offline_msg[1] < 5:
await self.config.user(author).OFFLINE_MESSAGE.set((offline_msg[0], 5))
offline_msg = offline_msg[0], 5
if offline_msg and author.status == discord.Status.offline:
if type(offline_msg) in [tuple, list]:
offline_msg, delete_after = offline_msg
else:
delete_after = None
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, offline_msg, "offline")
await message.channel.send(embed=em, delete_after=delete_after)
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, offline_msg, "offline")
await message.channel.send(msg, delete_after=delete_after)
continue
streaming_msg = user_data["STREAMING_MESSAGE"]
# Convert possible `delete_after` of < 5s of before PR#212
if isinstance(streaming_msg, list) and streaming_msg[1] is not None and streaming_msg[1] < 5:
await self.config.user(author).STREAMING_MESSAGE.set((streaming_msg[0], 5))
streaming_msg = streaming_msg[0], 5
if streaming_msg and type(author.activity) is discord.Streaming:
streaming_msg, delete_after = streaming_msg
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, streaming_msg, "streaming")
await message.channel.send(embed=em, delete_after=delete_after)
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, streaming_msg, "streaming")
await message.channel.send(msg, delete_after=delete_after)
continue
if streaming_msg and type(author.activity) is discord.CustomActivity:
stream_status = [c for c in author.activities if c.type == discord.ActivityType.streaming]
if not stream_status:
continue
streaming_msg, delete_after = streaming_msg
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, streaming_msg, "streamingcustom")
await message.channel.send(embed=em, delete_after=delete_after)
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, streaming_msg, "streamingcustom")
await message.channel.send(msg, delete_after=delete_after)
continue
listening_msg = user_data["LISTENING_MESSAGE"]
# Convert possible `delete_after` of < 5s of before PR#212
if isinstance(listening_msg, list) and listening_msg[1] is not None and listening_msg[1] < 5:
await self.config.user(author).LISTENING_MESSAGE.set((listening_msg[0], 5))
listening_msg = listening_msg[0], 5
if listening_msg and type(author.activity) is discord.Spotify:
listening_msg, delete_after = listening_msg
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, listening_msg, "listening")
await message.channel.send(embed=em, delete_after=delete_after)
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, listening_msg, "listening")
await message.channel.send(msg, delete_after=delete_after)
continue
if listening_msg and type(author.activity) is discord.CustomActivity:
listening_status = [c for c in author.activities if c.type == discord.ActivityType.listening]
if not listening_status:
continue
listening_msg, delete_after = listening_msg
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, listening_msg, "listeningcustom")
await message.channel.send(embed=em, delete_after=delete_after)
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, listening_msg, "listeningcustom")
await message.channel.send(msg, delete_after=delete_after)
continue
gaming_msgs = user_data["GAME_MESSAGE"]
# Convert possible `delete_after` of < 5s of before PR#212
if isinstance(gaming_msgs, list) and gaming_msgs[1] is not None and gaming_msgs[1] < 5:
await self.config.user(author).GAME_MESSAGE.set((gaming_msgs[0], 5))
gaming_msgs = gaming_msgs[0], 5
if gaming_msgs and type(author.activity) in [discord.Game, discord.Activity]:
for game in gaming_msgs:
if game in author.activity.name.lower():
game_msg, delete_after = gaming_msgs[game]
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, game_msg, "gaming")
await message.channel.send(embed=em, delete_after=delete_after)
break # Let's not accidentally post more than one
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, game_msg, "gaming")
await message.channel.send(msg, delete_after=delete_after)
break
if gaming_msgs and type(author.activity) is discord.CustomActivity:
game_status = [c for c in author.activities if c.type == discord.ActivityType.playing]
if not game_status:
continue
for game in gaming_msgs:
if game in game_status[0].name.lower():
game_msg, delete_after = gaming_msgs[game]
if embed_links and not guild_config["TEXT_ONLY"]:
em = await self.make_embed_message(author, game_msg, "gamingcustom")
await message.channel.send(embed=em, delete_after=delete_after)
break # Let's not accidentally post more than one
elif (embed_links and guild_config["TEXT_ONLY"]) or not embed_links:
msg = await self.make_text_message(author, game_msg, "gamingcustom")
await message.channel.send(msg, delete_after=delete_after)
break
@commands.command(name="away")
async def away_(self, ctx, delete_after: Optional[int] = None, *, message: str = None):
"""
Tell the bot you're away or back.
`delete_after` Optional seconds to delete the automatic reply. Must be minimum 5 seconds
`message` The custom message to display when you're mentioned
"""
if delete_after is not None and delete_after < 5:
return await ctx.send("Please set a time longer than 5 seconds for the `delete_after` argument")
author = ctx.message.author
mess = await self.config.user(author).MESSAGE()
if mess:
await self.config.user(author).MESSAGE.set(False)
msg = "You're now back."
else:
if message is None:
await self.config.user(author).MESSAGE.set((" ", delete_after))
else:
await self.config.user(author).MESSAGE.set((message, delete_after))
msg = "You're now set as away."
await ctx.send(msg)
@commands.command(name="idle")
async def idle_(self, ctx, delete_after: Optional[int] = None, *, message: str = None):
"""
Set an automatic reply when you're idle.
`delete_after` Optional seconds to delete the automatic reply. Must be minimum 5 seconds
`message` The custom message to display when you're mentioned
"""
if delete_after is not None and delete_after < 5:
return await ctx.send("Please set a time longer than 5 seconds for the `delete_after` argument")
author = ctx.message.author
mess = await self.config.user(author).IDLE_MESSAGE()
if mess:
await self.config.user(author).IDLE_MESSAGE.set(False)
msg = "The bot will no longer reply for you when you're idle."
else:
if message is None:
await self.config.user(author).IDLE_MESSAGE.set((" ", delete_after))
else:
await self.config.user(author).IDLE_MESSAGE.set((message, delete_after))
msg = "The bot will now reply for you when you're idle."
await ctx.send(msg)
@commands.command(name="offline")
async def offline_(self, ctx, delete_after: Optional[int] = None, *, message: str = None):
"""
Set an automatic reply when you're offline.
`delete_after` Optional seconds to delete the automatic reply. Must be minimum 5 seconds
`message` The custom message to display when you're mentioned
"""
if delete_after is not None and delete_after < 5:
return await ctx.send("Please set a time longer than 5 seconds for the `delete_after` argument")
author = ctx.message.author
mess = await self.config.user(author).OFFLINE_MESSAGE()
if mess:
await self.config.user(author).OFFLINE_MESSAGE.set(False)
msg = "The bot will no longer reply for you when you're offline."
else:
if message is None:
await self.config.user(author).OFFLINE_MESSAGE.set((" ", delete_after))
else:
await self.config.user(author).OFFLINE_MESSAGE.set((message, delete_after))
msg = "The bot will now reply for you when you're offline."
await ctx.send(msg)
@commands.command(name="dnd", aliases=["donotdisturb"])
async def donotdisturb_(self, ctx, delete_after: Optional[int] = None, *, message: str = None):
"""
Set an automatic reply when you're dnd.
`delete_after` Optional seconds to delete the automatic reply. Must be minimum 5 seconds
`message` The custom message to display when you're mentioned
"""
if delete_after is not None and delete_after < 5:
return await ctx.send("Please set a time longer than 5 seconds for the `delete_after` argument")
author = ctx.message.author
mess = await self.config.user(author).DND_MESSAGE()
if mess:
await self.config.user(author).DND_MESSAGE.set(False)
msg = "The bot will no longer reply for you when you're set to do not disturb."
else:
if message is None:
await self.config.user(author).DND_MESSAGE.set((" ", delete_after))
else:
await self.config.user(author).DND_MESSAGE.set((message, delete_after))
msg = "The bot will now reply for you when you're set to do not disturb."
await ctx.send(msg)
@commands.command(name="streaming")
async def streaming_(self, ctx, delete_after: Optional[int] = None, *, message: str = None):
"""
Set an automatic reply when you're streaming.
`delete_after` Optional seconds to delete the automatic reply. Must be minimum 5 seconds
`message` The custom message to display when you're mentioned
"""
if delete_after is not None and delete_after < 5:
return await ctx.send("Please set a time longer than 5 seconds for the `delete_after` argument")
author = ctx.message.author
mess = await self.config.user(author).STREAMING_MESSAGE()
if mess:
await self.config.user(author).STREAMING_MESSAGE.set(False)
msg = "The bot will no longer reply for you when you're mentioned while streaming."
else:
if message is None:
await self.config.user(author).STREAMING_MESSAGE.set((" ", delete_after))
else:
await self.config.user(author).STREAMING_MESSAGE.set((message, delete_after))
msg = "The bot will now reply for you when you're mentioned while streaming."
await ctx.send(msg)
@commands.command(name="listening")
async def listening_(self, ctx, delete_after: Optional[int] = None, *, message: str = " "):
"""
Set an automatic reply when you're listening to Spotify.
`delete_after` Optional seconds to delete the automatic reply. Must be minimum 5 seconds
`message` The custom message to display when you're mentioned
"""
if delete_after is not None and delete_after < 5:
return await ctx.send("Please set a time longer than 5 seconds for the `delete_after` argument")
author = ctx.message.author
mess = await self.config.user(author).LISTENING_MESSAGE()
if mess:
await self.config.user(author).LISTENING_MESSAGE.set(False)
msg = "The bot will no longer reply for you when you're mentioned while listening to Spotify."
else:
await self.config.user(author).LISTENING_MESSAGE.set((message, delete_after))
msg = "The bot will now reply for you when you're mentioned while listening to Spotify."
await ctx.send(msg)
@commands.command(name="gaming")
async def gaming_(self, ctx, game: str, delete_after: Optional[int] = None, *, message: str = None):
"""
Set an automatic reply when you're playing a specified game.
`game` The game you would like automatic responses for
`delete_after` Optional seconds to delete the automatic reply. Must be minimum 5 seconds
`message` The custom message to display when you're mentioned
Use "double quotes" around a game's name if it is more than one word.
"""
if delete_after is not None and delete_after < 5:
return await ctx.send("Please set a time longer than 5 seconds for the `delete_after` argument")
author = ctx.message.author
mess = await self.config.user(author).GAME_MESSAGE()
if game.lower() in mess:
del mess[game.lower()]
await self.config.user(author).GAME_MESSAGE.set(mess)
msg = f"The bot will no longer reply for you when you're playing {game}."
else:
if message is None:
mess[game.lower()] = (" ", delete_after)
else:
mess[game.lower()] = (message, delete_after)
await self.config.user(author).GAME_MESSAGE.set(mess)
msg = f"The bot will now reply for you when you're playing {game}."
await ctx.send(msg)
@commands.command(name="toggleaway")
@commands.guild_only()
@checks.admin_or_permissions(administrator=True)
async def _ignore(self, ctx, member: discord.Member=None):
"""
Toggle away messages on the whole server or a specific guild member.
Mods, Admins and Bot Owner are immune to this.
"""
guild = ctx.message.guild
if member:
bl_mems = await self.config.guild(guild).BLACKLISTED_MEMBERS()
if member.id not in bl_mems:
bl_mems.append(member.id)
await self.config.guild(guild).BLACKLISTED_MEMBERS.set(bl_mems)
msg = f"Away messages will not appear when {member.display_name} is mentioned in this guild."
await ctx.send(msg)
elif member.id in bl_mems:
bl_mems.remove(member.id)
await self.config.guild(guild).BLACKLISTED_MEMBERS.set(bl_mems)
msg = f"Away messages will appear when {member.display_name} is mentioned in this guild."
await ctx.send(msg)
return
if guild.id in (await self.config.ign_servers()):
guilds = await self.config.ign_servers()
guilds.remove(guild.id)
await self.config.ign_servers.set(guilds)
message = "Not ignoring this guild anymore."
else:
guilds = await self.config.ign_servers()
guilds.append(guild.id)
await self.config.ign_servers.set(guilds)
message = "Ignoring this guild."
await ctx.send(message)
@commands.command()
@commands.guild_only()
@checks.admin_or_permissions(administrator=True)
async def awaytextonly(self, ctx):
"""
Toggle forcing the guild's away messages to be text only.
This overrides the embed_links check this cog uses for message sending.
"""
text_only = await self.config.guild(ctx.guild).TEXT_ONLY()
if text_only:
message = "Away messages will now be embedded or text only based on the bot's permissions for embed links."
else:
message = (
"Away messages are now forced to be text only, regardless of the bot's permissions for embed links."
)
await self.config.guild(ctx.guild).TEXT_ONLY.set(not text_only)
await ctx.send(message)
@commands.command(name="awaysettings", aliases=["awayset"])
async def away_settings(self, ctx):
"""View your current away settings"""
author = ctx.author
msg = ""
data = {
"MESSAGE": "Away",
"IDLE_MESSAGE": "Idle",
"DND_MESSAGE": "Do not disturb",
"OFFLINE_MESSAGE": "Offline",
"LISTENING_MESSAGE": "Listening",
"STREAMING_MESSAGE": "Streaming",
}
settings = await self.config.user(author).get_raw()
for attr, name in data.items():
if type(settings[attr]) in [tuple, list]:
# This is just to keep backwards compatibility
status_msg, delete_after = settings[attr]
else:
status_msg = settings[attr]
delete_after = None
if settings[attr] and len(status_msg) > 20:
status_msg = status_msg[:20] + "..."
if settings[attr] and len(status_msg) <= 1:
status_msg = "True"
if delete_after:
msg += f"{name}: {status_msg} deleted after {delete_after}s\n"
else:
msg += f"{name}: {status_msg}\n"
if "GAME_MESSAGE" in settings:
if not settings["GAME_MESSAGE"]:
games = "False"
else:
games = "True"
msg += f"Games: {games}\n"
for game in settings["GAME_MESSAGE"]:
status_msg, delete_after = settings["GAME_MESSAGE"][game]
if len(status_msg) > 20:
status_msg = status_msg[:-20] + "..."
if len(status_msg) <= 1:
status_msg = "True"
if delete_after:
msg += f"{game}: {status_msg} deleted after {delete_after}s\n"
else:
msg += f"{game}: {status_msg}\n"
if ctx.channel.permissions_for(ctx.me).embed_links:
em = discord.Embed(description=msg[:2048], color=author.color)
em.set_author(name=f"{author.display_name}'s away settings", icon_url=author.avatar.url)
await ctx.send(embed=em)
else:
await ctx.send(f"{author.display_name} away settings\n" + msg)