-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfigstartup.py
59 lines (41 loc) · 1.61 KB
/
configstartup.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
import commands
import configparser
class ConfigFileNotFound(FileNotFoundError):
pass
class MissingToken(Exception):
pass
class InvalidCommand(Exception):
pass
config = configparser.ConfigParser()
if not config.read('config/config.ini'):
raise ConfigFileNotFound(
"Can't find config file! Did you create a file config.ini with similar structure to default.ini?")
if not config['KEYS'].get('DiscordToken'):
raise MissingToken(
"Can't find Discord token! Did you add it to the configuration file?")
def disable(command):
# Disable the command
command_cls, _ = commands.help.Helpme.find_command(command.split())
if command_cls == commands.base.Command:
# There's a command in the config file that isn't a command
raise InvalidCommand(
f"Error: {command} is not a command, thus it can't be disabled")
command_cls.disabled = True
def disable_dependencies():
# Disable commands which rely on an API key that isn't available
dependencies = {'TwitchClientID': 'twitch'}
# Disable specific commands if their key doesn't exist
for key, val in dependencies.items():
if not config['KEYS'].get(key):
disable(val)
def disable_config_commands():
# Disable commands specified in the config
blocked_commands = config['BLOCKED'].get('blockedCommands')
if blocked_commands:
# There are some commands to block
for comm in blocked_commands.split(','):
disable(comm)
def disable_commands():
# Disable both dependency and config commands
disable_dependencies()
disable_config_commands()