Give user the option to disable SSL/TLS for the source and destination individually

This commit is contained in:
mike
2026-01-05 14:28:57 -08:00
parent 9afa6277bb
commit 52f39a5f9e
3 changed files with 51 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ class API:
__DEFAULT_API_PATH = "/api/v1"
def __init__(self, verify_ssl, ca_bundle):
self.__verify_ssl = verify_ssl
self.__ca_bundle = ca_bundle
@@ -21,7 +21,13 @@ class API:
return base
def get(self, hostname, port, token) -> gitea.Gitea:
def get(
self,
hostname: str,
port: int,
token: str,
verify_ssl: bool = None
) -> gitea.Gitea:
url = API._make_api_base_url(
hostname=hostname,
@@ -29,8 +35,15 @@ class API:
)
ssl_verify_arg = True
if self.__verify_ssl is not None:
if verify_ssl is not None:
ssl_verify_arg = verify_ssl
else:
ssl_verify_arg = self.__verify_ssl
print(f"API::get -> hostname {hostname}")
print(f"API::get -> verify_ssl was {verify_ssl}")
print(f"API::get -> ssl_verify_arg became {ssl_verify_arg}")
if self.__ca_bundle is not None:
ssl_verify_arg = self.__ca_bundle