##// END OF EJS Templates
fix(caching): fixed problems with Cache query for users....
fix(caching): fixed problems with Cache query for users. The old way of querying caused the user get query to be always cached, and returning old results even in 2fa forms. The new limited query doesn't cache the user object resolving issues

File last commit:

r5088:8f6d1ed6 default
r5365:ae8a165b default
Show More
system_info.py
237 lines | 9.3 KiB | text/x-python | PythonLexer
apps: removed utf8 marker
r5053
admin: moved admin pyramid into apps.
r1503
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 RhodeCode GmbH
admin: moved admin pyramid into apps.
r1503 #
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
import logging
core: multiple fixes to unicode vs str usage...
r5065 import urllib.request
import urllib.error
import urllib.parse
system-info: expose env variables
r4743 import os
admin: moved admin pyramid into apps.
r1503
import rhodecode
pyramid-admin: use new base app view in exchange of dedicated admin view....
r1511 from rhodecode.apps._base import BaseAppView
application: re-organize imports for pyramid to prepare code for speedup optimization.
r3238 from rhodecode.apps._base.navigation import navigation_list
admin: moved admin pyramid into apps.
r1503 from rhodecode.lib import helpers as h
from rhodecode.lib.auth import (LoginRequired, HasPermissionAllDecorator)
from rhodecode.lib.utils2 import str2bool
from rhodecode.lib import system_info
update: add new async task to check for updates via scheduler....
r2431 from rhodecode.model.update import UpdateModel
admin: moved admin pyramid into apps.
r1503
log = logging.getLogger(__name__)
pyramid-admin: use new base app view in exchange of dedicated admin view....
r1511 class AdminSystemInfoSettingsView(BaseAppView):
pyramid: removed pylons reference from apps....
r1782 def load_default_context(self):
c = self._get_local_tmpl_context()
return c
admin: moved admin pyramid into apps.
r1503
system-info: expose env variables
r4743 def get_env_data(self):
black_list = [
'NIX_LDFLAGS',
'NIX_CFLAGS_COMPILE',
'propagatedBuildInputs',
'propagatedNativeBuildInputs',
'postInstall',
'buildInputs',
'buildPhase',
'preShellHook',
'preShellHook',
'preCheck',
'preBuild',
'postShellHook',
'postFixup',
'postCheck',
'nativeBuildInputs',
'installPhase',
'installCheckPhase',
'checkPhase',
'configurePhase',
'shellHook'
]
secret_list = [
'RHODECODE_USER_PASS'
]
for k, v in sorted(os.environ.items()):
if k in black_list:
continue
if k in secret_list:
v = '*****'
yield k, v
admin: moved admin pyramid into apps.
r1503 @LoginRequired()
@HasPermissionAllDecorator('hg.admin')
def settings_system_info(self):
_ = self.request.translate
pyramid: removed pylons reference from apps....
r1782 c = self.load_default_context()
admin: moved admin pyramid into apps.
r1503
c.active = 'system'
c.navlist = navigation_list(self.request)
# TODO(marcink), figure out how to allow only selected users to do this
c.allowed_to_snapshot = self._rhodecode_user.admin
snapshot = str2bool(self.request.params.get('snapshot'))
update: add new async task to check for updates via scheduler....
r2431 c.rhodecode_update_url = UpdateModel().get_update_url()
system-info: expose env variables
r4743 c.env_data = self.get_env_data()
admin: moved admin pyramid into apps.
r1503 server_info = system_info.get_system_info(self.request.environ)
for key, val in server_info.items():
setattr(c, key, val)
def val(name, subkey='human_value'):
return server_info[name][subkey]
def state(name):
return server_info[name]['state']
def val2(name):
val = server_info[name]['human_value']
state = server_info[name]['state']
return val, state
update_info_msg = _('Note: please make sure this server can '
'access `${url}` for the update link to work',
mapping=dict(url=c.rhodecode_update_url))
update: add new async task to check for updates via scheduler....
r2431 version = UpdateModel().get_stored_version()
is_outdated = UpdateModel().is_outdated(
rhodecode.__version__, version)
update_state = {
'type': 'warning',
'message': 'New version available: {}'.format(version)
} \
if is_outdated else {}
admin: moved admin pyramid into apps.
r1503 c.data_items = [
# update info
(_('Update info'), h.literal(
'<span class="link" id="check_for_update" >%s.</span>' % (
_('Check for updates')) +
'<br/> <span >%s.</span>' % (update_info_msg)
), ''),
# RhodeCode specific
(_('RhodeCode Version'), val('rhodecode_app')['text'], state('rhodecode_app')),
update: add new async task to check for updates via scheduler....
r2431 (_('Latest version'), version, update_state),
system-info: ensure safe read of base_url in case it's not set.
r3292 (_('RhodeCode Base URL'), val('rhodecode_config')['config'].get('app.base_url'), state('rhodecode_config')),
admin: moved admin pyramid into apps.
r1503 (_('RhodeCode Server IP'), val('server')['server_ip'], state('server')),
(_('RhodeCode Server ID'), val('server')['server_id'], state('server')),
(_('RhodeCode Configuration'), val('rhodecode_config')['path'], state('rhodecode_config')),
system-info: expose the common certificate file path.
r1729 (_('RhodeCode Certificate'), val('rhodecode_config')['cert_path'], state('rhodecode_config')),
admin: moved admin pyramid into apps.
r1503 (_('Workers'), val('rhodecode_config')['config']['server:main'].get('workers', '?'), state('rhodecode_config')),
(_('Worker Type'), val('rhodecode_config')['config']['server:main'].get('worker_class', 'sync'), state('rhodecode_config')),
('', '', ''), # spacer
# Database
(_('Database'), val('database')['url'], state('database')),
(_('Database version'), val('database')['version'], state('database')),
('', '', ''), # spacer
# Platform/Python
(_('Platform'), val('platform')['name'], state('platform')),
(_('Platform UUID'), val('platform')['uuid'], state('platform')),
system-info: fetch default locale to the provided system info data.
r2914 (_('Lang'), val('locale'), state('locale')),
admin: moved admin pyramid into apps.
r1503 (_('Python version'), val('python')['version'], state('python')),
(_('Python path'), val('python')['executable'], state('python')),
('', '', ''), # spacer
# Systems stats
(_('CPU'), val('cpu')['text'], state('cpu')),
(_('Load'), val('load')['text'], state('load')),
(_('Memory'), val('memory')['text'], state('memory')),
(_('Uptime'), val('uptime')['text'], state('uptime')),
('', '', ''), # spacer
system-info: added ulimit to system info.
r2673 # ulimit
(_('Ulimit'), val('ulimit')['text'], state('ulimit')),
admin: moved admin pyramid into apps.
r1503 # Repo storage
(_('Storage location'), val('storage')['path'], state('storage')),
(_('Storage info'), val('storage')['text'], state('storage')),
(_('Storage inodes'), val('storage_inodes')['text'], state('storage_inodes')),
(_('Gist storage location'), val('storage_gist')['path'], state('storage_gist')),
(_('Gist storage info'), val('storage_gist')['text'], state('storage_gist')),
(_('Archive cache storage location'), val('storage_archive')['path'], state('storage_archive')),
(_('Archive cache info'), val('storage_archive')['text'], state('storage_archive')),
(_('Temp storage location'), val('storage_temp')['path'], state('storage_temp')),
(_('Temp storage info'), val('storage_temp')['text'], state('storage_temp')),
(_('Search info'), val('search')['text'], state('search')),
(_('Search location'), val('search')['location'], state('search')),
('', '', ''), # spacer
# VCS specific
(_('VCS Backends'), val('vcs_backends'), state('vcs_backends')),
(_('VCS Server'), val('vcs_server')['text'], state('vcs_server')),
(_('GIT'), val('git'), state('git')),
(_('HG'), val('hg'), state('hg')),
(_('SVN'), val('svn'), state('svn')),
]
dan
system-info: expose data about vcsserver.
r3943 c.vcsserver_data_items = [
(k, v) for k,v in (val('vcs_server_config') or {}).items()
]
admin: moved admin pyramid into apps.
r1503 if snapshot:
if c.allowed_to_snapshot:
c.data_items.pop(0) # remove server info
self.request.override_renderer = 'admin/settings/settings_system_snapshot.mako'
else:
flash: use consistent use of h.flash across the application.
r2366 h.flash('You are not allowed to do this', category='warning')
pyramid: removed pylons reference from apps....
r1782 return self._get_template_context(c)
admin: moved admin pyramid into apps.
r1503
@LoginRequired()
@HasPermissionAllDecorator('hg.admin')
def settings_system_info_check_update(self):
_ = self.request.translate
pyramid: removed pylons reference from apps....
r1782 c = self.load_default_context()
admin: moved admin pyramid into apps.
r1503
update: add new async task to check for updates via scheduler....
r2431 update_url = UpdateModel().get_update_url()
admin: moved admin pyramid into apps.
r1503
core: multiple fixes to unicode vs str usage...
r5065 def _err(s):
return '<div style="color:#ff8888; padding:4px 0px">{}</div>'.format(s)
admin: moved admin pyramid into apps.
r1503 try:
update: add new async task to check for updates via scheduler....
r2431 data = UpdateModel().get_update_data(update_url)
python3: fix urllib usage
r4914 except urllib.error.URLError as e:
admin: moved admin pyramid into apps.
r1503 log.exception("Exception contacting upgrade server")
self.request.override_renderer = 'string'
return _err('Failed to contact upgrade server: %r' % e)
except ValueError as e:
log.exception("Bad data sent from update server")
self.request.override_renderer = 'string'
return _err('Bad data sent from update server')
latest = data['versions'][0]
c.update_url = update_url
c.latest_data = latest
c.latest_ver = latest['version']
c.cur_ver = rhodecode.__version__
c.should_upgrade = False
update: add new async task to check for updates via scheduler....
r2431 is_oudated = UpdateModel().is_outdated(c.cur_ver, c.latest_ver)
if is_oudated:
admin: moved admin pyramid into apps.
r1503 c.should_upgrade = True
c.important_notices = latest['general']
update: add new async task to check for updates via scheduler....
r2431 UpdateModel().store_version(latest['version'])
pyramid: removed pylons reference from apps....
r1782 return self._get_template_context(c)