##// END OF EJS Templates
api: Add merge reference to merge_pull_request api call.
Martin Bornhold -
r1055:298b49a9 default
parent child Browse files
Show More
@@ -1,678 +1,691 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2011-2016 RhodeCode GmbH
3 # Copyright (C) 2011-2016 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21
21
22 import logging
22 import logging
23
23
24 from rhodecode.api import jsonrpc_method, JSONRPCError
24 from rhodecode.api import jsonrpc_method, JSONRPCError
25 from rhodecode.api.utils import (
25 from rhodecode.api.utils import (
26 has_superadmin_permission, Optional, OAttr, get_repo_or_error,
26 has_superadmin_permission, Optional, OAttr, get_repo_or_error,
27 get_pull_request_or_error, get_commit_or_error, get_user_or_error,
27 get_pull_request_or_error, get_commit_or_error, get_user_or_error,
28 has_repo_permissions, resolve_ref_or_error)
28 has_repo_permissions, resolve_ref_or_error)
29 from rhodecode.lib.auth import (HasRepoPermissionAnyApi)
29 from rhodecode.lib.auth import (HasRepoPermissionAnyApi)
30 from rhodecode.lib.base import vcs_operation_context
30 from rhodecode.lib.base import vcs_operation_context
31 from rhodecode.lib.utils2 import str2bool
31 from rhodecode.lib.utils2 import str2bool
32 from rhodecode.model.changeset_status import ChangesetStatusModel
32 from rhodecode.model.changeset_status import ChangesetStatusModel
33 from rhodecode.model.comment import ChangesetCommentsModel
33 from rhodecode.model.comment import ChangesetCommentsModel
34 from rhodecode.model.db import Session, ChangesetStatus
34 from rhodecode.model.db import Session, ChangesetStatus
35 from rhodecode.model.pull_request import PullRequestModel
35 from rhodecode.model.pull_request import PullRequestModel
36 from rhodecode.model.settings import SettingsModel
36 from rhodecode.model.settings import SettingsModel
37
37
38 log = logging.getLogger(__name__)
38 log = logging.getLogger(__name__)
39
39
40
40
41 @jsonrpc_method()
41 @jsonrpc_method()
42 def get_pull_request(request, apiuser, repoid, pullrequestid):
42 def get_pull_request(request, apiuser, repoid, pullrequestid):
43 """
43 """
44 Get a pull request based on the given ID.
44 Get a pull request based on the given ID.
45
45
46 :param apiuser: This is filled automatically from the |authtoken|.
46 :param apiuser: This is filled automatically from the |authtoken|.
47 :type apiuser: AuthUser
47 :type apiuser: AuthUser
48 :param repoid: Repository name or repository ID from where the pull
48 :param repoid: Repository name or repository ID from where the pull
49 request was opened.
49 request was opened.
50 :type repoid: str or int
50 :type repoid: str or int
51 :param pullrequestid: ID of the requested pull request.
51 :param pullrequestid: ID of the requested pull request.
52 :type pullrequestid: int
52 :type pullrequestid: int
53
53
54 Example output:
54 Example output:
55
55
56 .. code-block:: bash
56 .. code-block:: bash
57
57
58 "id": <id_given_in_input>,
58 "id": <id_given_in_input>,
59 "result":
59 "result":
60 {
60 {
61 "pull_request_id": "<pull_request_id>",
61 "pull_request_id": "<pull_request_id>",
62 "url": "<url>",
62 "url": "<url>",
63 "title": "<title>",
63 "title": "<title>",
64 "description": "<description>",
64 "description": "<description>",
65 "status" : "<status>",
65 "status" : "<status>",
66 "created_on": "<date_time_created>",
66 "created_on": "<date_time_created>",
67 "updated_on": "<date_time_updated>",
67 "updated_on": "<date_time_updated>",
68 "commit_ids": [
68 "commit_ids": [
69 ...
69 ...
70 "<commit_id>",
70 "<commit_id>",
71 "<commit_id>",
71 "<commit_id>",
72 ...
72 ...
73 ],
73 ],
74 "review_status": "<review_status>",
74 "review_status": "<review_status>",
75 "mergeable": {
75 "mergeable": {
76 "status": "<bool>",
76 "status": "<bool>",
77 "message": "<message>",
77 "message": "<message>",
78 },
78 },
79 "source": {
79 "source": {
80 "clone_url": "<clone_url>",
80 "clone_url": "<clone_url>",
81 "repository": "<repository_name>",
81 "repository": "<repository_name>",
82 "reference":
82 "reference":
83 {
83 {
84 "name": "<name>",
84 "name": "<name>",
85 "type": "<type>",
85 "type": "<type>",
86 "commit_id": "<commit_id>",
86 "commit_id": "<commit_id>",
87 }
87 }
88 },
88 },
89 "target": {
89 "target": {
90 "clone_url": "<clone_url>",
90 "clone_url": "<clone_url>",
91 "repository": "<repository_name>",
91 "repository": "<repository_name>",
92 "reference":
92 "reference":
93 {
93 {
94 "name": "<name>",
94 "name": "<name>",
95 "type": "<type>",
95 "type": "<type>",
96 "commit_id": "<commit_id>",
96 "commit_id": "<commit_id>",
97 }
97 }
98 },
98 },
99 "merge": {
99 "merge": {
100 "clone_url": "<clone_url>",
100 "clone_url": "<clone_url>",
101 "reference":
101 "reference":
102 {
102 {
103 "name": "<name>",
103 "name": "<name>",
104 "type": "<type>",
104 "type": "<type>",
105 "commit_id": "<commit_id>",
105 "commit_id": "<commit_id>",
106 }
106 }
107 },
107 },
108 "author": <user_obj>,
108 "author": <user_obj>,
109 "reviewers": [
109 "reviewers": [
110 ...
110 ...
111 {
111 {
112 "user": "<user_obj>",
112 "user": "<user_obj>",
113 "review_status": "<review_status>",
113 "review_status": "<review_status>",
114 }
114 }
115 ...
115 ...
116 ]
116 ]
117 },
117 },
118 "error": null
118 "error": null
119 """
119 """
120 get_repo_or_error(repoid)
120 get_repo_or_error(repoid)
121 pull_request = get_pull_request_or_error(pullrequestid)
121 pull_request = get_pull_request_or_error(pullrequestid)
122 if not PullRequestModel().check_user_read(
122 if not PullRequestModel().check_user_read(
123 pull_request, apiuser, api=True):
123 pull_request, apiuser, api=True):
124 raise JSONRPCError('repository `%s` does not exist' % (repoid,))
124 raise JSONRPCError('repository `%s` does not exist' % (repoid,))
125 data = pull_request.get_api_data()
125 data = pull_request.get_api_data()
126 return data
126 return data
127
127
128
128
129 @jsonrpc_method()
129 @jsonrpc_method()
130 def get_pull_requests(request, apiuser, repoid, status=Optional('new')):
130 def get_pull_requests(request, apiuser, repoid, status=Optional('new')):
131 """
131 """
132 Get all pull requests from the repository specified in `repoid`.
132 Get all pull requests from the repository specified in `repoid`.
133
133
134 :param apiuser: This is filled automatically from the |authtoken|.
134 :param apiuser: This is filled automatically from the |authtoken|.
135 :type apiuser: AuthUser
135 :type apiuser: AuthUser
136 :param repoid: Repository name or repository ID.
136 :param repoid: Repository name or repository ID.
137 :type repoid: str or int
137 :type repoid: str or int
138 :param status: Only return pull requests with the specified status.
138 :param status: Only return pull requests with the specified status.
139 Valid options are.
139 Valid options are.
140 * ``new`` (default)
140 * ``new`` (default)
141 * ``open``
141 * ``open``
142 * ``closed``
142 * ``closed``
143 :type status: str
143 :type status: str
144
144
145 Example output:
145 Example output:
146
146
147 .. code-block:: bash
147 .. code-block:: bash
148
148
149 "id": <id_given_in_input>,
149 "id": <id_given_in_input>,
150 "result":
150 "result":
151 [
151 [
152 ...
152 ...
153 {
153 {
154 "pull_request_id": "<pull_request_id>",
154 "pull_request_id": "<pull_request_id>",
155 "url": "<url>",
155 "url": "<url>",
156 "title" : "<title>",
156 "title" : "<title>",
157 "description": "<description>",
157 "description": "<description>",
158 "status": "<status>",
158 "status": "<status>",
159 "created_on": "<date_time_created>",
159 "created_on": "<date_time_created>",
160 "updated_on": "<date_time_updated>",
160 "updated_on": "<date_time_updated>",
161 "commit_ids": [
161 "commit_ids": [
162 ...
162 ...
163 "<commit_id>",
163 "<commit_id>",
164 "<commit_id>",
164 "<commit_id>",
165 ...
165 ...
166 ],
166 ],
167 "review_status": "<review_status>",
167 "review_status": "<review_status>",
168 "mergeable": {
168 "mergeable": {
169 "status": "<bool>",
169 "status": "<bool>",
170 "message: "<message>",
170 "message: "<message>",
171 },
171 },
172 "source": {
172 "source": {
173 "clone_url": "<clone_url>",
173 "clone_url": "<clone_url>",
174 "reference":
174 "reference":
175 {
175 {
176 "name": "<name>",
176 "name": "<name>",
177 "type": "<type>",
177 "type": "<type>",
178 "commit_id": "<commit_id>",
178 "commit_id": "<commit_id>",
179 }
179 }
180 },
180 },
181 "target": {
181 "target": {
182 "clone_url": "<clone_url>",
182 "clone_url": "<clone_url>",
183 "reference":
183 "reference":
184 {
184 {
185 "name": "<name>",
185 "name": "<name>",
186 "type": "<type>",
186 "type": "<type>",
187 "commit_id": "<commit_id>",
187 "commit_id": "<commit_id>",
188 }
188 }
189 },
189 },
190 "merge": {
190 "merge": {
191 "clone_url": "<clone_url>",
191 "clone_url": "<clone_url>",
192 "reference":
192 "reference":
193 {
193 {
194 "name": "<name>",
194 "name": "<name>",
195 "type": "<type>",
195 "type": "<type>",
196 "commit_id": "<commit_id>",
196 "commit_id": "<commit_id>",
197 }
197 }
198 },
198 },
199 "author": <user_obj>,
199 "author": <user_obj>,
200 "reviewers": [
200 "reviewers": [
201 ...
201 ...
202 {
202 {
203 "user": "<user_obj>",
203 "user": "<user_obj>",
204 "review_status": "<review_status>",
204 "review_status": "<review_status>",
205 }
205 }
206 ...
206 ...
207 ]
207 ]
208 }
208 }
209 ...
209 ...
210 ],
210 ],
211 "error": null
211 "error": null
212
212
213 """
213 """
214 repo = get_repo_or_error(repoid)
214 repo = get_repo_or_error(repoid)
215 if not has_superadmin_permission(apiuser):
215 if not has_superadmin_permission(apiuser):
216 _perms = (
216 _perms = (
217 'repository.admin', 'repository.write', 'repository.read',)
217 'repository.admin', 'repository.write', 'repository.read',)
218 has_repo_permissions(apiuser, repoid, repo, _perms)
218 has_repo_permissions(apiuser, repoid, repo, _perms)
219
219
220 status = Optional.extract(status)
220 status = Optional.extract(status)
221 pull_requests = PullRequestModel().get_all(repo, statuses=[status])
221 pull_requests = PullRequestModel().get_all(repo, statuses=[status])
222 data = [pr.get_api_data() for pr in pull_requests]
222 data = [pr.get_api_data() for pr in pull_requests]
223 return data
223 return data
224
224
225
225
226 @jsonrpc_method()
226 @jsonrpc_method()
227 def merge_pull_request(request, apiuser, repoid, pullrequestid,
227 def merge_pull_request(request, apiuser, repoid, pullrequestid,
228 userid=Optional(OAttr('apiuser'))):
228 userid=Optional(OAttr('apiuser'))):
229 """
229 """
230 Merge the pull request specified by `pullrequestid` into its target
230 Merge the pull request specified by `pullrequestid` into its target
231 repository.
231 repository.
232
232
233 :param apiuser: This is filled automatically from the |authtoken|.
233 :param apiuser: This is filled automatically from the |authtoken|.
234 :type apiuser: AuthUser
234 :type apiuser: AuthUser
235 :param repoid: The Repository name or repository ID of the
235 :param repoid: The Repository name or repository ID of the
236 target repository to which the |pr| is to be merged.
236 target repository to which the |pr| is to be merged.
237 :type repoid: str or int
237 :type repoid: str or int
238 :param pullrequestid: ID of the pull request which shall be merged.
238 :param pullrequestid: ID of the pull request which shall be merged.
239 :type pullrequestid: int
239 :type pullrequestid: int
240 :param userid: Merge the pull request as this user.
240 :param userid: Merge the pull request as this user.
241 :type userid: Optional(str or int)
241 :type userid: Optional(str or int)
242
242
243 Example output:
243 Example output:
244
244
245 .. code-block:: bash
245 .. code-block:: bash
246
246
247 "id": <id_given_in_input>,
247 "id": <id_given_in_input>,
248 "result":
248 "result":
249 {
249 {
250 "executed": "<bool>",
250 "executed": "<bool>",
251 "failure_reason": "<int>",
251 "failure_reason": "<int>",
252 "merge_commit_id": "<merge_commit_id>",
252 "merge_commit_id": "<merge_commit_id>",
253 "possible": "<bool>"
253 "possible": "<bool>",
254 "merge_ref": {
255 "commit_id": "<commit_id>",
256 "type": "<type>",
257 "name": "<name>"
258 }
254 },
259 },
255 "error": null
260 "error": null
256
261
257 """
262 """
258 repo = get_repo_or_error(repoid)
263 repo = get_repo_or_error(repoid)
259 if not isinstance(userid, Optional):
264 if not isinstance(userid, Optional):
260 if (has_superadmin_permission(apiuser) or
265 if (has_superadmin_permission(apiuser) or
261 HasRepoPermissionAnyApi('repository.admin')(
266 HasRepoPermissionAnyApi('repository.admin')(
262 user=apiuser, repo_name=repo.repo_name)):
267 user=apiuser, repo_name=repo.repo_name)):
263 apiuser = get_user_or_error(userid)
268 apiuser = get_user_or_error(userid)
264 else:
269 else:
265 raise JSONRPCError('userid is not the same as your user')
270 raise JSONRPCError('userid is not the same as your user')
266
271
267 pull_request = get_pull_request_or_error(pullrequestid)
272 pull_request = get_pull_request_or_error(pullrequestid)
268 if not PullRequestModel().check_user_merge(
273 if not PullRequestModel().check_user_merge(
269 pull_request, apiuser, api=True):
274 pull_request, apiuser, api=True):
270 raise JSONRPCError('repository `%s` does not exist' % (repoid,))
275 raise JSONRPCError('repository `%s` does not exist' % (repoid,))
271 if pull_request.is_closed():
276 if pull_request.is_closed():
272 raise JSONRPCError(
277 raise JSONRPCError(
273 'pull request `%s` merge failed, pull request is closed' % (
278 'pull request `%s` merge failed, pull request is closed' % (
274 pullrequestid,))
279 pullrequestid,))
275
280
276 target_repo = pull_request.target_repo
281 target_repo = pull_request.target_repo
277 extras = vcs_operation_context(
282 extras = vcs_operation_context(
278 request.environ, repo_name=target_repo.repo_name,
283 request.environ, repo_name=target_repo.repo_name,
279 username=apiuser.username, action='push',
284 username=apiuser.username, action='push',
280 scm=target_repo.repo_type)
285 scm=target_repo.repo_type)
281 data = PullRequestModel().merge(pull_request, apiuser, extras=extras)
286 merge_response = PullRequestModel().merge(
282 if data.executed:
287 pull_request, apiuser, extras=extras)
288 if merge_response.executed:
283 PullRequestModel().close_pull_request(
289 PullRequestModel().close_pull_request(
284 pull_request.pull_request_id, apiuser)
290 pull_request.pull_request_id, apiuser)
285
291
286 Session().commit()
292 Session().commit()
287 return data
293
294 # In previous versions the merge response directly contained the merge
295 # commit id. It is now contained in the merge reference object. To be
296 # backwards compatible we have to extract it again.
297 merge_response = merge_response._asdict()
298 merge_response['merge_commit_id'] = merge_response['merge_ref'].commit_id
299
300 return merge_response
288
301
289
302
290 @jsonrpc_method()
303 @jsonrpc_method()
291 def close_pull_request(request, apiuser, repoid, pullrequestid,
304 def close_pull_request(request, apiuser, repoid, pullrequestid,
292 userid=Optional(OAttr('apiuser'))):
305 userid=Optional(OAttr('apiuser'))):
293 """
306 """
294 Close the pull request specified by `pullrequestid`.
307 Close the pull request specified by `pullrequestid`.
295
308
296 :param apiuser: This is filled automatically from the |authtoken|.
309 :param apiuser: This is filled automatically from the |authtoken|.
297 :type apiuser: AuthUser
310 :type apiuser: AuthUser
298 :param repoid: Repository name or repository ID to which the pull
311 :param repoid: Repository name or repository ID to which the pull
299 request belongs.
312 request belongs.
300 :type repoid: str or int
313 :type repoid: str or int
301 :param pullrequestid: ID of the pull request to be closed.
314 :param pullrequestid: ID of the pull request to be closed.
302 :type pullrequestid: int
315 :type pullrequestid: int
303 :param userid: Close the pull request as this user.
316 :param userid: Close the pull request as this user.
304 :type userid: Optional(str or int)
317 :type userid: Optional(str or int)
305
318
306 Example output:
319 Example output:
307
320
308 .. code-block:: bash
321 .. code-block:: bash
309
322
310 "id": <id_given_in_input>,
323 "id": <id_given_in_input>,
311 "result":
324 "result":
312 {
325 {
313 "pull_request_id": "<int>",
326 "pull_request_id": "<int>",
314 "closed": "<bool>"
327 "closed": "<bool>"
315 },
328 },
316 "error": null
329 "error": null
317
330
318 """
331 """
319 repo = get_repo_or_error(repoid)
332 repo = get_repo_or_error(repoid)
320 if not isinstance(userid, Optional):
333 if not isinstance(userid, Optional):
321 if (has_superadmin_permission(apiuser) or
334 if (has_superadmin_permission(apiuser) or
322 HasRepoPermissionAnyApi('repository.admin')(
335 HasRepoPermissionAnyApi('repository.admin')(
323 user=apiuser, repo_name=repo.repo_name)):
336 user=apiuser, repo_name=repo.repo_name)):
324 apiuser = get_user_or_error(userid)
337 apiuser = get_user_or_error(userid)
325 else:
338 else:
326 raise JSONRPCError('userid is not the same as your user')
339 raise JSONRPCError('userid is not the same as your user')
327
340
328 pull_request = get_pull_request_or_error(pullrequestid)
341 pull_request = get_pull_request_or_error(pullrequestid)
329 if not PullRequestModel().check_user_update(
342 if not PullRequestModel().check_user_update(
330 pull_request, apiuser, api=True):
343 pull_request, apiuser, api=True):
331 raise JSONRPCError(
344 raise JSONRPCError(
332 'pull request `%s` close failed, no permission to close.' % (
345 'pull request `%s` close failed, no permission to close.' % (
333 pullrequestid,))
346 pullrequestid,))
334 if pull_request.is_closed():
347 if pull_request.is_closed():
335 raise JSONRPCError(
348 raise JSONRPCError(
336 'pull request `%s` is already closed' % (pullrequestid,))
349 'pull request `%s` is already closed' % (pullrequestid,))
337
350
338 PullRequestModel().close_pull_request(
351 PullRequestModel().close_pull_request(
339 pull_request.pull_request_id, apiuser)
352 pull_request.pull_request_id, apiuser)
340 Session().commit()
353 Session().commit()
341 data = {
354 data = {
342 'pull_request_id': pull_request.pull_request_id,
355 'pull_request_id': pull_request.pull_request_id,
343 'closed': True,
356 'closed': True,
344 }
357 }
345 return data
358 return data
346
359
347
360
348 @jsonrpc_method()
361 @jsonrpc_method()
349 def comment_pull_request(request, apiuser, repoid, pullrequestid,
362 def comment_pull_request(request, apiuser, repoid, pullrequestid,
350 message=Optional(None), status=Optional(None),
363 message=Optional(None), status=Optional(None),
351 userid=Optional(OAttr('apiuser'))):
364 userid=Optional(OAttr('apiuser'))):
352 """
365 """
353 Comment on the pull request specified with the `pullrequestid`,
366 Comment on the pull request specified with the `pullrequestid`,
354 in the |repo| specified by the `repoid`, and optionally change the
367 in the |repo| specified by the `repoid`, and optionally change the
355 review status.
368 review status.
356
369
357 :param apiuser: This is filled automatically from the |authtoken|.
370 :param apiuser: This is filled automatically from the |authtoken|.
358 :type apiuser: AuthUser
371 :type apiuser: AuthUser
359 :param repoid: The repository name or repository ID.
372 :param repoid: The repository name or repository ID.
360 :type repoid: str or int
373 :type repoid: str or int
361 :param pullrequestid: The pull request ID.
374 :param pullrequestid: The pull request ID.
362 :type pullrequestid: int
375 :type pullrequestid: int
363 :param message: The text content of the comment.
376 :param message: The text content of the comment.
364 :type message: str
377 :type message: str
365 :param status: (**Optional**) Set the approval status of the pull
378 :param status: (**Optional**) Set the approval status of the pull
366 request. Valid options are:
379 request. Valid options are:
367 * not_reviewed
380 * not_reviewed
368 * approved
381 * approved
369 * rejected
382 * rejected
370 * under_review
383 * under_review
371 :type status: str
384 :type status: str
372 :param userid: Comment on the pull request as this user
385 :param userid: Comment on the pull request as this user
373 :type userid: Optional(str or int)
386 :type userid: Optional(str or int)
374
387
375 Example output:
388 Example output:
376
389
377 .. code-block:: bash
390 .. code-block:: bash
378
391
379 id : <id_given_in_input>
392 id : <id_given_in_input>
380 result :
393 result :
381 {
394 {
382 "pull_request_id": "<Integer>",
395 "pull_request_id": "<Integer>",
383 "comment_id": "<Integer>"
396 "comment_id": "<Integer>"
384 }
397 }
385 error : null
398 error : null
386 """
399 """
387 repo = get_repo_or_error(repoid)
400 repo = get_repo_or_error(repoid)
388 if not isinstance(userid, Optional):
401 if not isinstance(userid, Optional):
389 if (has_superadmin_permission(apiuser) or
402 if (has_superadmin_permission(apiuser) or
390 HasRepoPermissionAnyApi('repository.admin')(
403 HasRepoPermissionAnyApi('repository.admin')(
391 user=apiuser, repo_name=repo.repo_name)):
404 user=apiuser, repo_name=repo.repo_name)):
392 apiuser = get_user_or_error(userid)
405 apiuser = get_user_or_error(userid)
393 else:
406 else:
394 raise JSONRPCError('userid is not the same as your user')
407 raise JSONRPCError('userid is not the same as your user')
395
408
396 pull_request = get_pull_request_or_error(pullrequestid)
409 pull_request = get_pull_request_or_error(pullrequestid)
397 if not PullRequestModel().check_user_read(
410 if not PullRequestModel().check_user_read(
398 pull_request, apiuser, api=True):
411 pull_request, apiuser, api=True):
399 raise JSONRPCError('repository `%s` does not exist' % (repoid,))
412 raise JSONRPCError('repository `%s` does not exist' % (repoid,))
400 message = Optional.extract(message)
413 message = Optional.extract(message)
401 status = Optional.extract(status)
414 status = Optional.extract(status)
402 if not message and not status:
415 if not message and not status:
403 raise JSONRPCError('message and status parameter missing')
416 raise JSONRPCError('message and status parameter missing')
404
417
405 if (status not in (st[0] for st in ChangesetStatus.STATUSES) and
418 if (status not in (st[0] for st in ChangesetStatus.STATUSES) and
406 status is not None):
419 status is not None):
407 raise JSONRPCError('unknown comment status`%s`' % status)
420 raise JSONRPCError('unknown comment status`%s`' % status)
408
421
409 allowed_to_change_status = PullRequestModel().check_user_change_status(
422 allowed_to_change_status = PullRequestModel().check_user_change_status(
410 pull_request, apiuser)
423 pull_request, apiuser)
411 text = message
424 text = message
412 if status and allowed_to_change_status:
425 if status and allowed_to_change_status:
413 st_message = (('Status change %(transition_icon)s %(status)s')
426 st_message = (('Status change %(transition_icon)s %(status)s')
414 % {'transition_icon': '>',
427 % {'transition_icon': '>',
415 'status': ChangesetStatus.get_status_lbl(status)})
428 'status': ChangesetStatus.get_status_lbl(status)})
416 text = message or st_message
429 text = message or st_message
417
430
418 rc_config = SettingsModel().get_all_settings()
431 rc_config = SettingsModel().get_all_settings()
419 renderer = rc_config.get('rhodecode_markup_renderer', 'rst')
432 renderer = rc_config.get('rhodecode_markup_renderer', 'rst')
420 comment = ChangesetCommentsModel().create(
433 comment = ChangesetCommentsModel().create(
421 text=text,
434 text=text,
422 repo=pull_request.target_repo.repo_id,
435 repo=pull_request.target_repo.repo_id,
423 user=apiuser.user_id,
436 user=apiuser.user_id,
424 pull_request=pull_request.pull_request_id,
437 pull_request=pull_request.pull_request_id,
425 f_path=None,
438 f_path=None,
426 line_no=None,
439 line_no=None,
427 status_change=(ChangesetStatus.get_status_lbl(status)
440 status_change=(ChangesetStatus.get_status_lbl(status)
428 if status and allowed_to_change_status else None),
441 if status and allowed_to_change_status else None),
429 status_change_type=(status
442 status_change_type=(status
430 if status and allowed_to_change_status else None),
443 if status and allowed_to_change_status else None),
431 closing_pr=False,
444 closing_pr=False,
432 renderer=renderer
445 renderer=renderer
433 )
446 )
434
447
435 if allowed_to_change_status and status:
448 if allowed_to_change_status and status:
436 ChangesetStatusModel().set_status(
449 ChangesetStatusModel().set_status(
437 pull_request.target_repo.repo_id,
450 pull_request.target_repo.repo_id,
438 status,
451 status,
439 apiuser.user_id,
452 apiuser.user_id,
440 comment,
453 comment,
441 pull_request=pull_request.pull_request_id
454 pull_request=pull_request.pull_request_id
442 )
455 )
443 Session().flush()
456 Session().flush()
444
457
445 Session().commit()
458 Session().commit()
446 data = {
459 data = {
447 'pull_request_id': pull_request.pull_request_id,
460 'pull_request_id': pull_request.pull_request_id,
448 'comment_id': comment.comment_id,
461 'comment_id': comment.comment_id,
449 'status': status
462 'status': status
450 }
463 }
451 return data
464 return data
452
465
453
466
454 @jsonrpc_method()
467 @jsonrpc_method()
455 def create_pull_request(
468 def create_pull_request(
456 request, apiuser, source_repo, target_repo, source_ref, target_ref,
469 request, apiuser, source_repo, target_repo, source_ref, target_ref,
457 title, description=Optional(''), reviewers=Optional(None)):
470 title, description=Optional(''), reviewers=Optional(None)):
458 """
471 """
459 Creates a new pull request.
472 Creates a new pull request.
460
473
461 Accepts refs in the following formats:
474 Accepts refs in the following formats:
462
475
463 * branch:<branch_name>:<sha>
476 * branch:<branch_name>:<sha>
464 * branch:<branch_name>
477 * branch:<branch_name>
465 * bookmark:<bookmark_name>:<sha> (Mercurial only)
478 * bookmark:<bookmark_name>:<sha> (Mercurial only)
466 * bookmark:<bookmark_name> (Mercurial only)
479 * bookmark:<bookmark_name> (Mercurial only)
467
480
468 :param apiuser: This is filled automatically from the |authtoken|.
481 :param apiuser: This is filled automatically from the |authtoken|.
469 :type apiuser: AuthUser
482 :type apiuser: AuthUser
470 :param source_repo: Set the source repository name.
483 :param source_repo: Set the source repository name.
471 :type source_repo: str
484 :type source_repo: str
472 :param target_repo: Set the target repository name.
485 :param target_repo: Set the target repository name.
473 :type target_repo: str
486 :type target_repo: str
474 :param source_ref: Set the source ref name.
487 :param source_ref: Set the source ref name.
475 :type source_ref: str
488 :type source_ref: str
476 :param target_ref: Set the target ref name.
489 :param target_ref: Set the target ref name.
477 :type target_ref: str
490 :type target_ref: str
478 :param title: Set the pull request title.
491 :param title: Set the pull request title.
479 :type title: str
492 :type title: str
480 :param description: Set the pull request description.
493 :param description: Set the pull request description.
481 :type description: Optional(str)
494 :type description: Optional(str)
482 :param reviewers: Set the new pull request reviewers list.
495 :param reviewers: Set the new pull request reviewers list.
483 :type reviewers: Optional(list)
496 :type reviewers: Optional(list)
484 Accepts username strings or objects of the format:
497 Accepts username strings or objects of the format:
485 {
498 {
486 'username': 'nick', 'reasons': ['original author']
499 'username': 'nick', 'reasons': ['original author']
487 }
500 }
488 """
501 """
489
502
490 source = get_repo_or_error(source_repo)
503 source = get_repo_or_error(source_repo)
491 target = get_repo_or_error(target_repo)
504 target = get_repo_or_error(target_repo)
492 if not has_superadmin_permission(apiuser):
505 if not has_superadmin_permission(apiuser):
493 _perms = ('repository.admin', 'repository.write', 'repository.read',)
506 _perms = ('repository.admin', 'repository.write', 'repository.read',)
494 has_repo_permissions(apiuser, source_repo, source, _perms)
507 has_repo_permissions(apiuser, source_repo, source, _perms)
495
508
496 full_source_ref = resolve_ref_or_error(source_ref, source)
509 full_source_ref = resolve_ref_or_error(source_ref, source)
497 full_target_ref = resolve_ref_or_error(target_ref, target)
510 full_target_ref = resolve_ref_or_error(target_ref, target)
498 source_commit = get_commit_or_error(full_source_ref, source)
511 source_commit = get_commit_or_error(full_source_ref, source)
499 target_commit = get_commit_or_error(full_target_ref, target)
512 target_commit = get_commit_or_error(full_target_ref, target)
500 source_scm = source.scm_instance()
513 source_scm = source.scm_instance()
501 target_scm = target.scm_instance()
514 target_scm = target.scm_instance()
502
515
503 commit_ranges = target_scm.compare(
516 commit_ranges = target_scm.compare(
504 target_commit.raw_id, source_commit.raw_id, source_scm,
517 target_commit.raw_id, source_commit.raw_id, source_scm,
505 merge=True, pre_load=[])
518 merge=True, pre_load=[])
506
519
507 ancestor = target_scm.get_common_ancestor(
520 ancestor = target_scm.get_common_ancestor(
508 target_commit.raw_id, source_commit.raw_id, source_scm)
521 target_commit.raw_id, source_commit.raw_id, source_scm)
509
522
510 if not commit_ranges:
523 if not commit_ranges:
511 raise JSONRPCError('no commits found')
524 raise JSONRPCError('no commits found')
512
525
513 if not ancestor:
526 if not ancestor:
514 raise JSONRPCError('no common ancestor found')
527 raise JSONRPCError('no common ancestor found')
515
528
516 reviewer_objects = Optional.extract(reviewers) or []
529 reviewer_objects = Optional.extract(reviewers) or []
517 if not isinstance(reviewer_objects, list):
530 if not isinstance(reviewer_objects, list):
518 raise JSONRPCError('reviewers should be specified as a list')
531 raise JSONRPCError('reviewers should be specified as a list')
519
532
520 reviewers_reasons = []
533 reviewers_reasons = []
521 for reviewer_object in reviewer_objects:
534 for reviewer_object in reviewer_objects:
522 reviewer_reasons = []
535 reviewer_reasons = []
523 if isinstance(reviewer_object, (basestring, int)):
536 if isinstance(reviewer_object, (basestring, int)):
524 reviewer_username = reviewer_object
537 reviewer_username = reviewer_object
525 else:
538 else:
526 reviewer_username = reviewer_object['username']
539 reviewer_username = reviewer_object['username']
527 reviewer_reasons = reviewer_object.get('reasons', [])
540 reviewer_reasons = reviewer_object.get('reasons', [])
528
541
529 user = get_user_or_error(reviewer_username)
542 user = get_user_or_error(reviewer_username)
530 reviewers_reasons.append((user.user_id, reviewer_reasons))
543 reviewers_reasons.append((user.user_id, reviewer_reasons))
531
544
532 pull_request_model = PullRequestModel()
545 pull_request_model = PullRequestModel()
533 pull_request = pull_request_model.create(
546 pull_request = pull_request_model.create(
534 created_by=apiuser.user_id,
547 created_by=apiuser.user_id,
535 source_repo=source_repo,
548 source_repo=source_repo,
536 source_ref=full_source_ref,
549 source_ref=full_source_ref,
537 target_repo=target_repo,
550 target_repo=target_repo,
538 target_ref=full_target_ref,
551 target_ref=full_target_ref,
539 revisions=reversed(
552 revisions=reversed(
540 [commit.raw_id for commit in reversed(commit_ranges)]),
553 [commit.raw_id for commit in reversed(commit_ranges)]),
541 reviewers=reviewers_reasons,
554 reviewers=reviewers_reasons,
542 title=title,
555 title=title,
543 description=Optional.extract(description)
556 description=Optional.extract(description)
544 )
557 )
545
558
546 Session().commit()
559 Session().commit()
547 data = {
560 data = {
548 'msg': 'Created new pull request `{}`'.format(title),
561 'msg': 'Created new pull request `{}`'.format(title),
549 'pull_request_id': pull_request.pull_request_id,
562 'pull_request_id': pull_request.pull_request_id,
550 }
563 }
551 return data
564 return data
552
565
553
566
554 @jsonrpc_method()
567 @jsonrpc_method()
555 def update_pull_request(
568 def update_pull_request(
556 request, apiuser, repoid, pullrequestid, title=Optional(''),
569 request, apiuser, repoid, pullrequestid, title=Optional(''),
557 description=Optional(''), reviewers=Optional(None),
570 description=Optional(''), reviewers=Optional(None),
558 update_commits=Optional(None), close_pull_request=Optional(None)):
571 update_commits=Optional(None), close_pull_request=Optional(None)):
559 """
572 """
560 Updates a pull request.
573 Updates a pull request.
561
574
562 :param apiuser: This is filled automatically from the |authtoken|.
575 :param apiuser: This is filled automatically from the |authtoken|.
563 :type apiuser: AuthUser
576 :type apiuser: AuthUser
564 :param repoid: The repository name or repository ID.
577 :param repoid: The repository name or repository ID.
565 :type repoid: str or int
578 :type repoid: str or int
566 :param pullrequestid: The pull request ID.
579 :param pullrequestid: The pull request ID.
567 :type pullrequestid: int
580 :type pullrequestid: int
568 :param title: Set the pull request title.
581 :param title: Set the pull request title.
569 :type title: str
582 :type title: str
570 :param description: Update pull request description.
583 :param description: Update pull request description.
571 :type description: Optional(str)
584 :type description: Optional(str)
572 :param reviewers: Update pull request reviewers list with new value.
585 :param reviewers: Update pull request reviewers list with new value.
573 :type reviewers: Optional(list)
586 :type reviewers: Optional(list)
574 :param update_commits: Trigger update of commits for this pull request
587 :param update_commits: Trigger update of commits for this pull request
575 :type: update_commits: Optional(bool)
588 :type: update_commits: Optional(bool)
576 :param close_pull_request: Close this pull request with rejected state
589 :param close_pull_request: Close this pull request with rejected state
577 :type: close_pull_request: Optional(bool)
590 :type: close_pull_request: Optional(bool)
578
591
579 Example output:
592 Example output:
580
593
581 .. code-block:: bash
594 .. code-block:: bash
582
595
583 id : <id_given_in_input>
596 id : <id_given_in_input>
584 result :
597 result :
585 {
598 {
586 "msg": "Updated pull request `63`",
599 "msg": "Updated pull request `63`",
587 "pull_request": <pull_request_object>,
600 "pull_request": <pull_request_object>,
588 "updated_reviewers": {
601 "updated_reviewers": {
589 "added": [
602 "added": [
590 "username"
603 "username"
591 ],
604 ],
592 "removed": []
605 "removed": []
593 },
606 },
594 "updated_commits": {
607 "updated_commits": {
595 "added": [
608 "added": [
596 "<sha1_hash>"
609 "<sha1_hash>"
597 ],
610 ],
598 "common": [
611 "common": [
599 "<sha1_hash>",
612 "<sha1_hash>",
600 "<sha1_hash>",
613 "<sha1_hash>",
601 ],
614 ],
602 "removed": []
615 "removed": []
603 }
616 }
604 }
617 }
605 error : null
618 error : null
606 """
619 """
607
620
608 repo = get_repo_or_error(repoid)
621 repo = get_repo_or_error(repoid)
609 pull_request = get_pull_request_or_error(pullrequestid)
622 pull_request = get_pull_request_or_error(pullrequestid)
610 if not PullRequestModel().check_user_update(
623 if not PullRequestModel().check_user_update(
611 pull_request, apiuser, api=True):
624 pull_request, apiuser, api=True):
612 raise JSONRPCError(
625 raise JSONRPCError(
613 'pull request `%s` update failed, no permission to update.' % (
626 'pull request `%s` update failed, no permission to update.' % (
614 pullrequestid,))
627 pullrequestid,))
615 if pull_request.is_closed():
628 if pull_request.is_closed():
616 raise JSONRPCError(
629 raise JSONRPCError(
617 'pull request `%s` update failed, pull request is closed' % (
630 'pull request `%s` update failed, pull request is closed' % (
618 pullrequestid,))
631 pullrequestid,))
619
632
620 reviewer_objects = Optional.extract(reviewers) or []
633 reviewer_objects = Optional.extract(reviewers) or []
621 if not isinstance(reviewer_objects, list):
634 if not isinstance(reviewer_objects, list):
622 raise JSONRPCError('reviewers should be specified as a list')
635 raise JSONRPCError('reviewers should be specified as a list')
623
636
624 reviewers_reasons = []
637 reviewers_reasons = []
625 reviewer_ids = set()
638 reviewer_ids = set()
626 for reviewer_object in reviewer_objects:
639 for reviewer_object in reviewer_objects:
627 reviewer_reasons = []
640 reviewer_reasons = []
628 if isinstance(reviewer_object, (int, basestring)):
641 if isinstance(reviewer_object, (int, basestring)):
629 reviewer_username = reviewer_object
642 reviewer_username = reviewer_object
630 else:
643 else:
631 reviewer_username = reviewer_object['username']
644 reviewer_username = reviewer_object['username']
632 reviewer_reasons = reviewer_object.get('reasons', [])
645 reviewer_reasons = reviewer_object.get('reasons', [])
633
646
634 user = get_user_or_error(reviewer_username)
647 user = get_user_or_error(reviewer_username)
635 reviewer_ids.add(user.user_id)
648 reviewer_ids.add(user.user_id)
636 reviewers_reasons.append((user.user_id, reviewer_reasons))
649 reviewers_reasons.append((user.user_id, reviewer_reasons))
637
650
638 title = Optional.extract(title)
651 title = Optional.extract(title)
639 description = Optional.extract(description)
652 description = Optional.extract(description)
640 if title or description:
653 if title or description:
641 PullRequestModel().edit(
654 PullRequestModel().edit(
642 pull_request, title or pull_request.title,
655 pull_request, title or pull_request.title,
643 description or pull_request.description)
656 description or pull_request.description)
644 Session().commit()
657 Session().commit()
645
658
646 commit_changes = {"added": [], "common": [], "removed": []}
659 commit_changes = {"added": [], "common": [], "removed": []}
647 if str2bool(Optional.extract(update_commits)):
660 if str2bool(Optional.extract(update_commits)):
648 if PullRequestModel().has_valid_update_type(pull_request):
661 if PullRequestModel().has_valid_update_type(pull_request):
649 _version, _commit_changes = PullRequestModel().update_commits(
662 _version, _commit_changes = PullRequestModel().update_commits(
650 pull_request)
663 pull_request)
651 commit_changes = _commit_changes or commit_changes
664 commit_changes = _commit_changes or commit_changes
652 Session().commit()
665 Session().commit()
653
666
654 reviewers_changes = {"added": [], "removed": []}
667 reviewers_changes = {"added": [], "removed": []}
655 if reviewer_ids:
668 if reviewer_ids:
656 added_reviewers, removed_reviewers = \
669 added_reviewers, removed_reviewers = \
657 PullRequestModel().update_reviewers(pull_request, reviewers_reasons)
670 PullRequestModel().update_reviewers(pull_request, reviewers_reasons)
658
671
659 reviewers_changes['added'] = sorted(
672 reviewers_changes['added'] = sorted(
660 [get_user_or_error(n).username for n in added_reviewers])
673 [get_user_or_error(n).username for n in added_reviewers])
661 reviewers_changes['removed'] = sorted(
674 reviewers_changes['removed'] = sorted(
662 [get_user_or_error(n).username for n in removed_reviewers])
675 [get_user_or_error(n).username for n in removed_reviewers])
663 Session().commit()
676 Session().commit()
664
677
665 if str2bool(Optional.extract(close_pull_request)):
678 if str2bool(Optional.extract(close_pull_request)):
666 PullRequestModel().close_pull_request_with_comment(
679 PullRequestModel().close_pull_request_with_comment(
667 pull_request, apiuser, repo)
680 pull_request, apiuser, repo)
668 Session().commit()
681 Session().commit()
669
682
670 data = {
683 data = {
671 'msg': 'Updated pull request `{}`'.format(
684 'msg': 'Updated pull request `{}`'.format(
672 pull_request.pull_request_id),
685 pull_request.pull_request_id),
673 'pull_request': pull_request.get_api_data(),
686 'pull_request': pull_request.get_api_data(),
674 'updated_commits': commit_changes,
687 'updated_commits': commit_changes,
675 'updated_reviewers': reviewers_changes
688 'updated_reviewers': reviewers_changes
676 }
689 }
677 return data
690 return data
678
691
General Comments 0
You need to be logged in to leave comments. Login now