-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmds.py
165 lines (137 loc) · 6.36 KB
/
cmds.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import discord
from discord.ext import commands
from os import path
import util
from yaml import safe_load
def has_required_role(member):
if member.guild is None:
return False
# Check if the member has the "Administrator" permission
if any(role.permissions.administrator for role in member.roles):
return True
allowed_roles = util.load_config(member.guild.id).get('allowed_roles', [])
# Check if the member has any of the allowed roles
return any(role.name in allowed_roles for role in member.roles)
@commands.command(
name='move',
help='Move all users from the source voice channel to the destination voice channel. If no source channel is specified, your current voice channel will be used. \nParameters: \n <destination> - The name of the destination voice channel. \n (source) - (Optional) The name of the source voice channel.'
)
async def move(ctx, destination_name: str = None, source_name: str = None):
# If both destination_name and source_name are None, display help output
if destination_name is None and source_name is None:
help_output = (
"Usage:\n"
"!move <destination> (source)\n\n"
"Move all users from the source voice channel to the destination voice channel.\n"
"If no source channel is specified, your current voice channel will be used.\n"
"Parameters:\n"
"<destination> - The name of the destination voice channel.\n"
"(source) - (Optional) The name of the source voice channel."
)
await ctx.send(help_output)
return
# Check if the bot is connected to the guild
if ctx.guild is None:
# user_id = ctx.author.id
# associated_guilds = await util.find_user_guild(ctx, user_id)
# if len(associated_guilds) == 1:
# for guild in associated_guilds:
# response += f"{guild.name}\n"
# ctx.guild = guild
await ctx.send('Error: This command can only be used in a server.')
return
# Make sure the user has the required role
if not has_required_role(ctx.author):
await ctx.send("You do not have the required role to use this command.")
return
# Set source voice channel
if source_name:
source_channel = discord.utils.get(
ctx.guild.voice_channels, name=source_name)
if not source_channel:
await ctx.send(f'Error: could not find source voice channel "{source_name}"')
return
else:
if not ctx.author.voice:
await ctx.send('Error: you are not currently in a voice channel.')
return
source_channel = ctx.author.voice.channel
if not source_channel.members:
await ctx.send(f'No users found in the source channel "{source_name}".')
return
# Get destination voice channel
destination_channel = discord.utils.get(
ctx.guild.voice_channels, name=destination_name)
if not destination_channel:
await ctx.send(f'Error: could not find destination voice channel "{destination_name}"')
return
moved_users_count = len(source_channel.members)
# Move all users in source channel to destination channel
for member in source_channel.members:
try:
await member.move_to(destination_channel)
except discord.errors.HTTPException as e:
await ctx.send(f'Error moving {member.display_name}: {str(e)}')
# Send confirmation message
await ctx.send(f'Moved {util.pluralize(moved_users_count, "user", "users")} from {source_channel.name} to {destination_channel.name}')
@commands.command(
name='setlogchannel',
help='Set the name of the log channel for voice activity.'
)
async def set_log_channel(ctx, log_channel_name: str = None):
# Make sure the user has the required role
if not has_required_role(ctx.author):
await ctx.send("You do not have the required role to use this command.")
return
if log_channel_name is None:
await ctx.send("Please provide a log channel name.")
return
config = util.load_config(ctx.guild.id)
config['log_channel_name'] = log_channel_name
util.save_config(ctx.guild.id, config)
await ctx.send(f'Successfully set the log channel name to "{log_channel_name}".')
@commands.command(name='toggle_logging')
async def toggle_logging(ctx):
# Make sure the user has the required role
if not has_required_role(ctx.author):
await ctx.send("You do not have the required role to use this command.")
return
guild_id = ctx.guild.id
config = util.load_config(guild_id)
logging_enabled = config.get('logging_enabled', True)
config['logging_enabled'] = not logging_enabled
util.save_config(guild_id, config)
if logging_enabled:
await ctx.send("Logging has been disabled.")
else:
await ctx.send("Logging has been enabled.")
@commands.command(name='allowed_roles')
async def allowed_roles(ctx, action: str = "show", role_name: str = None):
# Check if they have an allowed role
if not has_required_role(ctx.author):
await ctx.send("You do not have the required role to use this command.")
return
config = util.load_config(ctx.guild.id)
allowed_roles = config.get('allowed_roles', [])
if action.lower() == "show" or role_name is None:
if not allowed_roles:
await ctx.send("No allowed roles have been set.")
else:
await ctx.send(f"Allowed roles: {', '.join(allowed_roles)}")
elif action.lower() == "add" and role_name:
if role_name not in allowed_roles:
allowed_roles.append(role_name)
await ctx.send(f'Successfully added "{role_name}" to the allowed roles list.')
else:
await ctx.send(f'Role "{role_name}" is already in the allowed roles list.')
elif action.lower() == "remove" and role_name:
if role_name in allowed_roles:
allowed_roles.remove(role_name)
await ctx.send(f'Successfully removed "{role_name}" from the allowed roles list.')
else:
await ctx.send(f'Role "{role_name}" is not in the allowed roles list.')
else:
await ctx.send('Invalid action. Please use "show", "add", or "remove".')
# Save the updated allowed_roles list to the config
config['allowed_roles'] = allowed_roles
util.save_config(ctx.guild.id, config)