2016-05-13 00:04:28 +05:30
|
|
|
##########################################################################
|
|
|
|
|
#
|
|
|
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
|
|
|
#
|
2021-01-04 15:34:45 +05:30
|
|
|
# Copyright (C) 2013 - 2021, The pgAdmin Development Team
|
2016-05-13 00:04:28 +05:30
|
|
|
# This software is released under the PostgreSQL Licence
|
|
|
|
|
#
|
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
|
|
"""This file contains functions fetching different utility paths."""
|
|
|
|
|
|
|
|
|
|
import os
|
2016-06-21 14:12:14 +01:00
|
|
|
|
2019-03-22 09:36:13 +00:00
|
|
|
from flask import current_app, url_for
|
2016-07-22 16:25:23 +01:00
|
|
|
from flask_security import current_user, login_required
|
2020-08-07 12:37:00 +05:30
|
|
|
from werkzeug.exceptions import InternalServerError
|
2016-06-21 14:12:14 +01:00
|
|
|
|
2016-05-13 00:04:28 +05:30
|
|
|
|
|
|
|
|
@login_required
|
|
|
|
|
def get_storage_directory():
|
2017-03-07 16:06:36 +05:30
|
|
|
import config
|
2016-05-13 00:04:28 +05:30
|
|
|
if config.SERVER_MODE is not True:
|
2016-06-17 18:19:51 +01:00
|
|
|
return None
|
2016-05-13 00:04:28 +05:30
|
|
|
|
|
|
|
|
storage_dir = getattr(
|
|
|
|
|
config, 'STORAGE_DIR',
|
|
|
|
|
os.path.join(
|
|
|
|
|
os.path.realpath(
|
|
|
|
|
os.path.expanduser('~/.pgadmin/')
|
|
|
|
|
), 'storage'
|
|
|
|
|
)
|
|
|
|
|
)
|
2016-05-14 00:48:11 +05:30
|
|
|
|
|
|
|
|
if storage_dir is None:
|
2016-06-17 18:19:51 +01:00
|
|
|
return None
|
2016-05-14 00:48:11 +05:30
|
|
|
|
2020-09-11 19:55:19 +05:30
|
|
|
def _preprocess_username(un):
|
|
|
|
|
ret_un = un
|
|
|
|
|
if len(ret_un) == 0 or ret_un[0].isdigit():
|
2020-09-17 20:15:42 +05:30
|
|
|
ret_un = 'pga_user_' + un
|
2020-09-11 19:55:19 +05:30
|
|
|
|
|
|
|
|
ret_un = ret_un.replace('@', '_')\
|
|
|
|
|
.replace('/', 'slash')\
|
|
|
|
|
.replace('\\', 'slash')
|
|
|
|
|
|
|
|
|
|
return ret_un
|
|
|
|
|
|
|
|
|
|
username = _preprocess_username(current_user.username.split('@')[0])
|
2016-05-13 00:04:28 +05:30
|
|
|
|
2019-03-22 09:36:13 +00:00
|
|
|
# Figure out the old-style storage directory name
|
|
|
|
|
old_storage_dir = os.path.join(
|
2018-01-31 13:58:55 +00:00
|
|
|
storage_dir.decode('utf-8') if hasattr(storage_dir, 'decode')
|
|
|
|
|
else storage_dir,
|
2017-03-07 15:30:57 +05:30
|
|
|
username
|
|
|
|
|
)
|
2016-05-13 00:04:28 +05:30
|
|
|
|
2020-09-11 19:55:19 +05:30
|
|
|
username = _preprocess_username(current_user.username)
|
|
|
|
|
|
2019-03-22 09:36:13 +00:00
|
|
|
# Figure out the new style storage directory name
|
|
|
|
|
storage_dir = os.path.join(
|
|
|
|
|
storage_dir.decode('utf-8') if hasattr(storage_dir, 'decode')
|
|
|
|
|
else storage_dir,
|
2020-09-11 19:55:19 +05:30
|
|
|
username
|
2019-03-22 09:36:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Rename an old-style storage directory, if the new style doesn't exist
|
|
|
|
|
if os.path.exists(old_storage_dir) and not os.path.exists(storage_dir):
|
|
|
|
|
current_app.logger.warning(
|
|
|
|
|
'Renaming storage directory %s to %s.',
|
|
|
|
|
old_storage_dir, storage_dir
|
|
|
|
|
)
|
|
|
|
|
os.rename(old_storage_dir, storage_dir)
|
|
|
|
|
|
2016-05-13 00:04:28 +05:30
|
|
|
if not os.path.exists(storage_dir):
|
|
|
|
|
os.makedirs(storage_dir, int('700', 8))
|
|
|
|
|
|
|
|
|
|
return storage_dir
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def init_app(app):
|
2017-03-07 16:06:36 +05:30
|
|
|
import config
|
2016-05-13 00:04:28 +05:30
|
|
|
if config.SERVER_MODE is not True:
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
storage_dir = getattr(
|
|
|
|
|
config, 'STORAGE_DIR',
|
|
|
|
|
os.path.join(
|
|
|
|
|
os.path.realpath(
|
|
|
|
|
os.path.expanduser('~/.pgadmin/')
|
|
|
|
|
), 'storage'
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
2016-05-14 00:48:11 +05:30
|
|
|
if storage_dir and not os.path.isdir(storage_dir):
|
2016-05-13 00:04:28 +05:30
|
|
|
if os.path.exists(storage_dir):
|
2020-08-07 12:37:00 +05:30
|
|
|
raise InternalServerError(
|
2018-01-31 13:58:55 +00:00
|
|
|
'The path specified for the storage directory is not a '
|
|
|
|
|
'directory.'
|
2016-05-13 00:04:28 +05:30
|
|
|
)
|
|
|
|
|
os.makedirs(storage_dir, int('700', 8))
|
|
|
|
|
|
2016-06-10 17:06:22 +01:00
|
|
|
if storage_dir and not os.access(storage_dir, os.W_OK | os.R_OK):
|
2020-08-07 12:37:00 +05:30
|
|
|
raise InternalServerError(
|
2018-01-31 13:58:55 +00:00
|
|
|
'The user does not have permission to read and write to the '
|
|
|
|
|
'specified storage directory.'
|
2016-05-13 00:04:28 +05:30
|
|
|
)
|
2018-03-19 17:09:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_cookie_path():
|
|
|
|
|
cookie_root_path = '/'
|
|
|
|
|
pgadmin_root_path = url_for('browser.index')
|
|
|
|
|
if pgadmin_root_path != '/browser/':
|
|
|
|
|
cookie_root_path = pgadmin_root_path.replace(
|
|
|
|
|
'/browser/', ''
|
|
|
|
|
)
|
|
|
|
|
return cookie_root_path
|