mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-12-22 07:03:56 -06:00
Ensure correct custom SSL certificate passed in connection string. #8215
This commit is contained in:
parent
4392b83a98
commit
d8ed75dbfd
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user