##// END OF EJS Templates
fixed tests for usersgroups
fixed tests for usersgroups

File last commit:

r3720:9855b31d beta
r3738:752a5798 beta
Show More
pullrequests.py
521 lines | 20.8 KiB | text/x-python | PythonLexer
pull requests draft UI
r2244 # -*- coding: utf-8 -*-
"""
rhodecode.controllers.pullrequests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
pull requests controller for rhodecode for initializing pull requests
:created_on: May 7, 2012
:author: marcink
:copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
:license: GPLv3, see COPYING for more details.
"""
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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 General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import logging
import traceback
added more validations when opening pull request...
r2711 import formencode
- pull request generates overview based on it's params...
r2440
Enabled inline comments in pull-requests
r2489 from webob.exc import HTTPNotFound, HTTPForbidden
Adde pull request voting recalculation
r2481 from collections import defaultdict
from itertools import groupby
pull requests draft UI
r2244
from pylons import request, response, session, tmpl_context as c, url
from pylons.controllers.util import abort, redirect
from pylons.i18n.translation import _
Added dynamic data loading for other repo we open pull request against...
r2541 from rhodecode.lib.compat import json
pull requests draft UI
r2244 from rhodecode.lib.base import BaseRepoController, render
Added autocomplete widget for pull request reviewers, in exchange of 90s style...
r2612 from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator,\
NotAnonymous
pagination in pull-requests page + UI
r3676 from rhodecode.lib.helpers import Page
Added basic models for saving open pull requests...
r2434 from rhodecode.lib import helpers as h
- pull request generates overview based on it's params...
r2440 from rhodecode.lib import diffs
fixed issue #671 commenting on pull requests sometimes used old JSON encoder and broke. This changeset replaces it's with RhodeCode json encoder to ensure all data is properly serializable
r3061 from rhodecode.lib.utils import action_logger, jsonify
Mads Kiilerich
diffs: drop diffs.differ...
r3718 from rhodecode.lib.vcs.utils import safe_str
fixed issue #671 commenting on pull requests sometimes used old JSON encoder and broke. This changeset replaces it's with RhodeCode json encoder to ensure all data is properly serializable
r3061 from rhodecode.lib.vcs.exceptions import EmptyRepositoryError
from rhodecode.lib.vcs.backends.base import EmptyChangeset
from rhodecode.lib.diffs import LimitedDiffContainer
Enabled inline comments in pull-requests
r2489 from rhodecode.model.db import User, PullRequest, ChangesetStatus,\
ChangesetComment
Added basic models for saving open pull requests...
r2434 from rhodecode.model.pull_request import PullRequestModel
from rhodecode.model.meta import Session
- pull request generates overview based on it's params...
r2440 from rhodecode.model.repo import RepoModel
from rhodecode.model.comment import ChangesetCommentsModel
from rhodecode.model.changeset_status import ChangesetStatusModel
added more validations when opening pull request...
r2711 from rhodecode.model.forms import PullRequestForm
Mads Kiilerich
pullrequest selection list: emphasize named branches that are neighbours
r3515 from mercurial import scmutil
pagination in pull-requests page + UI
r3676 from rhodecode.lib.utils2 import safe_int
pull requests draft UI
r2244
log = logging.getLogger(__name__)
class PullrequestsController(BaseRepoController):
@LoginRequired()
@HasRepoPermissionAnyDecorator('repository.read', 'repository.write',
'repository.admin')
def __before__(self):
super(PullrequestsController, self).__before__()
Added autocomplete widget for pull request reviewers, in exchange of 90s style...
r2612 repo_model = RepoModel()
c.users_array = repo_model.get_users_js()
c.users_groups_array = repo_model.get_users_groups_js()
pull requests draft UI
r2244
Mads Kiilerich
pullrequest selection list: emphasize named branches that are neighbours
r3515 def _get_repo_refs(self, repo, rev=None, branch_rev=None):
Mads Kiilerich
pullrequests: refactor changeset selectors, tip is special and not a real tag
r3444 """return a structure with repo's interesting changesets, suitable for
the selectors in pullrequest.html"""
Mads Kiilerich
pullrequest selection list: emphasize named branches that are neighbours
r3515 # list named branches that has been merged to this named branch - it should probably merge back
Mads Kiilerich
pullrequests: only create special select entry for a changeset if it has no symbolic name
r3598 peers = []
Mads Kiilerich
pullrequests: don't pass unicode strings to Mercurial
r3719
if rev:
rev = safe_str(rev)
Mads Kiilerich
pullrequest selection list: emphasize named branches that are neighbours
r3515 if branch_rev:
Mads Kiilerich
pullrequests: don't pass unicode strings to Mercurial
r3719 branch_rev = safe_str(branch_rev)
Mads Kiilerich
pullrequest selection list: emphasize named branches that are neighbours
r3515 # not restricting to merge() would also get branch point and be better
# (especially because it would get the branch point) ... but is currently too expensive
revs = ["sort(parents(branch(id('%s')) and merge()) - branch(id('%s')))" %
(branch_rev, branch_rev)]
otherbranches = {}
for i in scmutil.revrange(repo._repo, revs):
cs = repo.get_changeset(i)
otherbranches[cs.branch] = cs.raw_id
for branch, node in otherbranches.iteritems():
selected = 'branch:%s:%s' % (branch, node)
Mads Kiilerich
pullrequests: only create special select entry for a changeset if it has no symbolic name
r3598 peers.append((selected, branch))
selected = None
branches = []
for branch, branchrev in repo.branches.iteritems():
n = 'branch:%s:%s' % (branch, branchrev)
branches.append((n, branch))
if rev == branchrev:
selected = n
bookmarks = []
for bookmark, bookmarkrev in repo.bookmarks.iteritems():
n = 'book:%s:%s' % (bookmark, bookmarkrev)
bookmarks.append((n, bookmark))
if rev == bookmarkrev:
selected = n
tags = []
for tag, tagrev in repo.tags.iteritems():
n = 'tag:%s:%s' % (tag, tagrev)
tags.append((n, tag))
if rev == tagrev and tag != 'tip': # tip is not a real tag - and its branch is better
selected = n
pull requests draft UI
r2244
Mads Kiilerich
pullrequests: only create special select entry for a changeset if it has no symbolic name
r3598 # prio 1: rev was selected as existing entry above
# prio 2: create special entry for rev; rev _must_ be used
specials = []
if rev and selected is None:
selected = 'rev:%s:%s' % (rev, rev)
specials = [(selected, '%s: %s' % (_("Changeset"), rev[:12]))]
# prio 3: most recent peer branch
if peers and not selected:
selected = peers[0][0][0]
# prio 4: tip revision
if not selected:
selected = 'tag:tip:%s' % repo.tags['tip']
groups = [(specials, _("Special")),
(peers, _("Peer branches")),
(bookmarks, _("Bookmarks")),
(branches, _("Branches")),
(tags, _("Tags")),
]
return [g for g in groups if g[0]], selected
fixed few issues with autoselection of revisions on pull requests
r2849
Implemented #670 Implementation of Roles in Pull Request...
r3104 def _get_is_allowed_change_status(self, pull_request):
white space cleanup
r3149 owner = self.rhodecode_user.user_id == pull_request.user_id
Implemented #670 Implementation of Roles in Pull Request...
r3104 reviewer = self.rhodecode_user.user_id in [x.user_id for x in
pull_request.reviewers]
return (self.rhodecode_user.admin or owner or reviewer)
- pull request generates overview based on it's params...
r2440 def show_all(self, repo_name):
c.pull_requests = PullRequestModel().get_all(repo_name)
c.repo_name = repo_name
pagination in pull-requests page + UI
r3676 p = safe_int(request.params.get('page', 1), 1)
c.pullrequests_pager = Page(c.pull_requests, page=p, items_per_page=10)
c.pullrequest_data = render('/pullrequests/pullrequest_data.html')
if request.environ.get('HTTP_X_PARTIAL_XHR'):
return c.pullrequest_data
- pull request generates overview based on it's params...
r2440 return render('/pullrequests/pullrequest_show_all.html')
Opening pull request shouldn't be accessible by anonymous users
r2627 @NotAnonymous()
pull requests draft UI
r2244 def index(self):
created pull-request overview
r2395 org_repo = c.rhodecode_db_repo
data checks
r2444
if org_repo.scm_instance.alias != 'hg':
log.error('Review not available for GIT REPOS')
raise HTTPNotFound
protect agains pull requests on empty repositories
r2874 try:
org_repo.scm_instance.get_changeset()
except EmptyRepositoryError, e:
h.flash(h.literal(_('There are no changesets yet')),
category='warning')
redirect(url('summary_home', repo_name=org_repo.repo_name))
Mads Kiilerich
pullrequest: pullrequest from changelog view...
r3485 org_rev = request.GET.get('rev_end')
# rev_start is not directly useful - its parent could however be used
# as default for other and thus give a simple compare view
#other_rev = request.POST.get('rev_start')
created pull-request overview
r2395 c.org_repos = []
Mads Kiilerich
pull request: don't show fake path with owner names - and owner avatars is also not relevant
r3330 c.org_repos.append((org_repo.repo_name, org_repo.repo_name))
Mads Kiilerich
pull request: select 'tip' by default ... and show what it means right now
r3329 c.default_org_repo = org_repo.repo_name
Mads Kiilerich
pullrequest: pullrequest from changelog view...
r3485 c.org_refs, c.default_org_ref = self._get_repo_refs(org_repo.scm_instance, org_rev)
Added dynamic data loading for other repo we open pull request against...
r2541
Mads Kiilerich
pull request: move code around and rename default variables
r3327 c.other_repos = []
Mads Kiilerich
pullrequests: cleanup of other_repo initialization code
r3597 other_repos_info = {}
def add_other_repo(repo, branch_rev=None):
if repo.repo_name in other_repos_info: # shouldn't happen
return
c.other_repos.append((repo.repo_name, repo.repo_name))
other_refs, selected_other_ref = self._get_repo_refs(repo.scm_instance, branch_rev=branch_rev)
other_repos_info[repo.repo_name] = {
'user': dict(user_id=repo.user.user_id,
username=repo.user.username,
firstname=repo.user.firstname,
lastname=repo.user.lastname,
gravatar_link=h.gravatar_url(repo.user.email, 14)),
Mads Kiilerich
pullrequests: just show first line of description as hint
r3604 'description': repo.description.split('\n', 1)[0],
Mads Kiilerich
pullrequests: cleanup of other_repo initialization code
r3597 'revs': h.select('other_ref', selected_other_ref, other_refs, class_='refs')
}
# add org repo to other so we can open pull request against peer branches on itself
add_other_repo(org_repo, branch_rev=org_rev)
Mads Kiilerich
pull request: move code around and rename default variables
r3327 c.default_other_repo = org_repo.repo_name
Added dynamic data loading for other repo we open pull request against...
r2541
whitespace cleanup
r3394 # gather forks and add to this list ... even though it is rare to
Mads Kiilerich
pullrequests: fix non-js defaults for repo owner...
r3595 # request forks to pull from their parent
created pull-request overview
r2395 for fork in org_repo.forks:
Mads Kiilerich
pullrequests: cleanup of other_repo initialization code
r3597 add_other_repo(fork)
Mads Kiilerich
pull request: move code around and rename default variables
r3327
# add parents of this fork also, but only if it's not empty
pull requests throw an error if parent of fork didn't have any changesets yet. Now it's filter out from list of available sources
r2933 if org_repo.parent and org_repo.parent.scm_instance.revisions:
Mads Kiilerich
pullrequests: cleanup of other_repo initialization code
r3597 add_other_repo(org_repo.parent)
Mads Kiilerich
pull request: move code around and rename default variables
r3327 c.default_other_repo = org_repo.parent.repo_name
created pull-request overview
r2395
Mads Kiilerich
pullrequests: fix non-js defaults for repo owner...
r3595 c.default_other_repo_info = other_repos_info[c.default_other_repo]
Added dynamic data loading for other repo we open pull request against...
r2541 c.other_repos_info = json.dumps(other_repos_info)
pagination in pull-requests page + UI
r3676
pull requests draft UI
r2244 return render('/pullrequests/pullrequest.html')
Added basic models for saving open pull requests...
r2434
Added autocomplete widget for pull request reviewers, in exchange of 90s style...
r2612 @NotAnonymous()
Added basic models for saving open pull requests...
r2434 def create(self, repo_name):
Fixed #585, checks for status of revision where to strict, and made opening pull request with those revision impossible due to previosly set status....
r2893 repo = RepoModel()._get_repo(repo_name)
added more validations when opening pull request...
r2711 try:
Fixed #585, checks for status of revision where to strict, and made opening pull request with those revision impossible due to previosly set status....
r2893 _form = PullRequestForm(repo.repo_id)().to_python(request.POST)
added more validations when opening pull request...
r2711 except formencode.Invalid, errors:
log.error(traceback.format_exc())
if errors.error_dict.get('revisions'):
Load generated revs while switching to other sources of pull-requests....
r2720 msg = 'Revisions: %s' % errors.error_dict['revisions']
added more validations when opening pull request...
r2711 elif errors.error_dict.get('pullrequest_title'):
msg = _('Pull request requires a title with min. 3 chars')
else:
Mads Kiilerich
Fix a lot of casings - use standard casing in most places
r3654 msg = _('Error creating pull request')
Added autocomplete widget for pull request reviewers, in exchange of 90s style...
r2612
added more validations when opening pull request...
r2711 h.flash(msg, 'error')
return redirect(url('pullrequest_home', repo_name=repo_name))
Added basic models for saving open pull requests...
r2434
added more validations when opening pull request...
r2711 org_repo = _form['org_repo']
Mads Kiilerich
compare/pullrequest: introduce merge parameter...
r3486 org_ref = 'rev:merge:%s' % _form['merge_rev']
added more validations when opening pull request...
r2711 other_repo = _form['other_repo']
Mads Kiilerich
compare/pullrequest: introduce merge parameter...
r3486 other_ref = 'rev:ancestor:%s' % _form['ancestor_rev']
Mads Kiilerich
pullrequests: fix changesets ordering being reversed when creating new pull requests...
r3720 revisions = reversed(_form['revisions'])
added more validations when opening pull request...
r2711 reviewers = _form['review_members']
title = _form['pullrequest_title']
description = _form['pullrequest_desc']
Added basic models for saving open pull requests...
r2434
try:
Added dynamic data loading for other repo we open pull request against...
r2541 pull_request = PullRequestModel().create(
self.rhodecode_user.user_id, org_repo, org_ref, other_repo,
other_ref, revisions, reviewers, title, description
)
Session().commit()
redirect to pull-request overview after creation
r2533 h.flash(_('Successfully opened new pull request'),
category='success')
Added basic models for saving open pull requests...
r2434 except Exception:
redirect to pull-request overview after creation
r2533 h.flash(_('Error occurred during sending pull request'),
Added basic models for saving open pull requests...
r2434 category='error')
log.error(traceback.format_exc())
added more validations when opening pull request...
r2711 return redirect(url('pullrequest_home', repo_name=repo_name))
Added basic models for saving open pull requests...
r2434
redirect to pull-request overview after creation
r2533 return redirect(url('pullrequest_show', repo_name=other_repo,
pull_request_id=pull_request.pull_request_id))
Added basic models for saving open pull requests...
r2434
Added editing of pull-request reviewers.
r2614 @NotAnonymous()
@jsonify
def update(self, repo_name, pull_request_id):
pull_request = PullRequest.get_or_404(pull_request_id)
if pull_request.is_closed():
raise HTTPForbidden()
typos+docs.
r2769 #only owner or admin can update it
owner = pull_request.author.user_id == c.rhodecode_user.user_id
if h.HasPermissionAny('hg.admin', 'repository.admin')() or owner:
reviewers_ids = map(int, filter(lambda v: v not in [None, ''],
request.POST.get('reviewers_ids', '').split(',')))
new summary for opened pull requests...
r2712
typos+docs.
r2769 PullRequestModel().update_reviewers(pull_request_id, reviewers_ids)
Basic implementation of cherry picking changesets...
r3023 Session().commit()
typos+docs.
r2769 return True
raise HTTPForbidden()
Added editing of pull-request reviewers.
r2614
Authors of pull-requests can now delete them
r2746 @NotAnonymous()
@jsonify
def delete(self, repo_name, pull_request_id):
pull_request = PullRequest.get_or_404(pull_request_id)
#only owner can delete it !
if pull_request.author.user_id == c.rhodecode_user.user_id:
PullRequestModel().delete(pull_request)
Session().commit()
h.flash(_('Successfully deleted pull request'),
category='success')
Basic implementation of cherry picking changesets...
r3023 return redirect(url('admin_settings_my_account', anchor='pullrequests'))
typos+docs.
r2769 raise HTTPForbidden()
Authors of pull-requests can now delete them
r2746
Added option to close pull requests, in future that will be close & merge
r2608 def _load_compare_data(self, pull_request, enable_comments=True):
small refactoring, moved shared for diff generation of code into pull-request model
r2442 """
Load context data needed for generating compare diff
- pull request generates overview based on it's params...
r2440
small refactoring, moved shared for diff generation of code into pull-request model
r2442 :param pull_request:
:type pull_request:
"""
- pull request generates overview based on it's params...
r2440 org_repo = pull_request.org_repo
added more validations when opening pull request...
r2711 (org_ref_type,
org_ref_name,
org_ref_rev) = pull_request.org_ref.split(':')
Basic implementation of cherry picking changesets...
r3023 other_repo = org_repo
added more validations when opening pull request...
r2711 (other_ref_type,
other_ref_name,
other_ref_rev) = pull_request.other_ref.split(':')
- pull request generates overview based on it's params...
r2440
Load generated revs while switching to other sources of pull-requests....
r2720 # despite opening revisions for bookmarks/branches/tags, we always
Mads Kiilerich
compare: drop unused rev_start and rev_end
r3484 # convert this to rev to prevent changes after bookmark or branch change
added more validations when opening pull request...
r2711 org_ref = ('rev', org_ref_rev)
other_ref = ('rev', other_ref_rev)
- pull request generates overview based on it's params...
r2440
c.org_repo = org_repo
c.other_repo = other_repo
Basic implementation of cherry picking changesets...
r3023 c.fulldiff = fulldiff = request.GET.get('fulldiff')
c.cs_ranges = [org_repo.get_changeset(x) for x in pull_request.revisions]
Fixed status of changesets in preview windows...
r2803 c.statuses = org_repo.statuses([x.raw_id for x in c.cs_ranges])
- pull request generates overview based on it's params...
r2440
c.org_ref = org_ref[1]
show links to files on compare data at other and org refs
r3357 c.org_ref_type = org_ref[0]
- pull request generates overview based on it's params...
r2440 c.other_ref = other_ref[1]
show links to files on compare data at other and org refs
r3357 c.other_ref_type = other_ref[0]
Basic implementation of cherry picking changesets...
r3023
diff_limit = self.cut_off_limit if not fulldiff else None
#we swap org/other ref since we run a simple diff on one repo
Mads Kiilerich
diffs: drop diffs.differ...
r3718 log.debug('running diff between %s@%s and %s@%s'
% (org_repo.scm_instance.path, org_ref,
other_repo.scm_instance.path, other_ref))
_diff = org_repo.scm_instance.get_diff(rev1=safe_str(org_ref[1]), rev2=safe_str(other_ref[1]))
Multiple changes for compare system...
r3015
Basic implementation of cherry picking changesets...
r3023 diff_processor = diffs.DiffProcessor(_diff or '', format='gitdiff',
diff_limit=diff_limit)
- pull request generates overview based on it's params...
r2440 _parsed = diff_processor.prepare()
Basic implementation of cherry picking changesets...
r3023 c.limited_diff = False
if isinstance(_parsed, LimitedDiffContainer):
c.limited_diff = True
- pull request generates overview based on it's params...
r2440 c.files = []
c.changes = {}
Basic implementation of cherry picking changesets...
r3023 c.lines_added = 0
c.lines_deleted = 0
- pull request generates overview based on it's params...
r2440 for f in _parsed:
Basic implementation of cherry picking changesets...
r3023 st = f['stats']
if st[0] != 'b':
c.lines_added += st[0]
c.lines_deleted += st[1]
- pull request generates overview based on it's params...
r2440 fid = h.FID('', f['filename'])
c.files.append([fid, f['operation'], f['filename'], f['stats']])
Added option to close pull requests, in future that will be close & merge
r2608 diff = diff_processor.as_html(enable_comments=enable_comments,
Implemented generation of changesets based...
r2995 parsed_lines=[f])
- pull request generates overview based on it's params...
r2440 c.changes[fid] = [f['operation'], f['filename'], diff]
Added basic models for saving open pull requests...
r2434 def show(self, repo_name, pull_request_id):
- pull request generates overview based on it's params...
r2440 repo_model = RepoModel()
c.users_array = repo_model.get_users_js()
c.users_groups_array = repo_model.get_users_groups_js()
use get_or_404 where possible
r2496 c.pull_request = PullRequest.get_or_404(pull_request_id)
Implemented #670 Implementation of Roles in Pull Request...
r3104 c.allowed_to_change_status = self._get_is_allowed_change_status(c.pull_request)
Adde pull request voting recalculation
r2481 cc_model = ChangesetCommentsModel()
cs_model = ChangesetStatusModel()
_cs_statuses = cs_model.get_statuses(c.pull_request.org_repo,
pull_request=c.pull_request,
with_revisions=True)
cs_statuses = defaultdict(list)
for st in _cs_statuses:
cs_statuses[st.author.username] += [st]
c.pull_request_reviewers = []
new summary for opened pull requests...
r2712 c.pull_request_pending_reviewers = []
Adde pull request voting recalculation
r2481 for o in c.pull_request.reviewers:
st = cs_statuses.get(o.user.username, None)
if st:
sorter = lambda k: k.version
st = [(x, list(y)[0])
for x, y in (groupby(sorted(st, key=sorter), sorter))]
new summary for opened pull requests...
r2712 else:
c.pull_request_pending_reviewers.append(o.user)
Adde pull request voting recalculation
r2481 c.pull_request_reviewers.append([o.user, st])
data checks
r2444
# pull_requests repo_name we opened it against
# ie. other_repo must match
if repo_name != c.pull_request.other_repo.repo_name:
raise HTTPNotFound
small refactoring, moved shared for diff generation of code into pull-request model
r2442 # load compare data into template context
Added option to close pull requests, in future that will be close & merge
r2608 enable_comments = not c.pull_request.is_closed()
self._load_compare_data(c.pull_request, enable_comments=enable_comments)
- pull request generates overview based on it's params...
r2440
# inline comments
c.inline_cnt = 0
Adde pull request voting recalculation
r2481 c.inline_comments = cc_model.get_inline_comments(
c.rhodecode_db_repo.repo_id,
pull_request=pull_request_id)
- pull request generates overview based on it's params...
r2440 # count inline comments
for __, lines in c.inline_comments:
for comments in lines.values():
c.inline_cnt += len(comments)
# comments
Adde pull request voting recalculation
r2481 c.comments = cc_model.get_comments(c.rhodecode_db_repo.repo_id,
pull_request=pull_request_id)
- pull request generates overview based on it's params...
r2440
Fixed status of changesets in preview windows...
r2803 try:
cur_status = c.statuses[c.pull_request.revisions[0]][0]
Don't catch all exceptions
r3631 except Exception:
Fixed status of changesets in preview windows...
r2803 log.error(traceback.format_exc())
cur_status = 'undefined'
if c.pull_request.is_closed() and 0:
c.current_changeset_status = cur_status
else:
# changeset(pull-request) status calulation based on reviewers
c.current_changeset_status = cs_model.calculate_status(
c.pull_request_reviewers,
)
- pull request generates overview based on it's params...
r2440 c.changeset_statuses = ChangesetStatus.STATUSES
Fixed status of changesets in preview windows...
r2803
Mads Kiilerich
compare: cleanup of as_form handling...
r3442 c.as_form = False
Mads Kiilerich
compare/pullrequest: introduce merge parameter...
r3486 c.ancestor = None # there is one - but right here we don't know which
Added basic models for saving open pull requests...
r2434 return render('/pullrequests/pullrequest_show.html')
- added commenting to pull requests...
r2443
Opening pull request shouldn't be accessible by anonymous users
r2627 @NotAnonymous()
- added commenting to pull requests...
r2443 @jsonify
def comment(self, repo_name, pull_request_id):
Added option to close pull requests, in future that will be close & merge
r2608 pull_request = PullRequest.get_or_404(pull_request_id)
if pull_request.is_closed():
raise HTTPForbidden()
- added commenting to pull requests...
r2443
status = request.POST.get('changeset_status')
change_status = request.POST.get('change_changeset_status')
always post text about status changes of code-review
r2796 text = request.POST.get('text')
notifications changes...
r3430 close_pr = request.POST.get('save_close')
Implemented #670 Implementation of Roles in Pull Request...
r3104
allowed_to_change_status = self._get_is_allowed_change_status(pull_request)
if status and change_status and allowed_to_change_status:
Mads Kiilerich
Fix a lot of casings - use standard casing in most places
r3654 _def = (_('Status change -> %s')
always post text about status changes of code-review
r2796 % ChangesetStatus.get_status_lbl(status))
notifications changes...
r3430 if close_pr:
_def = _('Closing with') + ' ' + _def
text = text or _def
- added commenting to pull requests...
r2443 comm = ChangesetCommentsModel().create(
always post text about status changes of code-review
r2796 text=text,
Added dynamic data loading for other repo we open pull request against...
r2541 repo=c.rhodecode_db_repo.repo_id,
user=c.rhodecode_user.user_id,
- added commenting to pull requests...
r2443 pull_request=pull_request_id,
f_path=request.POST.get('f_path'),
line_no=request.POST.get('line'),
white space cleanup
r2478 status_change=(ChangesetStatus.get_status_lbl(status)
notifications changes...
r3430 if status and change_status
and allowed_to_change_status else None),
closing_pr=close_pr
- added commenting to pull requests...
r2443 )
action_logger(self.rhodecode_user,
'user_commented_pull_request:%s' % pull_request_id,
c.rhodecode_db_repo, self.ip_addr, self.sa)
Implemented #670 Implementation of Roles in Pull Request...
r3104 if allowed_to_change_status:
# get status if set !
if status and change_status:
ChangesetStatusModel().set_status(
c.rhodecode_db_repo.repo_id,
status,
c.rhodecode_user.user_id,
comm,
pull_request=pull_request_id
)
notifications changes...
r3430 if close_pr:
Implemented #670 Implementation of Roles in Pull Request...
r3104 if status in ['rejected', 'approved']:
PullRequestModel().close_pull_request(pull_request_id)
action_logger(self.rhodecode_user,
'user_closed_pull_request:%s' % pull_request_id,
c.rhodecode_db_repo, self.ip_addr, self.sa)
else:
h.flash(_('Closing pull request on other statuses than '
'rejected or approved forbidden'),
category='warning')
Added option to close pull requests, in future that will be close & merge
r2608
Added dynamic data loading for other repo we open pull request against...
r2541 Session().commit()
- added commenting to pull requests...
r2443
if not request.environ.get('HTTP_X_PARTIAL_XHR'):
return redirect(h.url('pullrequest_show', repo_name=repo_name,
pull_request_id=pull_request_id))
data = {
'target_id': h.safeid(h.safe_unicode(request.POST.get('f_path'))),
}
if comm:
c.co = comm
data.update(comm.get_dict())
data.update({'rendered_text':
render('changeset/changeset_comment_block.html')})
data checks
r2444 return data
Enabled inline comments in pull-requests
r2489
Opening pull request shouldn't be accessible by anonymous users
r2627 @NotAnonymous()
Enabled inline comments in pull-requests
r2489 @jsonify
def delete_comment(self, repo_name, comment_id):
co = ChangesetComment.get(comment_id)
Added option to close pull requests, in future that will be close & merge
r2608 if co.pull_request.is_closed():
#don't allow deleting comments on closed pull request
raise HTTPForbidden()
Mads Kiilerich
access control: fix owner checks - they were always true...
r3141 owner = co.author.user_id == c.rhodecode_user.user_id
Enabled inline comments in pull-requests
r2489 if h.HasPermissionAny('hg.admin', 'repository.admin')() or owner:
ChangesetCommentsModel().delete(comment=co)
Added dynamic data loading for other repo we open pull request against...
r2541 Session().commit()
Enabled inline comments in pull-requests
r2489 return True
else:
Added editing of pull-request reviewers.
r2614 raise HTTPForbidden()