2020-09-02 00:08:06 +02:00
|
|
|
import argparse
|
|
|
|
import asyncio
|
|
|
|
import logging
|
|
|
|
import signal
|
|
|
|
import sys
|
|
|
|
import os
|
2020-10-19 00:20:58 +02:00
|
|
|
import tracemalloc
|
2020-09-02 00:08:06 +02:00
|
|
|
from argparse import Namespace
|
|
|
|
from typing import NoReturn
|
2020-10-19 00:20:58 +02:00
|
|
|
from datetime import datetime
|
2020-09-02 00:08:06 +02:00
|
|
|
|
|
|
|
import discord
|
2020-10-19 00:20:58 +02:00
|
|
|
import humanize
|
2020-09-02 00:08:06 +02:00
|
|
|
import pip
|
|
|
|
from rich.columns import Columns
|
|
|
|
from rich.console import Console
|
|
|
|
from rich.panel import Panel
|
|
|
|
from rich.traceback import install
|
|
|
|
from rich.table import Table, box
|
|
|
|
from rich.text import Text
|
2020-10-19 00:20:58 +02:00
|
|
|
from rich import print as rprint
|
2020-09-02 00:08:06 +02:00
|
|
|
|
|
|
|
import tuxbot.logging
|
|
|
|
from tuxbot.core.bot import Tux
|
2020-10-19 00:20:58 +02:00
|
|
|
from tuxbot.core import data_manager
|
|
|
|
from tuxbot.core import config
|
2020-09-02 00:08:06 +02:00
|
|
|
from . import __version__, version_info, ExitCodes
|
|
|
|
|
|
|
|
log = logging.getLogger("tuxbot.main")
|
|
|
|
|
|
|
|
console = Console()
|
|
|
|
install(console=console)
|
|
|
|
tracemalloc.start()
|
|
|
|
|
2020-10-19 00:20:58 +02:00
|
|
|
BORDER_STYLE = "not dim"
|
2020-09-02 00:08:06 +02:00
|
|
|
|
|
|
|
|
2020-10-19 00:20:58 +02:00
|
|
|
def list_instances() -> NoReturn:
|
|
|
|
"""List all available instances"""
|
|
|
|
app_config = config.ConfigFile(
|
|
|
|
data_manager.config_dir / "config.yaml", config.AppConfig
|
|
|
|
).config
|
2020-09-02 00:08:06 +02:00
|
|
|
|
|
|
|
console.print(
|
2020-10-19 00:20:58 +02:00
|
|
|
Panel("[bold green]Instances", style="green"), justify="center"
|
2020-09-02 00:08:06 +02:00
|
|
|
)
|
|
|
|
console.print()
|
|
|
|
|
|
|
|
columns = Columns(expand=True, padding=2, align="center")
|
2020-10-19 00:20:58 +02:00
|
|
|
for instance, details in app_config.instances.items():
|
|
|
|
active = details["active"]
|
|
|
|
last_run = (
|
|
|
|
humanize.naturaltime(
|
|
|
|
datetime.now() - datetime.fromtimestamp(details["last_run"])
|
|
|
|
)
|
|
|
|
or "[i]unknown"
|
|
|
|
)
|
2020-09-02 00:08:06 +02:00
|
|
|
|
|
|
|
table = Table(
|
2020-10-19 00:20:58 +02:00
|
|
|
style="dim", border_style=BORDER_STYLE, box=box.HEAVY_HEAD
|
2020-09-02 00:08:06 +02:00
|
|
|
)
|
|
|
|
table.add_column("Name")
|
2020-10-19 00:20:58 +02:00
|
|
|
table.add_column(("Running since" if active else "Last run"))
|
|
|
|
table.add_row(instance, last_run)
|
|
|
|
table.title = Text(instance, style="green" if active else "red")
|
2020-09-02 00:08:06 +02:00
|
|
|
columns.add_renderable(table)
|
|
|
|
console.print(columns)
|
|
|
|
console.print()
|
|
|
|
|
|
|
|
sys.exit(os.EX_OK)
|
|
|
|
|
|
|
|
|
|
|
|
def debug_info() -> NoReturn:
|
2020-10-19 00:20:58 +02:00
|
|
|
"""Show debug info relatives to the bot"""
|
2020-09-02 00:08:06 +02:00
|
|
|
python_version = sys.version.replace("\n", "")
|
|
|
|
pip_version = pip.__version__
|
|
|
|
tuxbot_version = __version__
|
|
|
|
dpy_version = discord.__version__
|
|
|
|
|
2020-10-19 00:20:58 +02:00
|
|
|
uptime = os.popen("uptime").read().strip().split()
|
2020-09-02 00:08:06 +02:00
|
|
|
|
|
|
|
console.print(
|
2020-10-19 00:20:58 +02:00
|
|
|
Panel("[bold blue]Debug Info", style="blue"), justify="center"
|
2020-09-02 00:08:06 +02:00
|
|
|
)
|
|
|
|
console.print()
|
|
|
|
|
|
|
|
columns = Columns(expand=True, padding=2, align="center")
|
|
|
|
|
2020-10-19 00:20:58 +02:00
|
|
|
table = Table(style="dim", border_style=BORDER_STYLE, box=box.HEAVY_HEAD)
|
2020-09-02 00:08:06 +02:00
|
|
|
table.add_column(
|
|
|
|
"Bot Info",
|
|
|
|
)
|
|
|
|
table.add_row(f"[u]Tuxbot version:[/u] {tuxbot_version}")
|
|
|
|
table.add_row(f"[u]Major:[/u] {version_info.major}")
|
|
|
|
table.add_row(f"[u]Minor:[/u] {version_info.minor}")
|
|
|
|
table.add_row(f"[u]Micro:[/u] {version_info.micro}")
|
|
|
|
table.add_row(f"[u]Level:[/u] {version_info.releaselevel}")
|
|
|
|
table.add_row(f"[u]Last change:[/u] {version_info.info}")
|
|
|
|
columns.add_renderable(table)
|
|
|
|
|
2020-10-19 00:20:58 +02:00
|
|
|
table = Table(style="dim", border_style=BORDER_STYLE, box=box.HEAVY_HEAD)
|
2020-09-02 00:08:06 +02:00
|
|
|
table.add_column(
|
|
|
|
"Python Info",
|
|
|
|
)
|
|
|
|
table.add_row(f"[u]Python version:[/u] {python_version}")
|
|
|
|
table.add_row(f"[u]Python executable path:[/u] {sys.executable}")
|
|
|
|
table.add_row(f"[u]Pip version:[/u] {pip_version}")
|
|
|
|
table.add_row(f"[u]Discord.py version:[/u] {dpy_version}")
|
|
|
|
columns.add_renderable(table)
|
|
|
|
|
2020-10-19 00:20:58 +02:00
|
|
|
table = Table(style="dim", border_style=BORDER_STYLE, box=box.HEAVY_HEAD)
|
2020-09-02 00:08:06 +02:00
|
|
|
table.add_column(
|
|
|
|
"Server Info",
|
|
|
|
)
|
|
|
|
table.add_row(f"[u]System:[/u] {os.uname().sysname}")
|
|
|
|
table.add_row(f"[u]System arch:[/u] {os.uname().machine}")
|
|
|
|
table.add_row(f"[u]Kernel:[/u] {os.uname().release}")
|
|
|
|
table.add_row(f"[u]User:[/u] {os.getlogin()}")
|
|
|
|
table.add_row(f"[u]Uptime:[/u] {uptime[2]}")
|
|
|
|
table.add_row(
|
|
|
|
f"[u]Load Average:[/u] {' '.join(map(str, os.getloadavg()))}"
|
|
|
|
)
|
|
|
|
columns.add_renderable(table)
|
|
|
|
|
|
|
|
console.print(columns)
|
|
|
|
console.print()
|
|
|
|
|
|
|
|
sys.exit(os.EX_OK)
|
|
|
|
|
|
|
|
|
|
|
|
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 - OpenSource bot",
|
|
|
|
usage="tuxbot <instance_name> [arguments]",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
2020-10-19 00:20:58 +02:00
|
|
|
"--version",
|
|
|
|
"-V",
|
|
|
|
action="store_true",
|
|
|
|
help="Show tuxbot's used version",
|
2020-09-02 00:08:06 +02:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2020-10-19 00:20:58 +02:00
|
|
|
"--debug", action="store_true", help="Show debug information."
|
2020-09-02 00:08:06 +02:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2020-10-19 00:20:58 +02:00
|
|
|
"--list-instances",
|
|
|
|
"-L",
|
|
|
|
action="store_true",
|
|
|
|
help="List all instance names",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--token", "-T", type=str, help="Run Tuxbot with passed token"
|
2020-09-02 00:08:06 +02:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"instance_name",
|
|
|
|
nargs="?",
|
|
|
|
help="Name of the bot instance created during `tuxbot-setup`.",
|
|
|
|
)
|
|
|
|
|
|
|
|
args = parser.parse_args(args)
|
|
|
|
|
|
|
|
return args
|
|
|
|
|
|
|
|
|
|
|
|
async def shutdown_handler(tux: Tux, signal_type, exit_code=None) -> NoReturn:
|
|
|
|
"""Handler when the bot shutdown
|
|
|
|
|
|
|
|
It cancels all running task.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
tux:Tux
|
|
|
|
Object for the bot.
|
|
|
|
signal_type:int, None
|
|
|
|
Exiting signal code.
|
|
|
|
exit_code:None|int
|
|
|
|
Code to show when exiting.
|
|
|
|
"""
|
|
|
|
if signal_type:
|
|
|
|
log.info("%s received. Quitting...", signal_type)
|
|
|
|
elif exit_code is None:
|
|
|
|
log.info("Shutting down from unhandled exception")
|
|
|
|
tux.shutdown_code = ExitCodes.CRITICAL
|
|
|
|
|
|
|
|
if exit_code is not None:
|
|
|
|
tux.shutdown_code = exit_code
|
|
|
|
|
|
|
|
await tux.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
async def run_bot(tux: Tux, cli_flags: Namespace) -> None:
|
|
|
|
"""This run the bot.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
tux:Tux
|
|
|
|
Object for the bot.
|
|
|
|
cli_flags:Namespace
|
|
|
|
All different flags passed in the console.
|
|
|
|
|
|
|
|
Returns
|
|
|
|
-------
|
|
|
|
None
|
|
|
|
When exiting, this function return None.
|
|
|
|
"""
|
|
|
|
data_path = data_manager.data_path(tux.instance_name)
|
|
|
|
|
|
|
|
tuxbot.logging.init_logging(10, location=data_path / "logs")
|
|
|
|
|
|
|
|
log.debug("====Basic Config====")
|
|
|
|
log.debug("Data Path: %s", data_path)
|
|
|
|
|
|
|
|
if cli_flags.token:
|
|
|
|
token = cli_flags.token
|
|
|
|
else:
|
2020-10-19 00:20:58 +02:00
|
|
|
token = tux.config.Core.token
|
2020-09-02 00:08:06 +02:00
|
|
|
|
|
|
|
if not token:
|
|
|
|
log.critical("Token must be set if you want to login.")
|
|
|
|
sys.exit(ExitCodes.CRITICAL)
|
|
|
|
|
|
|
|
try:
|
|
|
|
await tux.load_packages()
|
|
|
|
console.print()
|
|
|
|
await tux.start(token=token, bot=True)
|
|
|
|
except discord.LoginFailure:
|
|
|
|
log.critical("This token appears to be valid.")
|
|
|
|
console.print()
|
|
|
|
console.print(
|
|
|
|
"[prompt.invalid]This token appears to be valid. [i]exiting...[/i]"
|
|
|
|
)
|
|
|
|
sys.exit(ExitCodes.CRITICAL)
|
|
|
|
except Exception as e:
|
2020-10-19 00:20:58 +02:00
|
|
|
log.critical(e)
|
2020-09-02 00:08:06 +02:00
|
|
|
raise e
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def run() -> NoReturn:
|
2020-10-19 00:20:58 +02:00
|
|
|
"""Main function"""
|
2020-09-02 00:08:06 +02:00
|
|
|
tux = None
|
|
|
|
cli_flags = parse_cli_flags(sys.argv[1:])
|
|
|
|
|
|
|
|
if cli_flags.list_instances:
|
|
|
|
list_instances()
|
|
|
|
elif cli_flags.debug:
|
|
|
|
debug_info()
|
|
|
|
elif cli_flags.version:
|
2020-10-19 00:20:58 +02:00
|
|
|
rprint(f"Tuxbot V{version_info.major}")
|
|
|
|
rprint(f"Complete Version: {__version__}")
|
2020-09-02 00:08:06 +02:00
|
|
|
|
|
|
|
sys.exit(os.EX_OK)
|
|
|
|
|
|
|
|
loop = asyncio.new_event_loop()
|
|
|
|
asyncio.set_event_loop(loop)
|
|
|
|
|
|
|
|
try:
|
|
|
|
if not cli_flags.instance_name:
|
|
|
|
console.print(
|
|
|
|
"[red]No instance provided ! "
|
|
|
|
"You can use 'tuxbot -L' to list all available instances"
|
|
|
|
)
|
|
|
|
sys.exit(ExitCodes.CRITICAL)
|
|
|
|
|
|
|
|
tux = Tux(
|
|
|
|
cli_flags=cli_flags,
|
|
|
|
description="Tuxbot, made from and for OpenSource",
|
|
|
|
dm_help=None,
|
|
|
|
)
|
|
|
|
|
|
|
|
loop.run_until_complete(run_bot(tux, cli_flags))
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
console.print(
|
|
|
|
" [red]Please use <prefix>quit instead of Ctrl+C to Shutdown!"
|
|
|
|
)
|
|
|
|
log.warning("Please use <prefix>quit instead of Ctrl+C to Shutdown!")
|
|
|
|
log.info("Received KeyboardInterrupt")
|
|
|
|
console.print("[i]Trying to shutdown...")
|
|
|
|
if tux is not None:
|
|
|
|
loop.run_until_complete(shutdown_handler(tux, signal.SIGINT))
|
|
|
|
except SystemExit as exc:
|
|
|
|
log.info("Shutting down with exit code: %s", exc.code)
|
|
|
|
if tux is not None:
|
|
|
|
loop.run_until_complete(shutdown_handler(tux, None, exc.code))
|
2020-10-19 00:20:58 +02:00
|
|
|
raise
|
2020-09-02 00:08:06 +02:00
|
|
|
except Exception as exc:
|
|
|
|
log.error("Unexpected exception (%s): ", type(exc))
|
|
|
|
console.print_exception()
|
|
|
|
if tux is not None:
|
|
|
|
loop.run_until_complete(shutdown_handler(tux, None, 1))
|
|
|
|
finally:
|
|
|
|
loop.run_until_complete(loop.shutdown_asyncgens())
|
|
|
|
log.info("Please wait, cleaning up a bit more")
|
|
|
|
loop.run_until_complete(asyncio.sleep(1))
|
|
|
|
asyncio.set_event_loop(None)
|
|
|
|
loop.stop()
|
|
|
|
loop.close()
|
|
|
|
exit_code = ExitCodes.CRITICAL if tux is None else tux.shutdown_code
|
|
|
|
|
|
|
|
sys.exit(exit_code)
|