Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

The function that adds domain and port to strings in the Configuration #59

Merged
merged 1 commit into from
Mar 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 20 additions & 9 deletions src/oidcmsg/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,30 @@ def add_base_path(conf: dict, base_path: str, attributes: List[str], attribute_t
return conf


def _conv(val, domain, port):
if isinstance(val, str) and ("{domain}" in val or "{port}" in val):
return val.format(domain=domain, port=port)

return val


def set_domain_and_port(conf: dict, uris: List[str], domain: str, port: int):
update = {}
for key, val in conf.items():
if key in uris:
if not val:
continue
if not val:
continue

if isinstance(val, list):
_new = [v.format(domain=domain, port=port) for v in val]
else:
_new = val.format(domain=domain, port=port)
conf[key] = _new
if isinstance(val, list):
_new = [_conv(v, domain=domain, port=port) for v in val]
elif isinstance(val, dict):
conf[key] = set_domain_and_port(val, uris, domain, port)
_new = set_domain_and_port(val, uris, domain, port)
else:
_new = _conv(val, domain=domain, port=port)

if _new != val:
update[key] = _new
if update:
conf.update(update)
return conf


Expand Down