Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Side by Side Diff: gerrit_util.py

Issue 50283002: my_activity: Port gerrit to the new gerrit_util API. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | my_activity.py » ('j') | my_activity.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """ 5 """
6 Utilities for requesting information for a gerrit server via https. 6 Utilities for requesting information for a gerrit server via https.
7 7
8 https://gerrit-review.googlesource.com/Documentation/rest-api.html 8 https://gerrit-review.googlesource.com/Documentation/rest-api.html
9 """ 9 """
10 10
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 LOGGER.debug('%s %s://%s/a/%s' % (reqtype, GERRIT_PROTOCOL, host, path)) 77 LOGGER.debug('%s %s://%s/a/%s' % (reqtype, GERRIT_PROTOCOL, host, path))
78 for key, val in headers.iteritems(): 78 for key, val in headers.iteritems():
79 if key == 'Authorization': 79 if key == 'Authorization':
80 val = 'HIDDEN' 80 val = 'HIDDEN'
81 LOGGER.debug('%s: %s' % (key, val)) 81 LOGGER.debug('%s: %s' % (key, val))
82 if body: 82 if body:
83 LOGGER.debug(body) 83 LOGGER.debug(body)
84 conn = GetConnectionClass()(host) 84 conn = GetConnectionClass()(host)
85 conn.req_host = host 85 conn.req_host = host
86 conn.req_params = { 86 conn.req_params = {
87 'url': '/a/%s' % path, 87 'url': '/a/%s' % path,
Ryan Tseng 2013/10/30 22:27:14 Add in the /a/ url change from https://codereview.
deymo 2013/10/30 23:01:25 Done.
88 'method': reqtype, 88 'method': reqtype,
89 'headers': headers, 89 'headers': headers,
90 'body': body, 90 'body': body,
91 } 91 }
92 conn.request(**conn.req_params) 92 conn.request(**conn.req_params)
93 return conn 93 return conn
94 94
95 95
96 def ReadHttpResponse(conn, expect_status=200, ignore_404=True): 96 def ReadHttpResponse(conn, expect_status=200, ignore_404=True):
97 """Reads an http response from a connection into a string buffer. 97 """Reads an http response from a connection into a string buffer.
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 if sortkey: 173 if sortkey:
174 path = '%s&N=%s' % (path, sortkey) 174 path = '%s&N=%s' % (path, sortkey)
175 if limit: 175 if limit:
176 path = '%s&n=%d' % (path, limit) 176 path = '%s&n=%d' % (path, limit)
177 if o_params: 177 if o_params:
178 path = '%s&%s' % (path, '&'.join(['o=%s' % p for p in o_params])) 178 path = '%s&%s' % (path, '&'.join(['o=%s' % p for p in o_params]))
179 # Don't ignore 404; a query should always return a list, even if it's empty. 179 # Don't ignore 404; a query should always return a list, even if it's empty.
180 return ReadHttpJsonResponse(CreateHttpConn(host, path), ignore_404=False) 180 return ReadHttpJsonResponse(CreateHttpConn(host, path), ignore_404=False)
181 181
182 182
183 def QueryAllChanges(host, param_dict, first_param=None, limit=500,
184 o_params=None, sortkey=None):
185 """
186 Queries a gerrit-on-borg server for all the changes matching the query terms.
187
188 A single query to gerrit-on-borg is limited on the number of results by the
189 limit parameter on the request (see QueryChanges) and the server maximum
190 limit. This function uses the "_more_changes" and "_sortkey" attributes on
191 the returned changes to iterate all of them making multiple queries to the
192 server, regardless the query limit.
193
194 Args:
195 param_dict: A dictionary of search parameters, as documented here:
196 http://gerrit-documentation.googlecode.com/svn/Documentation/2.6/user-se arch.html
197 first_param: A change identifier.
198 limit: Maximum number of requested changes per query.
199 o_params: A list of additional output specifiers, as documented here:
200 https://gerrit-review.googlesource.com/Documentation/rest-api-changes.ht ml#list-changes
201 sortkey: The value of the "_sortkey" attribute where starts from. None to
202 start from the first change.
203
204 Returns:
205 A generator object to the list of returned changes, possibly unbound.
206 """
207 more_changes = True
208 while more_changes:
209 page = QueryChanges(host, param_dict, first_param, limit, o_params, sortkey)
210 for cl in page:
211 yield cl
212
213 more_changes = [cl for cl in page if '_more_changes' in cl]
214 sortkey = None
215 if more_changes:
216 sortkey = more_changes[0]['_sortkey']
217
218
183 def MultiQueryChanges(host, param_dict, change_list, limit=None, o_params=None, 219 def MultiQueryChanges(host, param_dict, change_list, limit=None, o_params=None,
184 sortkey=None): 220 sortkey=None):
185 """Initiate a query composed of multiple sets of query parameters.""" 221 """Initiate a query composed of multiple sets of query parameters."""
186 if not change_list: 222 if not change_list:
187 raise RuntimeError( 223 raise RuntimeError(
188 "MultiQueryChanges requires a list of change numbers/id's") 224 "MultiQueryChanges requires a list of change numbers/id's")
189 q = ['q=%s' % '+OR+'.join([urllib.quote(str(x)) for x in change_list])] 225 q = ['q=%s' % '+OR+'.join([urllib.quote(str(x)) for x in change_list])]
190 if param_dict: 226 if param_dict:
191 q.append(_QueryString(param_dict)) 227 q.append(_QueryString(param_dict))
192 if limit: 228 if limit:
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 username = review.get('email', jmsg.get('name', '')) 421 username = review.get('email', jmsg.get('name', ''))
386 raise GerritError(200, 'Unable to set %s label for user "%s"' 422 raise GerritError(200, 'Unable to set %s label for user "%s"'
387 ' on change %s.' % (label, username, change)) 423 ' on change %s.' % (label, username, change))
388 jmsg = GetChangeCurrentRevision(host, change) 424 jmsg = GetChangeCurrentRevision(host, change)
389 if not jmsg: 425 if not jmsg:
390 raise GerritError( 426 raise GerritError(
391 200, 'Could not get review information for change "%s"' % change) 427 200, 'Could not get review information for change "%s"' % change)
392 elif jmsg[0]['current_revision'] != revision: 428 elif jmsg[0]['current_revision'] != revision:
393 raise GerritError(200, 'While resetting labels on change "%s", ' 429 raise GerritError(200, 'While resetting labels on change "%s", '
394 'a new patchset was uploaded.' % change) 430 'a new patchset was uploaded.' % change)
OLDNEW
« no previous file with comments | « no previous file | my_activity.py » ('j') | my_activity.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698