##// 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:

r5095:aa627a5f default
r5365:ae8a165b default
Show More
views.py
106 lines | 3.9 KiB | text/x-python | PythonLexer
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 RhodeCode GmbH
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 #
# 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 re
import logging
import collections
hovercards: handle unknown commits on repo by returning 404 instead of 500 error.
r4110 from pyramid.httpexceptions import HTTPNotFound
application: not use config.scan(), and replace all @add_view decorator into a explicit add_view call for faster app start.
r4610
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026
hovercards: added commit hovercard for files, and dashboard views.
r4032 from rhodecode.apps._base import BaseAppView, RepoAppView
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 from rhodecode.lib import helpers as h
from rhodecode.lib.auth import (
hovercards: added commit hovercard for files, and dashboard views.
r4032 LoginRequired, NotAnonymous, HasRepoGroupPermissionAnyDecorator, CSRFRequired,
HasRepoPermissionAnyDecorator)
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 from rhodecode.lib.codeblocks import filenode_as_lines_tokens
from rhodecode.lib.index import searcher_from_config
core: multiple fixes to unicode vs str usage...
r5065 from rhodecode.lib.utils2 import str2bool, safe_int
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 from rhodecode.lib.ext_json import json
hovercards: handle empty repository
r4132 from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError, EmptyRepositoryError
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 from rhodecode.lib.vcs.nodes import FileNode
from rhodecode.model.db import (
dan
hovercards: allow hovercards on parsed !PR patterns....
r4046 func, true, or_, case, in_filter_generator, Repository, RepoGroup, User, UserGroup, PullRequest)
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 from rhodecode.model.repo import RepoModel
from rhodecode.model.repo_group import RepoGroupModel
from rhodecode.model.scm import RepoGroupList, RepoList
from rhodecode.model.user import UserModel
from rhodecode.model.user_group import UserGroupModel
log = logging.getLogger(__name__)
class HoverCardsView(BaseAppView):
def load_default_context(self):
c = self._get_local_tmpl_context()
return c
@LoginRequired()
def hovercard_user(self):
c = self.load_default_context()
user_id = self.request.matchdict['user_id']
c.user = User.get_or_404(user_id)
return self._get_template_context(c)
@LoginRequired()
mentions: markdown renderer now wraps username in hovercard logic allowing checking the mentioned user....
r4221 def hovercard_username(self):
c = self.load_default_context()
username = self.request.matchdict['username']
c.user = User.get_by_username(username)
if not c.user:
raise HTTPNotFound()
return self._get_template_context(c)
@LoginRequired()
hovercacrds: added new tooltips and hovercards to expose certain information for objects shown in UI
r4026 def hovercard_user_group(self):
c = self.load_default_context()
user_group_id = self.request.matchdict['user_group_id']
c.user_group = UserGroup.get_or_404(user_group_id)
return self._get_template_context(c)
hovercards: added commit hovercard for files, and dashboard views.
r4032
dan
hovercards: allow hovercards on parsed !PR patterns....
r4046 @LoginRequired()
def hovercard_pull_request(self):
c = self.load_default_context()
c.pull_request = PullRequest.get_or_404(
self.request.matchdict['pull_request_id'])
perms = ['repository.read', 'repository.write', 'repository.admin']
c.can_view_pr = h.HasRepoPermissionAny(*perms)(
c.pull_request.target_repo.repo_name)
return self._get_template_context(c)
hovercards: added commit hovercard for files, and dashboard views.
r4032
class HoverCardsRepoView(RepoAppView):
def load_default_context(self):
c = self._get_local_tmpl_context()
return c
@LoginRequired()
@HasRepoPermissionAnyDecorator('repository.read', 'repository.write', 'repository.admin')
def hovercard_repo_commit(self):
c = self.load_default_context()
commit_id = self.request.matchdict['commit_id']
pre_load = ['author', 'branch', 'date', 'message']
hovercards: handle unknown commits on repo by returning 404 instead of 500 error.
r4110 try:
hovercards: handle empty repository
r4132 c.commit = self.rhodecode_vcs_repo.get_commit(
commit_id=commit_id, pre_load=pre_load)
except (CommitDoesNotExistError, EmptyRepositoryError):
hovercards: handle unknown commits on repo by returning 404 instead of 500 error.
r4110 raise HTTPNotFound()
hovercards: added commit hovercard for files, and dashboard views.
r4032 return self._get_template_context(c)