Show More
@@ -1,475 +1,480 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | |
|
3 | 3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
4 | 4 | # |
|
5 | 5 | # This program is free software: you can redistribute it and/or modify |
|
6 | 6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
7 | 7 | # (only), as published by the Free Software Foundation. |
|
8 | 8 | # |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 | 13 | # |
|
14 | 14 | # You should have received a copy of the GNU Affero General Public License |
|
15 | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
16 | 16 | # |
|
17 | 17 | # This program is dual-licensed. If you wish to learn more about the |
|
18 | 18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
19 | 19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
20 | 20 | |
|
21 | 21 | """ |
|
22 | 22 | commit controller for RhodeCode showing changes between commits |
|
23 | 23 | """ |
|
24 | 24 | |
|
25 | 25 | import logging |
|
26 | 26 | |
|
27 | 27 | from collections import defaultdict |
|
28 | 28 | from webob.exc import HTTPForbidden, HTTPBadRequest, HTTPNotFound |
|
29 | 29 | |
|
30 | 30 | from pylons import tmpl_context as c, request, response |
|
31 | 31 | from pylons.i18n.translation import _ |
|
32 | 32 | from pylons.controllers.util import redirect |
|
33 | 33 | |
|
34 | 34 | from rhodecode.lib import auth |
|
35 | 35 | from rhodecode.lib import diffs, codeblocks |
|
36 | 36 | from rhodecode.lib.auth import ( |
|
37 | 37 | LoginRequired, HasRepoPermissionAnyDecorator, NotAnonymous) |
|
38 | 38 | from rhodecode.lib.base import BaseRepoController, render |
|
39 | 39 | from rhodecode.lib.compat import OrderedDict |
|
40 | 40 | from rhodecode.lib.exceptions import StatusChangeOnClosedPullRequestError |
|
41 | 41 | import rhodecode.lib.helpers as h |
|
42 | 42 | from rhodecode.lib.utils import action_logger, jsonify |
|
43 | 43 | from rhodecode.lib.utils2 import safe_unicode |
|
44 | 44 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
45 | 45 | from rhodecode.lib.vcs.exceptions import ( |
|
46 | 46 | RepositoryError, CommitDoesNotExistError, NodeDoesNotExistError) |
|
47 | 47 | from rhodecode.model.db import ChangesetComment, ChangesetStatus |
|
48 | 48 | from rhodecode.model.changeset_status import ChangesetStatusModel |
|
49 | 49 | from rhodecode.model.comment import CommentsModel |
|
50 | 50 | from rhodecode.model.meta import Session |
|
51 | 51 | from rhodecode.model.repo import RepoModel |
|
52 | 52 | |
|
53 | 53 | |
|
54 | 54 | log = logging.getLogger(__name__) |
|
55 | 55 | |
|
56 | 56 | |
|
57 | 57 | def _update_with_GET(params, GET): |
|
58 | 58 | for k in ['diff1', 'diff2', 'diff']: |
|
59 | 59 | params[k] += GET.getall(k) |
|
60 | 60 | |
|
61 | 61 | |
|
62 | 62 | def get_ignore_ws(fid, GET): |
|
63 | 63 | ig_ws_global = GET.get('ignorews') |
|
64 | 64 | ig_ws = filter(lambda k: k.startswith('WS'), GET.getall(fid)) |
|
65 | 65 | if ig_ws: |
|
66 | 66 | try: |
|
67 | 67 | return int(ig_ws[0].split(':')[-1]) |
|
68 | 68 | except Exception: |
|
69 | 69 | pass |
|
70 | 70 | return ig_ws_global |
|
71 | 71 | |
|
72 | 72 | |
|
73 | 73 | def _ignorews_url(GET, fileid=None): |
|
74 | 74 | fileid = str(fileid) if fileid else None |
|
75 | 75 | params = defaultdict(list) |
|
76 | 76 | _update_with_GET(params, GET) |
|
77 | 77 | label = _('Show whitespace') |
|
78 | 78 | tooltiplbl = _('Show whitespace for all diffs') |
|
79 | 79 | ig_ws = get_ignore_ws(fileid, GET) |
|
80 | 80 | ln_ctx = get_line_ctx(fileid, GET) |
|
81 | 81 | |
|
82 | 82 | if ig_ws is None: |
|
83 | 83 | params['ignorews'] += [1] |
|
84 | 84 | label = _('Ignore whitespace') |
|
85 | 85 | tooltiplbl = _('Ignore whitespace for all diffs') |
|
86 | 86 | ctx_key = 'context' |
|
87 | 87 | ctx_val = ln_ctx |
|
88 | 88 | |
|
89 | 89 | # if we have passed in ln_ctx pass it along to our params |
|
90 | 90 | if ln_ctx: |
|
91 | 91 | params[ctx_key] += [ctx_val] |
|
92 | 92 | |
|
93 | 93 | if fileid: |
|
94 | 94 | params['anchor'] = 'a_' + fileid |
|
95 | 95 | return h.link_to(label, h.url.current(**params), title=tooltiplbl, class_='tooltip') |
|
96 | 96 | |
|
97 | 97 | |
|
98 | 98 | def get_line_ctx(fid, GET): |
|
99 | 99 | ln_ctx_global = GET.get('context') |
|
100 | 100 | if fid: |
|
101 | 101 | ln_ctx = filter(lambda k: k.startswith('C'), GET.getall(fid)) |
|
102 | 102 | else: |
|
103 | 103 | _ln_ctx = filter(lambda k: k.startswith('C'), GET) |
|
104 | 104 | ln_ctx = GET.get(_ln_ctx[0]) if _ln_ctx else ln_ctx_global |
|
105 | 105 | if ln_ctx: |
|
106 | 106 | ln_ctx = [ln_ctx] |
|
107 | 107 | |
|
108 | 108 | if ln_ctx: |
|
109 | 109 | retval = ln_ctx[0].split(':')[-1] |
|
110 | 110 | else: |
|
111 | 111 | retval = ln_ctx_global |
|
112 | 112 | |
|
113 | 113 | try: |
|
114 | 114 | return int(retval) |
|
115 | 115 | except Exception: |
|
116 | 116 | return 3 |
|
117 | 117 | |
|
118 | 118 | |
|
119 | 119 | def _context_url(GET, fileid=None): |
|
120 | 120 | """ |
|
121 | 121 | Generates a url for context lines. |
|
122 | 122 | |
|
123 | 123 | :param fileid: |
|
124 | 124 | """ |
|
125 | 125 | |
|
126 | 126 | fileid = str(fileid) if fileid else None |
|
127 | 127 | ig_ws = get_ignore_ws(fileid, GET) |
|
128 | 128 | ln_ctx = (get_line_ctx(fileid, GET) or 3) * 2 |
|
129 | 129 | |
|
130 | 130 | params = defaultdict(list) |
|
131 | 131 | _update_with_GET(params, GET) |
|
132 | 132 | |
|
133 | 133 | if ln_ctx > 0: |
|
134 | 134 | params['context'] += [ln_ctx] |
|
135 | 135 | |
|
136 | 136 | if ig_ws: |
|
137 | 137 | ig_ws_key = 'ignorews' |
|
138 | 138 | ig_ws_val = 1 |
|
139 | 139 | params[ig_ws_key] += [ig_ws_val] |
|
140 | 140 | |
|
141 | 141 | lbl = _('Increase context') |
|
142 | 142 | tooltiplbl = _('Increase context for all diffs') |
|
143 | 143 | |
|
144 | 144 | if fileid: |
|
145 | 145 | params['anchor'] = 'a_' + fileid |
|
146 | 146 | return h.link_to(lbl, h.url.current(**params), title=tooltiplbl, class_='tooltip') |
|
147 | 147 | |
|
148 | 148 | |
|
149 | 149 | class ChangesetController(BaseRepoController): |
|
150 | 150 | |
|
151 | 151 | def __before__(self): |
|
152 | 152 | super(ChangesetController, self).__before__() |
|
153 | 153 | c.affected_files_cut_off = 60 |
|
154 | 154 | |
|
155 | 155 | def _index(self, commit_id_range, method): |
|
156 | 156 | c.ignorews_url = _ignorews_url |
|
157 | 157 | c.context_url = _context_url |
|
158 | 158 | c.fulldiff = fulldiff = request.GET.get('fulldiff') |
|
159 | 159 | |
|
160 | 160 | # fetch global flags of ignore ws or context lines |
|
161 | 161 | context_lcl = get_line_ctx('', request.GET) |
|
162 | 162 | ign_whitespace_lcl = get_ignore_ws('', request.GET) |
|
163 | 163 | |
|
164 | 164 | # diff_limit will cut off the whole diff if the limit is applied |
|
165 | 165 | # otherwise it will just hide the big files from the front-end |
|
166 | 166 | diff_limit = self.cut_off_limit_diff |
|
167 | 167 | file_limit = self.cut_off_limit_file |
|
168 | 168 | |
|
169 | 169 | # get ranges of commit ids if preset |
|
170 | 170 | commit_range = commit_id_range.split('...')[:2] |
|
171 | 171 | |
|
172 | 172 | try: |
|
173 | 173 | pre_load = ['affected_files', 'author', 'branch', 'date', |
|
174 | 174 | 'message', 'parents'] |
|
175 | 175 | |
|
176 | 176 | if len(commit_range) == 2: |
|
177 | 177 | commits = c.rhodecode_repo.get_commits( |
|
178 | 178 | start_id=commit_range[0], end_id=commit_range[1], |
|
179 | 179 | pre_load=pre_load) |
|
180 | 180 | commits = list(commits) |
|
181 | 181 | else: |
|
182 | 182 | commits = [c.rhodecode_repo.get_commit( |
|
183 | 183 | commit_id=commit_id_range, pre_load=pre_load)] |
|
184 | 184 | |
|
185 | 185 | c.commit_ranges = commits |
|
186 | 186 | if not c.commit_ranges: |
|
187 | 187 | raise RepositoryError( |
|
188 | 188 | 'The commit range returned an empty result') |
|
189 | 189 | except CommitDoesNotExistError: |
|
190 | 190 | msg = _('No such commit exists for this repository') |
|
191 | 191 | h.flash(msg, category='error') |
|
192 | 192 | raise HTTPNotFound() |
|
193 | 193 | except Exception: |
|
194 | 194 | log.exception("General failure") |
|
195 | 195 | raise HTTPNotFound() |
|
196 | 196 | |
|
197 | 197 | c.changes = OrderedDict() |
|
198 | 198 | c.lines_added = 0 |
|
199 | 199 | c.lines_deleted = 0 |
|
200 | 200 | |
|
201 | 201 | # auto collapse if we have more than limit |
|
202 | 202 | collapse_limit = diffs.DiffProcessor._collapse_commits_over |
|
203 | 203 | c.collapse_all_commits = len(c.commit_ranges) > collapse_limit |
|
204 | 204 | |
|
205 | 205 | c.commit_statuses = ChangesetStatus.STATUSES |
|
206 | 206 | c.inline_comments = [] |
|
207 | 207 | c.files = [] |
|
208 | 208 | |
|
209 | 209 | c.statuses = [] |
|
210 | 210 | c.comments = [] |
|
211 | 211 | if len(c.commit_ranges) == 1: |
|
212 | 212 | commit = c.commit_ranges[0] |
|
213 | 213 | c.comments = CommentsModel().get_comments( |
|
214 | 214 | c.rhodecode_db_repo.repo_id, |
|
215 | 215 | revision=commit.raw_id) |
|
216 | 216 | c.statuses.append(ChangesetStatusModel().get_status( |
|
217 | 217 | c.rhodecode_db_repo.repo_id, commit.raw_id)) |
|
218 | 218 | # comments from PR |
|
219 | 219 | statuses = ChangesetStatusModel().get_statuses( |
|
220 | 220 | c.rhodecode_db_repo.repo_id, commit.raw_id, |
|
221 | 221 | with_revisions=True) |
|
222 | 222 | prs = set(st.pull_request for st in statuses |
|
223 | 223 | if st.pull_request is not None) |
|
224 | 224 | # from associated statuses, check the pull requests, and |
|
225 | 225 | # show comments from them |
|
226 | 226 | for pr in prs: |
|
227 | 227 | c.comments.extend(pr.comments) |
|
228 | 228 | |
|
229 | 229 | # Iterate over ranges (default commit view is always one commit) |
|
230 | 230 | for commit in c.commit_ranges: |
|
231 | 231 | c.changes[commit.raw_id] = [] |
|
232 | 232 | |
|
233 | 233 | commit2 = commit |
|
234 | 234 | commit1 = commit.parents[0] if commit.parents else EmptyCommit() |
|
235 | 235 | |
|
236 | 236 | _diff = c.rhodecode_repo.get_diff( |
|
237 | 237 | commit1, commit2, |
|
238 | 238 | ignore_whitespace=ign_whitespace_lcl, context=context_lcl) |
|
239 | 239 | diff_processor = diffs.DiffProcessor( |
|
240 | 240 | _diff, format='newdiff', diff_limit=diff_limit, |
|
241 | 241 | file_limit=file_limit, show_full_diff=fulldiff) |
|
242 | 242 | |
|
243 | 243 | commit_changes = OrderedDict() |
|
244 | 244 | if method == 'show': |
|
245 | 245 | _parsed = diff_processor.prepare() |
|
246 | 246 | c.limited_diff = isinstance(_parsed, diffs.LimitedDiffContainer) |
|
247 | 247 | |
|
248 | 248 | _parsed = diff_processor.prepare() |
|
249 | 249 | |
|
250 | 250 | def _node_getter(commit): |
|
251 | 251 | def get_node(fname): |
|
252 | 252 | try: |
|
253 | 253 | return commit.get_node(fname) |
|
254 | 254 | except NodeDoesNotExistError: |
|
255 | 255 | return None |
|
256 | 256 | return get_node |
|
257 | 257 | |
|
258 | 258 | inline_comments = CommentsModel().get_inline_comments( |
|
259 | 259 | c.rhodecode_db_repo.repo_id, revision=commit.raw_id) |
|
260 | 260 | c.inline_cnt = CommentsModel().get_inline_comments_count( |
|
261 | 261 | inline_comments) |
|
262 | 262 | |
|
263 | 263 | diffset = codeblocks.DiffSet( |
|
264 | 264 | repo_name=c.repo_name, |
|
265 | 265 | source_node_getter=_node_getter(commit1), |
|
266 | 266 | target_node_getter=_node_getter(commit2), |
|
267 | 267 | comments=inline_comments |
|
268 | 268 | ).render_patchset(_parsed, commit1.raw_id, commit2.raw_id) |
|
269 | 269 | c.changes[commit.raw_id] = diffset |
|
270 | 270 | else: |
|
271 | 271 | # downloads/raw we only need RAW diff nothing else |
|
272 | 272 | diff = diff_processor.as_raw() |
|
273 | 273 | c.changes[commit.raw_id] = [None, None, None, None, diff, None, None] |
|
274 | 274 | |
|
275 | 275 | # sort comments by how they were generated |
|
276 | 276 | c.comments = sorted(c.comments, key=lambda x: x.comment_id) |
|
277 | 277 | |
|
278 | 278 | |
|
279 | 279 | if len(c.commit_ranges) == 1: |
|
280 | 280 | c.commit = c.commit_ranges[0] |
|
281 | 281 | c.parent_tmpl = ''.join( |
|
282 | 282 | '# Parent %s\n' % x.raw_id for x in c.commit.parents) |
|
283 | 283 | if method == 'download': |
|
284 | 284 | response.content_type = 'text/plain' |
|
285 | 285 | response.content_disposition = ( |
|
286 | 286 | 'attachment; filename=%s.diff' % commit_id_range[:12]) |
|
287 | 287 | return diff |
|
288 | 288 | elif method == 'patch': |
|
289 | 289 | response.content_type = 'text/plain' |
|
290 | 290 | c.diff = safe_unicode(diff) |
|
291 | 291 | return render('changeset/patch_changeset.mako') |
|
292 | 292 | elif method == 'raw': |
|
293 | 293 | response.content_type = 'text/plain' |
|
294 | 294 | return diff |
|
295 | 295 | elif method == 'show': |
|
296 | 296 | if len(c.commit_ranges) == 1: |
|
297 | 297 | return render('changeset/changeset.mako') |
|
298 | 298 | else: |
|
299 | 299 | c.ancestor = None |
|
300 | 300 | c.target_repo = c.rhodecode_db_repo |
|
301 | 301 | return render('changeset/changeset_range.mako') |
|
302 | 302 | |
|
303 | 303 | @LoginRequired() |
|
304 | 304 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
305 | 305 | 'repository.admin') |
|
306 | 306 | def index(self, revision, method='show'): |
|
307 | 307 | return self._index(revision, method=method) |
|
308 | 308 | |
|
309 | 309 | @LoginRequired() |
|
310 | 310 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
311 | 311 | 'repository.admin') |
|
312 | 312 | def changeset_raw(self, revision): |
|
313 | 313 | return self._index(revision, method='raw') |
|
314 | 314 | |
|
315 | 315 | @LoginRequired() |
|
316 | 316 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
317 | 317 | 'repository.admin') |
|
318 | 318 | def changeset_patch(self, revision): |
|
319 | 319 | return self._index(revision, method='patch') |
|
320 | 320 | |
|
321 | 321 | @LoginRequired() |
|
322 | 322 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
323 | 323 | 'repository.admin') |
|
324 | 324 | def changeset_download(self, revision): |
|
325 | 325 | return self._index(revision, method='download') |
|
326 | 326 | |
|
327 | 327 | @LoginRequired() |
|
328 | 328 | @NotAnonymous() |
|
329 | 329 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
330 | 330 | 'repository.admin') |
|
331 | 331 | @auth.CSRFRequired() |
|
332 | 332 | @jsonify |
|
333 | 333 | def comment(self, repo_name, revision): |
|
334 | 334 | commit_id = revision |
|
335 | 335 | status = request.POST.get('changeset_status', None) |
|
336 | 336 | text = request.POST.get('text') |
|
337 | 337 | comment_type = request.POST.get('comment_type') |
|
338 | 338 | resolves_comment_id = request.POST.get('resolves_comment_id', None) |
|
339 | 339 | |
|
340 | 340 | if status: |
|
341 | 341 | text = text or (_('Status change %(transition_icon)s %(status)s') |
|
342 | 342 | % {'transition_icon': '>', |
|
343 | 343 | 'status': ChangesetStatus.get_status_lbl(status)}) |
|
344 | 344 | |
|
345 | 345 | multi_commit_ids = filter( |
|
346 | 346 | lambda s: s not in ['', None], |
|
347 | 347 | request.POST.get('commit_ids', '').split(','),) |
|
348 | 348 | |
|
349 | 349 | commit_ids = multi_commit_ids or [commit_id] |
|
350 | 350 | comment = None |
|
351 | 351 | for current_id in filter(None, commit_ids): |
|
352 | 352 | c.co = comment = CommentsModel().create( |
|
353 | 353 | text=text, |
|
354 | 354 | repo=c.rhodecode_db_repo.repo_id, |
|
355 | 355 | user=c.rhodecode_user.user_id, |
|
356 | 356 | commit_id=current_id, |
|
357 | 357 | f_path=request.POST.get('f_path'), |
|
358 | 358 | line_no=request.POST.get('line'), |
|
359 | 359 | status_change=(ChangesetStatus.get_status_lbl(status) |
|
360 | 360 | if status else None), |
|
361 | 361 | status_change_type=status, |
|
362 | 362 | comment_type=comment_type, |
|
363 | 363 | resolves_comment_id=resolves_comment_id |
|
364 | 364 | ) |
|
365 | 365 | c.inline_comment = True if comment.line_no else False |
|
366 | 366 | |
|
367 | 367 | # get status if set ! |
|
368 | 368 | if status: |
|
369 | 369 | # if latest status was from pull request and it's closed |
|
370 | 370 | # disallow changing status ! |
|
371 | 371 | # dont_allow_on_closed_pull_request = True ! |
|
372 | 372 | |
|
373 | 373 | try: |
|
374 | 374 | ChangesetStatusModel().set_status( |
|
375 | 375 | c.rhodecode_db_repo.repo_id, |
|
376 | 376 | status, |
|
377 | 377 | c.rhodecode_user.user_id, |
|
378 | 378 | comment, |
|
379 | 379 | revision=current_id, |
|
380 | 380 | dont_allow_on_closed_pull_request=True |
|
381 | 381 | ) |
|
382 | 382 | except StatusChangeOnClosedPullRequestError: |
|
383 | 383 | msg = _('Changing the status of a commit associated with ' |
|
384 | 384 | 'a closed pull request is not allowed') |
|
385 | 385 | log.exception(msg) |
|
386 | 386 | h.flash(msg, category='warning') |
|
387 | 387 | return redirect(h.url( |
|
388 | 388 | 'changeset_home', repo_name=repo_name, |
|
389 | 389 | revision=current_id)) |
|
390 | 390 | |
|
391 | 391 | # finalize, commit and redirect |
|
392 | 392 | Session().commit() |
|
393 | 393 | |
|
394 | 394 | data = { |
|
395 | 395 | 'target_id': h.safeid(h.safe_unicode(request.POST.get('f_path'))), |
|
396 | 396 | } |
|
397 | 397 | if comment: |
|
398 | 398 | data.update(comment.get_dict()) |
|
399 | 399 | data.update({'rendered_text': |
|
400 | 400 | render('changeset/changeset_comment_block.mako')}) |
|
401 | 401 | |
|
402 | 402 | return data |
|
403 | 403 | |
|
404 | 404 | @LoginRequired() |
|
405 | 405 | @NotAnonymous() |
|
406 | 406 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
407 | 407 | 'repository.admin') |
|
408 | 408 | @auth.CSRFRequired() |
|
409 | 409 | def preview_comment(self): |
|
410 | 410 | # Technically a CSRF token is not needed as no state changes with this |
|
411 | 411 | # call. However, as this is a POST is better to have it, so automated |
|
412 | 412 | # tools don't flag it as potential CSRF. |
|
413 | 413 | # Post is required because the payload could be bigger than the maximum |
|
414 | 414 | # allowed by GET. |
|
415 | 415 | if not request.environ.get('HTTP_X_PARTIAL_XHR'): |
|
416 | 416 | raise HTTPBadRequest() |
|
417 | 417 | text = request.POST.get('text') |
|
418 | 418 | renderer = request.POST.get('renderer') or 'rst' |
|
419 | 419 | if text: |
|
420 | 420 | return h.render(text, renderer=renderer, mentions=True) |
|
421 | 421 | return '' |
|
422 | 422 | |
|
423 | 423 | @LoginRequired() |
|
424 | 424 | @NotAnonymous() |
|
425 | 425 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
426 | 426 | 'repository.admin') |
|
427 | 427 | @auth.CSRFRequired() |
|
428 | 428 | @jsonify |
|
429 | 429 | def delete_comment(self, repo_name, comment_id): |
|
430 | 430 | comment = ChangesetComment.get(comment_id) |
|
431 | if not comment: | |
|
432 | log.debug('Comment with id:%s not found, skipping', comment_id) | |
|
433 | # comment already deleted in another call probably | |
|
434 | return True | |
|
435 | ||
|
431 | 436 | owner = (comment.author.user_id == c.rhodecode_user.user_id) |
|
432 | 437 | is_repo_admin = h.HasRepoPermissionAny('repository.admin')(c.repo_name) |
|
433 | 438 | if h.HasPermissionAny('hg.admin')() or is_repo_admin or owner: |
|
434 | 439 | CommentsModel().delete(comment=comment) |
|
435 | 440 | Session().commit() |
|
436 | 441 | return True |
|
437 | 442 | else: |
|
438 | 443 | raise HTTPForbidden() |
|
439 | 444 | |
|
440 | 445 | @LoginRequired() |
|
441 | 446 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
442 | 447 | 'repository.admin') |
|
443 | 448 | @jsonify |
|
444 | 449 | def changeset_info(self, repo_name, revision): |
|
445 | 450 | if request.is_xhr: |
|
446 | 451 | try: |
|
447 | 452 | return c.rhodecode_repo.get_commit(commit_id=revision) |
|
448 | 453 | except CommitDoesNotExistError as e: |
|
449 | 454 | return EmptyCommit(message=str(e)) |
|
450 | 455 | else: |
|
451 | 456 | raise HTTPBadRequest() |
|
452 | 457 | |
|
453 | 458 | @LoginRequired() |
|
454 | 459 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
455 | 460 | 'repository.admin') |
|
456 | 461 | @jsonify |
|
457 | 462 | def changeset_children(self, repo_name, revision): |
|
458 | 463 | if request.is_xhr: |
|
459 | 464 | commit = c.rhodecode_repo.get_commit(commit_id=revision) |
|
460 | 465 | result = {"results": commit.children} |
|
461 | 466 | return result |
|
462 | 467 | else: |
|
463 | 468 | raise HTTPBadRequest() |
|
464 | 469 | |
|
465 | 470 | @LoginRequired() |
|
466 | 471 | @HasRepoPermissionAnyDecorator('repository.read', 'repository.write', |
|
467 | 472 | 'repository.admin') |
|
468 | 473 | @jsonify |
|
469 | 474 | def changeset_parents(self, repo_name, revision): |
|
470 | 475 | if request.is_xhr: |
|
471 | 476 | commit = c.rhodecode_repo.get_commit(commit_id=revision) |
|
472 | 477 | result = {"results": commit.parents} |
|
473 | 478 | return result |
|
474 | 479 | else: |
|
475 | 480 | raise HTTPBadRequest() |
General Comments 0
You need to be logged in to leave comments.
Login now