Skip to content

Commit 2c467ac

Browse files
committed
client: command: get_socket_from_config improved
1 parent c1f8f7b commit 2c467ac

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

python/knot_resolver/client/command.py

+10-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from urllib.parse import quote
66

77
from knot_resolver.constants import API_SOCK_FILE, CONFIG_FILE
8-
from knot_resolver.datamodel.types import IPAddressPort
8+
from knot_resolver.datamodel.types import IPAddressPort, WritableFilePath
99
from knot_resolver.utils.modeling import parsing
1010
from knot_resolver.utils.modeling.exceptions import DataValidationError
1111
from knot_resolver.utils.requests import SocketDesc
@@ -154,16 +154,21 @@ def get_socket_from_config(config: Path, optional_file: bool) -> Optional[Socket
154154
try:
155155
with open(config, "r", encoding="utf8") as f:
156156
data = parsing.try_to_parse(f.read())
157+
157158
mkey = "management"
158159
if mkey in data:
159160
management = data[mkey]
160-
if "unix-socket" in management:
161+
162+
skey = "unix-socket"
163+
if skey in management:
164+
sock = WritableFilePath(management[skey], object_path=f"/{mkey}/{skey}")
161165
return SocketDesc(
162-
f'http+unix://{quote(management["unix-socket"], safe="")}/',
166+
f'http+unix://{quote(str(sock), safe="")}/',
163167
f'Key "/management/unix-socket" in "{config}" file',
164168
)
165-
if "interface" in management:
166-
ip = IPAddressPort(management["interface"], object_path=f"/{mkey}/interface")
169+
ikey = "interface"
170+
if ikey in data[mkey]:
171+
ip = IPAddressPort(management[ikey], object_path=f"/{mkey}/{ikey}")
167172
return SocketDesc(
168173
f"http://{ip.addr}:{ip.port}",
169174
f'Key "/management/interface" in "{config}" file',

0 commit comments

Comments
 (0)