tuxbot-bot/tuxbot/setup.py

430 lines
11 KiB
Python
Raw Normal View History

import argparse
import importlib
2020-06-03 16:24:38 +00:00
import logging
import re
import sys
from argparse import Namespace
2020-06-03 16:24:38 +00:00
from pathlib import Path
2020-08-26 15:15:38 +00:00
from typing import NoReturn, Union, List
2020-06-03 16:24:38 +00:00
2020-08-26 15:15:38 +00:00
from rich.prompt import Prompt, IntPrompt
from rich.console import Console
from rich.rule import Rule
from rich.style import Style
2020-08-27 23:06:57 +00:00
from rich.traceback import install
2020-06-03 16:24:38 +00:00
2020-10-19 20:17:19 +00:00
from tuxbot.core.config import set_for, set_for_key
from tuxbot.logging import formatter
from tuxbot.core.data_manager import config_dir, app_dir, cogs_data_path
2020-09-01 22:08:06 +00:00
from tuxbot.core import config
2020-06-03 16:24:38 +00:00
2020-08-26 15:15:38 +00:00
console = Console()
2020-08-27 23:06:57 +00:00
install(console=console)
2020-06-03 16:24:38 +00:00
try:
config_dir.mkdir(parents=True, exist_ok=True)
except PermissionError:
console.print(
f"mkdir: cannot create directory '{config_dir}': Permission denied"
)
2020-06-03 16:24:38 +00:00
sys.exit(1)
2020-10-19 20:17:19 +00:00
app_config = config.ConfigFile(
config_dir / "config.yaml", config.AppConfig
).config
2020-06-03 16:24:38 +00:00
2020-10-19 20:17:19 +00:00
if not app_config.Instances:
2020-06-03 16:24:38 +00:00
instances_list = []
else:
2020-10-19 20:17:19 +00:00
instances_list = list(app_config.Instances.keys())
2020-06-03 16:24:38 +00:00
def get_name() -> str:
2020-06-03 22:46:53 +00:00
"""Get instance name via input.
Returns
-------
str
The instance name choose by user.
"""
2020-06-03 16:24:38 +00:00
name = ""
while not name:
2020-08-26 15:15:38 +00:00
name = Prompt.ask(
2020-06-03 16:24:38 +00:00
"What name do you want to give this instance?\n"
2020-08-26 15:15:38 +00:00
"[i](valid characters: A-Z, a-z, 0-9, _, -)[/i]\n",
default="prod",
console=console,
2020-06-03 16:24:38 +00:00
)
if re.fullmatch(r"[a-zA-Z0-9_\-]*", name) is None:
2020-09-01 22:08:06 +00:00
console.print()
console.print("[prompt.invalid]ERROR: Invalid characters provided")
2020-06-03 16:24:38 +00:00
name = ""
return name
def get_data_dir(instance_name: str) -> Path:
2020-06-03 22:46:53 +00:00
"""Returning data path.
Parameters
----------
instance_name:str
Instance name.
Returns
-------
Path
The data config path corresponding to the instance.
"""
2020-06-03 16:24:38 +00:00
data_path = Path(app_dir.user_data_dir) / "data" / instance_name
data_path_input = ""
2020-09-01 22:08:06 +00:00
console.print()
2020-06-03 16:24:38 +00:00
def make_data_dir(path: Path) -> Union[Path, str]:
try:
path.mkdir(parents=True, exist_ok=True)
except OSError:
2020-09-01 22:08:06 +00:00
console.print()
console.print(
2020-08-26 15:15:38 +00:00
f"mkdir: cannot create directory '{path}': Permission denied"
2020-06-03 16:24:38 +00:00
)
path = ""
return path
while not data_path_input:
2020-08-26 15:15:38 +00:00
data_path_input = Path(
Prompt.ask(
"where do you want to save the configurations?",
default=str(data_path),
console=console,
2020-08-26 15:15:38 +00:00
)
2020-06-03 16:24:38 +00:00
)
2020-08-26 15:15:38 +00:00
try:
exists = data_path_input.exists()
except OSError:
2020-09-01 22:08:06 +00:00
console.print()
console.print(
2020-08-26 15:15:38 +00:00
"[prompt.invalid]"
"Impossible to verify the validity of the path,"
" make sure it does not contain any invalid characters."
)
data_path_input = ""
exists = False
if data_path_input and not exists:
data_path_input = make_data_dir(data_path_input)
2020-06-03 16:24:38 +00:00
2020-09-01 22:08:06 +00:00
console.print()
console.print(
2020-06-03 16:24:38 +00:00
f"You have chosen {data_path_input} to be your config directory for "
f"`{instance_name}` instance"
)
if (
Prompt.ask(
"Please confirm", choices=["y", "n"], default="y", console=console
)
!= "y"
):
2020-09-01 22:08:06 +00:00
console.print("Rerun the process to redo this configuration.")
2020-06-03 16:24:38 +00:00
sys.exit(0)
2020-06-06 16:51:47 +00:00
(data_path_input / "logs").mkdir(parents=True, exist_ok=True)
2020-06-03 16:24:38 +00:00
return data_path_input
def get_token() -> str:
2020-06-03 22:46:53 +00:00
"""Get token via input.
Returns
-------
str
The token choose by user.
"""
2020-06-03 16:24:38 +00:00
token = ""
while not token:
2020-08-26 15:15:38 +00:00
token = Prompt.ask(
"Please enter the bot token "
"(you can find it at https://discord.com/developers/applications)",
console=console,
2020-06-03 16:24:38 +00:00
)
if (
re.fullmatch(
2020-08-26 15:15:38 +00:00
r"([a-zA-Z0-9]{24}\.[a-zA-Z0-9_]{6}\.[a-zA-Z0-9_\-]{27}"
r"|mfa\.[a-zA-Z0-9_\-]{84})",
token,
)
is None
):
2020-09-01 22:08:06 +00:00
console.print("[prompt.invalid]ERROR: Invalid token provided")
2020-06-03 16:24:38 +00:00
token = ""
return token
2020-06-06 16:51:47 +00:00
def get_multiple(
question: str, confirmation: str, value_type: type
2020-06-06 16:51:47 +00:00
) -> List[Union[str, int]]:
2020-06-03 22:46:53 +00:00
"""Give possibility to user to fill multiple value.
Parameters
----------
question:str
First question.
confirmation:str
Asking text if user want to add another.
value_type:type
The type of values inside the list.
Returns
-------
List[Union[str, int]]
List containing user filled values.
"""
2020-08-26 15:15:38 +00:00
prompt = IntPrompt if value_type is int else Prompt
user_input = prompt.ask(question, console=console)
if not user_input:
return []
values = [user_input]
2020-06-03 16:24:38 +00:00
while (
Prompt.ask(
confirmation, choices=["y", "n"], default="n", console=console
)
!= "n"
):
2020-08-26 15:15:38 +00:00
new = prompt.ask("Other")
if new not in values:
values.append(new)
else:
2020-09-01 22:08:06 +00:00
console.print(
2020-08-26 15:15:38 +00:00
f"[prompt.invalid]"
f"ERROR: `{new}` is already present, [i]ignored[/i]"
)
2020-06-03 16:24:38 +00:00
return values
2020-06-03 16:24:38 +00:00
def get_extra(question: str, value_type: type) -> Union[str, int]:
prompt = IntPrompt if value_type is int else Prompt
return prompt.ask(question, console=console)
def additional_config(instance: str, cogs: str = "**"):
2020-06-03 22:46:53 +00:00
"""Asking for additional configs in cogs.
Returns
-------
dict:
Dict with cog name as key and configs as value.
"""
if cogs is None or "all" in sum(cogs, []):
cogs = []
else:
cogs = sum(cogs, [])
if len(cogs) == 0:
paths = Path("tuxbot/cogs").glob("**/config.py")
else:
paths = [Path(f"tuxbot/cogs/{cog}/config.py") for cog in cogs]
for path in paths:
cog_name = str(path.parent).split("/")[-1]
if path.exists():
console.print(Rule(f"\nConfiguration for `{cog_name}` module"))
mod = importlib.import_module(str(path).replace("/", ".")[:-3])
mod_config_type = getattr(mod, cog_name.capitalize() + "Config")
mod_extra = getattr(mod, "extra")
mod_config = config.ConfigFile(
str(cogs_data_path(instance, cog_name) / "config.yaml"),
mod_config_type,
).config
extras = {}
for key, value in mod_extra.items():
extras[key] = get_extra(value["description"], value["type"])
set_for(mod_config, **extras)
else:
console.print(
Rule(
f"\nFailed to fetch information for `{cog_name}` module",
style=Style(color="red"),
)
)
2020-06-03 16:24:38 +00:00
def finish_setup(data_dir: Path) -> NoReturn:
2020-06-03 22:46:53 +00:00
"""Configs who directly refer to the bot.
Parameters
----------
data_dir:Path
Where to save configs.
"""
2020-09-01 22:08:06 +00:00
console.print(
Rule("Now, it's time to finish this setup by giving bot information")
2020-08-26 15:15:38 +00:00
)
2020-09-01 22:08:06 +00:00
console.print()
2020-06-03 16:24:38 +00:00
token = get_token()
2020-08-26 15:15:38 +00:00
2020-09-01 22:08:06 +00:00
console.print()
2020-06-03 17:41:30 +00:00
prefixes = get_multiple(
"Choice a (or multiple) prefix for the bot",
"Add another prefix ?",
str,
2020-06-03 17:41:30 +00:00
)
2020-09-01 22:08:06 +00:00
console.print()
mentionable = (
Prompt.ask(
"Does the bot answer if it's mentioned?",
choices=["y", "n"],
default="y",
)
== "y"
)
2020-08-26 15:15:38 +00:00
2020-09-01 22:08:06 +00:00
console.print()
2020-06-03 17:41:30 +00:00
owners_id = get_multiple(
2020-06-06 16:51:47 +00:00
"Give the owner id of this bot", "Add another owner ?", int
2020-06-03 17:41:30 +00:00
)
2020-06-03 16:24:38 +00:00
2020-09-01 22:08:06 +00:00
instance_config = config.ConfigFile(
str(data_dir / "config.yaml"), config.Config
)
2020-06-03 16:24:38 +00:00
2020-09-01 22:08:06 +00:00
instance_config.config.Core.owners_id = owners_id
instance_config.config.Core.prefixes = prefixes
instance_config.config.Core.token = token
instance_config.config.Core.mentionable = mentionable
instance_config.config.Core.locale = "en-US"
2020-06-03 16:24:38 +00:00
def basic_setup() -> NoReturn:
"""Configs who refer to instances."""
2020-09-01 22:08:06 +00:00
console.print(
2020-08-26 15:15:38 +00:00
Rule(
"Hi ! it's time for you to give me information about you instance"
)
)
2020-09-01 22:08:06 +00:00
console.print()
2020-06-03 16:24:38 +00:00
name = get_name()
data_dir = get_data_dir(name)
if name in instances_list:
2020-09-01 22:08:06 +00:00
console.print()
2020-08-26 15:15:38 +00:00
console.print(
f"WARNING: An instance named `{name}` already exists "
f"Continuing will overwrite this instance configs.",
style="red",
2020-06-03 16:24:38 +00:00
)
if (
Prompt.ask(
2020-08-26 15:15:38 +00:00
"Are you sure you want to continue?",
choices=["y", "n"],
default="n",
)
== "n"
):
2020-09-01 22:08:06 +00:00
console.print("Abandon...")
2020-06-03 16:24:38 +00:00
sys.exit(0)
2020-10-19 20:17:19 +00:00
set_for_key(
app_config.Instances,
name,
config.AppConfig.Instance,
path=str(data_dir.resolve()),
active=False,
)
2020-06-03 16:24:38 +00:00
2020-09-01 22:08:06 +00:00
console.print("\n" * 4)
2020-06-03 16:24:38 +00:00
finish_setup(data_dir)
2020-09-01 22:08:06 +00:00
console.print()
console.print(
2020-06-03 16:24:38 +00:00
f"Instance successfully created! "
f"You can now run `tuxbot {name}` to launch this instance now or "
f"setup the additional configs by running "
f"`tuxbot-setup {name} --additional-config=all`"
)
def parse_cli_flags(args: list) -> Namespace:
"""Parser for cli values.
Parameters
----------
args:list
Is a list of all passed values.
Returns
-------
Namespace
"""
parser = argparse.ArgumentParser(
description="Tuxbot Setup - OpenSource bot",
usage="tuxbot-setup [instance] [arguments]",
)
parser.add_argument(
"instance_name",
nargs="?",
help="Name of the bot instance to edit.",
)
parser.add_argument(
"-a",
"--additional-config",
action="append",
nargs="+",
help="Execute setup to additional configs",
2020-06-03 16:24:38 +00:00
)
args = parser.parse_args(args)
return args
2020-06-03 16:24:38 +00:00
2020-06-03 22:46:53 +00:00
def setup() -> NoReturn:
cli_flags = parse_cli_flags(sys.argv[1:])
2020-06-03 16:24:38 +00:00
try:
# Create a new instance.
2020-06-03 16:24:38 +00:00
level = logging.DEBUG
2020-06-03 17:41:30 +00:00
base_logger = logging.getLogger("tuxbot")
2020-06-03 16:24:38 +00:00
base_logger.setLevel(level)
stdout_handler = logging.StreamHandler(sys.stdout)
stdout_handler.setFormatter(formatter)
base_logger.addHandler(stdout_handler)
if cli_flags.additional_config and not cli_flags.instance_name:
console.print(
"[red]No instance to modify provided ! "
"You can use 'tuxbot -L' to list all available instances"
)
elif cli_flags.instance_name:
additional_config(
cli_flags.instance_name, cli_flags.additional_config
)
else:
console.clear()
basic_setup()
2020-06-03 16:24:38 +00:00
except KeyboardInterrupt:
2020-09-01 22:08:06 +00:00
console.print("Exiting...")
except Exception:
2020-08-27 23:06:57 +00:00
console.print_exception()
2020-06-03 16:24:38 +00:00
if __name__ == "__main__":
setup()