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

54 lines
1.5 KiB
Python
Raw Normal View History

import os
2023-01-19 01:57:21 +00:00
import json
import subprocess
2023-04-21 12:39:06 +00:00
2022-11-26 20:33:31 +00:00
class BitwardenCommandException(Exception):
pass
2023-04-21 12:39:06 +00:00
def get_secret_from_bitwarden(logger, id):
return command_wrapper(logger, command=f"get item {id}")
2023-04-21 12:39:06 +00:00
def unlock_bw(logger):
status_output = command_wrapper(logger, "status", False)
status = status_output['data']['template']['status']
2023-01-19 01:57:21 +00:00
if status == 'unlocked':
logger.info("Already unlocked")
return
token_output = command_wrapper(logger, "unlock --passwordenv BW_PASSWORD")
os.environ["BW_SESSION"] = token_output["data"]["raw"]
logger.info("Signin successful. Session exported")
2023-04-21 12:39:06 +00:00
def command_wrapper(logger, command, use_success: bool = True):
system_env = dict(os.environ)
2023-04-21 12:39:06 +00:00
sp = subprocess.Popen(
[f"bw --response {command}"],
2023-04-21 12:39:06 +00:00
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
close_fds=True,
shell=True,
env=system_env)
out, err = sp.communicate()
resp = json.loads(out.decode(encoding='UTF-8'))
2023-04-24 07:54:53 +00:00
if "DEBUG" in system_env:
logger.info(resp)
if resp["success"] != None and (not use_success or (use_success and resp["success"] == True)):
return resp
logger.warn(resp)
return None
2022-11-26 20:33:31 +00:00
2023-04-21 12:39:06 +00:00
2022-11-26 20:33:31 +00:00
def parse_login_scope(secret_json, key):
return secret_json["data"]["login"][key]
2022-11-26 20:33:31 +00:00
2023-04-21 12:39:06 +00:00
2022-11-26 20:33:31 +00:00
def parse_fields_scope(secret_json, key):
if "fields" not in secret_json:
return None
for entry in secret_json["data"]["fields"]:
2022-11-26 20:33:31 +00:00
if entry['name'] == key:
return entry['value']