Source code for uac_cli.utils.process

import json
import re

import click
from jsonpath_ng import jsonpath, parse


[docs]def snake_to_camel(snake_case_str): """Converts a snake_case string to camelCase. Args: snake_case_str: The string in snake_case format. Returns: The converted string in camelCase format. """ components = snake_case_str.split("_") return components[0] + "".join(x.title() for x in components[1:])
[docs]def process_output(output, select, response, text=False, binary=False): if output and binary: output.write(response) elif output and not binary and text: output.write(f"{response.get('response', '')}".replace("\\n", "\n").encode()) elif output and not binary and not text: output.write(json.dumps(response, indent=4)) if select: jsonpath_expr = parse(select) result = [str(match.value) for match in jsonpath_expr.find(response)] click.echo("\n".join(result)) else: if output is None and binary: click.echo(response) elif output is None and not binary and text: click.echo(response.get("response", "").replace("\\n", "\n")) elif output is None and not binary and not text: click.echo(json.dumps(response, indent=4))
[docs]def add_payload_value(vars_dict, _input, binary): payload = _input.read() if _input else None if _input and not binary: payload = json.loads(payload) if not isinstance(payload, dict) else payload for var in vars_dict: _var = snake_to_camel(var) value = input_value_parsing(vars_dict[var]) if var in payload: payload[var] = value elif _var in payload: payload[_var] = value vars_dict["payload"] = payload elif _input and binary: vars_dict["data"] = payload
[docs]def process_input(args, _input=None, binary=False): vars_dict = dict(var.split("=", 1) for var in args) ctx = click.get_current_context() argument_file = ctx.find_root().params.get("argument_file") extra_arg_lines = argument_file.read().split("\n") if argument_file else [] for extra_arg in extra_arg_lines: k_, v_ = extra_arg.split("=", 1) if "=" in extra_arg else (None, None) if k_ is not None and k_ not in vars_dict: vars_dict[k_] = v_ if ( _input is not None and "retain_sys_ids" not in vars_dict and "retainSysIds" not in vars_dict ): vars_dict["retain_sys_ids"] = "true" add_payload_value(vars_dict, _input, binary) return vars_dict
[docs]def input_value_parsing(value): if not isinstance(value, str): return value if value.lower() == ":none:": return None elif value.lower() == ":false:": return False elif value.lower() == ":true:": return True elif value == ":[]:": return [] elif value == ":{}:": return {} elif re.match(r"^:\d+:$", value): return int(value.strip(":")) else: return value
[docs]def create_payload(args): vars_dict = dict(var.split("=") for var in args) payload = {} for k, v in vars_dict.items(): payload[k] = v return payload