Ensure correct custom SSL certificate passed in connection string. #8215

This commit is contained in:
Yogesh Mahajan 2024-12-04 15:38:27 +05:30 committed by GitHub
parent 4392b83a98
commit d8ed75dbfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 5 deletions

View File

@ -829,7 +829,7 @@ def create_app(app_name=None):
# but the user session may still be active. Logout the user
# to get the key again when login
if config.SERVER_MODE and current_user.is_authenticated and \
app.PGADMIN_EXTERNAL_AUTH_SOURCE not in [
session['auth_source_manager']['current_source'] not in [
KERBEROS, OAUTH2, WEBSERVER] and \
current_app.keyManager.get() is None and \
request.endpoint not in ('security.login', 'security.logout'):
@ -915,6 +915,10 @@ def create_app(app_name=None):
@app.errorhandler(HTTPException)
def http_exception_handler(e):
current_app.logger.error(e, exc_info=True)
if e.code == 400 and\
e.description == 'The CSRF session token is missing.':
error = str(e.description) + 'Please refresh the page.'
return internal_server_error(errormsg=gettext(error))
return e
# Intialize the key manager

View File

@ -673,13 +673,11 @@ WHERE db.oid = {0}""".format(did))
orig_value = value
# Getting complete file path if the key is one of the below.
if key in ['passfile', 'sslcert', 'sslkey','sslcrl',
'sslcrldir']:
'sslcrldir'] or \
(key == 'sslrootcert' and value != 'system'):
with_complete_path = True
value = get_complete_file_path(value)
if key == 'sslrootcert' and value != 'system':
dsn_args[key] = get_complete_file_path(value)
# If key is hostaddr and ssh tunnel is in use don't overwrite.
if key == 'hostaddr' and self.use_ssh_tunnel:
continue