import base64
import os
from pathlib import Path
import click
import yaml
profiles_path = Path.home() / ".uac" / "profiles.yml"
[docs]def simple_encrypt(password, key):
# Convert the key (username) into a shift value
shift = sum(ord(c) for c in key) % 256
# Modify the password using the shift value
modified_password = "".join(chr((ord(char) + shift) % 256) for char in password)
# Encode the modified password with Base64
encoded_password = base64.b64encode(modified_password.encode()).decode()
return encoded_password
[docs]def simple_decrypt(encrypted_password, key):
if not key:
return None
# Convert the key (username) into a shift value
shift = sum(ord(c) for c in key) % 256
# Decode the password from Base64
decoded_password = base64.b64decode(encrypted_password).decode()
# Reverse the modification using the shift value
original_password = "".join(
chr((ord(char) - shift) % 256) for char in decoded_password
)
return original_password
[docs]def write_config(profiles):
if not os.path.exists(Path.home() / ".uac"):
os.mkdir(Path.home() / ".uac")
with open(profiles_path, "w", encoding="UTF-8") as file:
yaml.dump(profiles, file)
click.echo(f"Config file written. (Path: {Path.home() / '.uac' / 'profiles.yml'})")
[docs]def read_config():
if not os.path.exists(profiles_path):
return None
with open(profiles_path, "r", encoding="UTF-8") as file:
config = yaml.load(file, Loader=yaml.FullLoader)
return config
[docs]def read_profile(profile_name):
if not os.path.exists(profiles_path):
return None
with open(profiles_path, "r", encoding="UTF-8") as file:
config = yaml.load(file, Loader=yaml.FullLoader)
if profile_name in config:
profile = config[profile_name]
else:
profile = None
return profile
[docs]def write_profile(profile_name, profile):
config = read_config()
if config is None:
config = {}
config[profile_name] = profile
write_config(config)
[docs]def ask_profile(profile):
url = click.prompt("Please enter UAC URL", type=str, default=profile.get("url", ""))
config = {"url": url}
token = click.prompt(
"Please enter personal access token",
type=str,
default=profile.get("token", ""),
)
config["token"] = token
return config