-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created url_parser and removed duplication
Signed-off-by: ahmedsobeh <[email protected]>
- Loading branch information
1 parent
d116aa6
commit 9a59834
Showing
4 changed files
with
179 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
from valkey.asyncio.connection import ConnectKwargs, UnixDomainSocketConnection, SSLConnection | ||
from urllib.parse import ParseResult, parse_qs, unquote, urlparse | ||
from types import MappingProxyType | ||
from typing import ( | ||
Callable, | ||
Mapping, | ||
Optional, | ||
) | ||
|
||
|
||
def to_bool(value) -> Optional[bool]: | ||
if value is None or value == "": | ||
return None | ||
if isinstance(value, str) and value.upper() in FALSE_STRINGS: | ||
return False | ||
return bool(value) | ||
|
||
|
||
FALSE_STRINGS = ("0", "F", "FALSE", "N", "NO") | ||
|
||
URL_QUERY_ARGUMENT_PARSERS: Mapping[str, Callable[..., object]] = MappingProxyType( | ||
{ | ||
"db": int, | ||
"socket_timeout": float, | ||
"socket_connect_timeout": float, | ||
"socket_keepalive": to_bool, | ||
"retry_on_timeout": to_bool, | ||
"max_connections": int, | ||
"health_check_interval": int, | ||
"ssl_check_hostname": to_bool, | ||
"timeout": float, | ||
} | ||
) | ||
|
||
|
||
def parse_url(url: str) -> ConnectKwargs: | ||
parsed: ParseResult = urlparse(url) | ||
kwargs: ConnectKwargs = {} | ||
|
||
for name, value_list in parse_qs(parsed.query).items(): | ||
if value_list and len(value_list) > 0: | ||
value = unquote(value_list[0]) | ||
parser = URL_QUERY_ARGUMENT_PARSERS.get(name) | ||
if parser: | ||
try: | ||
kwargs[name] = parser(value) | ||
except (TypeError, ValueError): | ||
raise ValueError(f"Invalid value for `{name}` in connection URL.") | ||
else: | ||
kwargs[name] = value | ||
|
||
if parsed.username: | ||
kwargs["username"] = unquote(parsed.username) | ||
if parsed.password: | ||
kwargs["password"] = unquote(parsed.password) | ||
|
||
# We only support valkey://, valkeys:// and unix:// schemes. | ||
if parsed.scheme == "unix": | ||
if parsed.path: | ||
kwargs["path"] = unquote(parsed.path) | ||
kwargs["connection_class"] = UnixDomainSocketConnection | ||
|
||
elif parsed.scheme in ("valkey", "valkeys"): | ||
if parsed.hostname: | ||
kwargs["host"] = unquote(parsed.hostname) | ||
if parsed.port: | ||
kwargs["port"] = int(parsed.port) | ||
|
||
# If there's a path argument, use it as the db argument if a | ||
# querystring value wasn't specified | ||
if parsed.path and "db" not in kwargs: | ||
try: | ||
kwargs["db"] = int(unquote(parsed.path).replace("/", "")) | ||
except (AttributeError, ValueError): | ||
pass | ||
|
||
if parsed.scheme == "valkeys": | ||
kwargs["connection_class"] = SSLConnection | ||
else: | ||
valid_schemes = "valkey://, valkeys://, unix://" | ||
raise ValueError( | ||
f"Valkey URL must specify one of the following schemes ({valid_schemes})" | ||
) | ||
|
||
return kwargs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.