|
5 | 5 | from urllib.parse import quote
|
6 | 6 |
|
7 | 7 | 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 |
9 | 9 | from knot_resolver.utils.modeling import parsing
|
10 | 10 | from knot_resolver.utils.modeling.exceptions import DataValidationError
|
11 | 11 | from knot_resolver.utils.requests import SocketDesc
|
@@ -154,16 +154,21 @@ def get_socket_from_config(config: Path, optional_file: bool) -> Optional[Socket
|
154 | 154 | try:
|
155 | 155 | with open(config, "r", encoding="utf8") as f:
|
156 | 156 | data = parsing.try_to_parse(f.read())
|
| 157 | + |
157 | 158 | mkey = "management"
|
158 | 159 | if mkey in data:
|
159 | 160 | 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}") |
161 | 165 | return SocketDesc(
|
162 |
| - f'http+unix://{quote(management["unix-socket"], safe="")}/', |
| 166 | + f'http+unix://{quote(str(sock), safe="")}/', |
163 | 167 | f'Key "/management/unix-socket" in "{config}" file',
|
164 | 168 | )
|
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}") |
167 | 172 | return SocketDesc(
|
168 | 173 | f"http://{ip.addr}:{ip.port}",
|
169 | 174 | f'Key "/management/interface" in "{config}" file',
|
|
0 commit comments