2017-04-15 14:53:08 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2017-04-12 16:42:04 +02:00
|
|
|
import os
|
2018-01-02 10:44:32 +01:00
|
|
|
import json
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
from functools import wraps
|
2018-01-15 23:14:20 +01:00
|
|
|
from os.path import dirname
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
from toot import User, App
|
|
|
|
from toot.config_legacy import load_legacy_config
|
|
|
|
from toot.exceptions import ConsoleError
|
|
|
|
from toot.output import print_out
|
2017-04-18 16:16:24 +02:00
|
|
|
|
|
|
|
|
2018-01-14 15:28:05 +01:00
|
|
|
def get_config_file_path():
|
|
|
|
"""Returns the path to toot config file
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-14 15:28:05 +01:00
|
|
|
Attempts to locate config home dir from XDG_CONFIG_HOME env variable.
|
|
|
|
See: https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables
|
|
|
|
If not found, defaults to `~/.config`.
|
|
|
|
"""
|
|
|
|
config_dir = os.getenv('XDG_CONFIG_HOME', '~/.config')
|
|
|
|
return os.path.expanduser(config_dir + '/toot/config.json')
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-14 15:28:05 +01:00
|
|
|
|
|
|
|
CONFIG_FILE = get_config_file_path()
|
2017-04-18 16:16:24 +02:00
|
|
|
|
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
def user_id(user):
|
|
|
|
return "{}@{}".format(user.username, user.instance)
|
2017-04-18 16:16:24 +02:00
|
|
|
|
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
def make_config(path):
|
|
|
|
"""Creates a config file.
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
Attempts to load data from legacy config files if they exist.
|
|
|
|
"""
|
|
|
|
apps, user = load_legacy_config()
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
apps = {a.instance: a._asdict() for a in apps}
|
|
|
|
users = {user_id(user): user._asdict()} if user else {}
|
|
|
|
active_user = user_id(user) if user else None
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
config = {
|
|
|
|
"apps": apps,
|
|
|
|
"users": users,
|
|
|
|
"active_user": active_user,
|
|
|
|
}
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
print_out("Creating config file at <blue>{}</blue>".format(path))
|
2018-01-15 23:14:20 +01:00
|
|
|
|
|
|
|
# Ensure dir exists
|
|
|
|
os.makedirs(dirname(path), exist_ok=True)
|
|
|
|
|
2019-08-27 13:20:22 +02:00
|
|
|
# Create file with 600 permissions since it contains secrets
|
|
|
|
fd = os.open(path, os.O_CREAT | os.O_WRONLY, 0o600)
|
|
|
|
with os.fdopen(fd, 'w') as f:
|
2018-01-02 10:44:32 +01:00
|
|
|
json.dump(config, f, indent=True)
|
|
|
|
|
|
|
|
|
|
|
|
def load_config():
|
|
|
|
if not os.path.exists(CONFIG_FILE):
|
|
|
|
make_config(CONFIG_FILE)
|
|
|
|
|
|
|
|
with open(CONFIG_FILE) as f:
|
|
|
|
return json.load(f)
|
|
|
|
|
|
|
|
|
|
|
|
def save_config(config):
|
|
|
|
with open(CONFIG_FILE, 'w') as f:
|
|
|
|
return json.dump(config, f, indent=True)
|
|
|
|
|
|
|
|
|
|
|
|
def extract_user_app(config, user_id):
|
|
|
|
if user_id not in config['users']:
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
user_data = config['users'][user_id]
|
|
|
|
instance = user_data['instance']
|
|
|
|
|
|
|
|
if instance not in config['apps']:
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
app_data = config['apps'][instance]
|
|
|
|
return User(**user_data), App(**app_data)
|
|
|
|
|
|
|
|
|
|
|
|
def get_active_user_app():
|
|
|
|
"""Returns (User, App) of active user or (None, None) if no user is active."""
|
|
|
|
config = load_config()
|
|
|
|
|
|
|
|
if config['active_user']:
|
|
|
|
return extract_user_app(config, config['active_user'])
|
|
|
|
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
|
|
|
|
def get_user_app(user_id):
|
|
|
|
"""Returns (User, App) for given user ID or (None, None) if user is not logged in."""
|
|
|
|
return extract_user_app(load_config(), user_id)
|
2017-04-12 16:42:04 +02:00
|
|
|
|
|
|
|
|
2017-04-18 16:16:24 +02:00
|
|
|
def load_app(instance):
|
2018-01-02 10:44:32 +01:00
|
|
|
config = load_config()
|
|
|
|
if instance in config['apps']:
|
|
|
|
return App(**config['apps'][instance])
|
|
|
|
|
|
|
|
|
|
|
|
def load_user(user_id, throw=False):
|
|
|
|
config = load_config()
|
|
|
|
|
|
|
|
if user_id in config['users']:
|
|
|
|
return User(**config['users'][user_id])
|
|
|
|
|
|
|
|
if throw:
|
|
|
|
raise ConsoleError("User '{}' not found".format(user_id))
|
|
|
|
|
|
|
|
|
|
|
|
def modify_config(f):
|
|
|
|
@wraps(f)
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
config = load_config()
|
|
|
|
config = f(config, *args, **kwargs)
|
|
|
|
save_config(config)
|
|
|
|
return config
|
|
|
|
|
|
|
|
return wrapper
|
|
|
|
|
|
|
|
|
|
|
|
@modify_config
|
|
|
|
def save_app(config, app):
|
|
|
|
assert isinstance(app, App)
|
|
|
|
|
|
|
|
config['apps'][app.instance] = app._asdict()
|
|
|
|
|
|
|
|
return config
|
|
|
|
|
|
|
|
|
|
|
|
@modify_config
|
|
|
|
def delete_app(config, app):
|
|
|
|
assert isinstance(app, App)
|
|
|
|
|
|
|
|
config['apps'].pop(app.instance, None)
|
|
|
|
|
|
|
|
return config
|
|
|
|
|
|
|
|
|
|
|
|
@modify_config
|
|
|
|
def save_user(config, user, activate=True):
|
|
|
|
assert isinstance(user, User)
|
|
|
|
|
|
|
|
config['users'][user_id(user)] = user._asdict()
|
|
|
|
|
|
|
|
if activate:
|
|
|
|
config['active_user'] = user_id(user)
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
return config
|
2017-04-12 16:42:04 +02:00
|
|
|
|
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
@modify_config
|
|
|
|
def delete_user(config, user):
|
|
|
|
assert isinstance(user, User)
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
config['users'].pop(user_id(user), None)
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
if config['active_user'] == user_id(user):
|
|
|
|
config['active_user'] = None
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
return config
|
2017-04-12 16:42:04 +02:00
|
|
|
|
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
@modify_config
|
|
|
|
def activate_user(config, user):
|
|
|
|
assert isinstance(user, User)
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
config['active_user'] = user_id(user)
|
2017-04-12 16:42:04 +02:00
|
|
|
|
2018-01-02 10:44:32 +01:00
|
|
|
return config
|