bitwarden-crd-operator/src/utils/utils.py

31 lines
965 B
Python
Raw Normal View History

import os
import subprocess
2022-11-26 20:33:31 +00:00
class BitwardenCommandException(Exception):
pass
2022-11-26 17:55:42 +00:00
def get_secret_from_bitwarden(id):
2022-11-26 20:33:31 +00:00
return command_wrapper(command=f"get item {id}")
def unlock_bw(logger):
2022-11-26 20:33:31 +00:00
token_output = command_wrapper("unlock --passwordenv BW_PASSWORD")
tokens = token_output.split('"')[1::2]
os.environ["BW_SESSION"] = tokens[1]
logger.info("Signin successful. Session exported")
2022-11-26 20:33:31 +00:00
def command_wrapper(command):
system_env = dict(os.environ)
sp = subprocess.Popen([f"bw {command}"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True, shell=True, env=system_env)
out, err = sp.communicate()
if err:
2022-11-26 20:33:31 +00:00
raise BitwardenCommandException(err)
return out.decode(encoding='UTF-8')
def parse_login_scope(secret_json, key):
return secret_json["login"][key]
def parse_fields_scope(secret_json, key):
for entry in secret_json["fields"]:
if entry['name'] == key:
return entry['value']