cleantoots/cleantoots/config.py

96 lines
2.8 KiB
Python
Raw Normal View History

2019-12-28 10:42:02 +01:00
import os
import sys
import click
from mastodon import Mastodon
2019-12-28 13:31:34 +01:00
from cleantoots.utils import (
_config_has_sections,
_open_url,
_get_default_config,
_is_tty,
)
2019-12-28 10:42:02 +01:00
2019-12-28 13:31:34 +01:00
@click.group("config")
2019-12-28 10:42:02 +01:00
@click.pass_obj
2019-12-28 13:31:34 +01:00
def config_command(config):
2019-12-28 10:42:02 +01:00
"""Manage cleantoot's config."""
pass
2019-12-28 13:31:34 +01:00
@config_command.command()
2019-12-28 10:42:02 +01:00
@click.pass_obj
def setup(config):
"""Initial setup for configuration directories and files."""
os.makedirs(config.dir, exist_ok=True)
if os.path.isfile(config.main_file):
click.secho(
"{} found. Not touching anything.".format(config.main_file), fg="yellow"
)
command = click.style("cleantoots config edit", bold=True)
click.echo("You may want to edit the file. Use: {}.".format(command))
return
2019-12-28 13:31:34 +01:00
default_config = _get_default_config()
2019-12-28 10:42:02 +01:00
with open(config.main_file, "w") as _file:
default_config.write(_file)
click.secho("{} written.".format(config.main_file), fg="green")
click.echo()
click.secho("Next steps", bold=True)
click.echo(
"You'll need to edit the config file in order to set some settings such as:"
)
click.echo("* The base URL of your Mastodon instance")
click.echo("* The toots you want to protect")
2019-12-28 13:31:34 +01:00
if _is_tty():
2019-12-28 10:42:02 +01:00
click.echo()
click.secho("We're going to open the file for you now.")
click.pause()
click.edit(filename=config.main_file)
2019-12-28 13:31:34 +01:00
@config_command.command(name="list")
2019-12-28 10:42:02 +01:00
@click.pass_obj
def list_(config):
"""Display parsed config."""
2019-12-28 13:31:34 +01:00
if not _config_has_sections(config):
2019-12-28 10:42:02 +01:00
return
for section_name in config.sections():
click.secho(section_name, bold=True)
section = config[section_name]
for key, value in section.items():
click.secho("{} = {}".format(key, value))
click.echo()
2019-12-28 13:31:34 +01:00
@config_command.command()
2019-12-28 10:42:02 +01:00
@click.pass_obj
def edit(config):
"""Edit config file."""
2019-12-28 13:31:34 +01:00
if not _config_has_sections(config):
2019-12-28 10:42:02 +01:00
return
if sys.stdout.isatty() and sys.stdin.isatty():
click.edit(filename=config.main_file)
else:
click.secho("Not running in a terminal, can't open file.", fg="red")
2019-12-28 13:31:34 +01:00
@config_command.command()
2019-12-28 10:42:02 +01:00
@click.pass_obj
def login(config):
"""Fetch credentials for each app described in config file."""
2019-12-28 13:31:34 +01:00
if not _config_has_sections(config):
return
2019-12-28 10:42:02 +01:00
for section in config.sections():
section = config[section]
Mastodon.create_app(
"cleantoots",
api_base_url=section.get("api_base_url"),
to_file=config.file(section.get("app_secret_file")),
)
mastodon = Mastodon(client_id=config.file(section.get("app_secret_file")))
2019-12-28 13:31:34 +01:00
_open_url(mastodon.auth_request_url())
2019-12-28 10:42:02 +01:00
code = click.prompt("Enter code for {}".format(section.get("api_base_url")))
mastodon.log_in(code=code, to_file=config.file(section.get("user_secret_file")))