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

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: added check for len(more_changes) < 2 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') | no next file with comments »
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 else: 58 else:
59 raise RuntimeError( 59 raise RuntimeError(
60 "Don't know how to work with protocol '%s'" % protocol) 60 "Don't know how to work with protocol '%s'" % protocol)
61 61
62 62
63 def CreateHttpConn(host, path, reqtype='GET', headers=None, body=None): 63 def CreateHttpConn(host, path, reqtype='GET', headers=None, body=None):
64 """Opens an https connection to a gerrit service, and sends a request.""" 64 """Opens an https connection to a gerrit service, and sends a request."""
65 headers = headers or {} 65 headers = headers or {}
66 bare_host = host.partition(':')[0] 66 bare_host = host.partition(':')[0]
67 auth = NETRC.authenticators(bare_host) 67 auth = NETRC.authenticators(bare_host)
68
68 if auth: 69 if auth:
69 headers.setdefault('Authorization', 'Basic %s' % ( 70 headers.setdefault('Authorization', 'Basic %s' % (
70 base64.b64encode('%s:%s' % (auth[0], auth[2])))) 71 base64.b64encode('%s:%s' % (auth[0], auth[2]))))
71 else: 72 else:
72 LOGGER.debug('No authorization found') 73 LOGGER.debug('No authorization found in netrc.')
74
75 if 'Authorization' in headers and not path.startswith('a/'):
76 url = '/a/%s' % path
77 else:
78 url = '/%s' % path
79
73 if body: 80 if body:
74 body = json.JSONEncoder().encode(body) 81 body = json.JSONEncoder().encode(body)
75 headers.setdefault('Content-Type', 'application/json') 82 headers.setdefault('Content-Type', 'application/json')
76 if LOGGER.isEnabledFor(logging.DEBUG): 83 if LOGGER.isEnabledFor(logging.DEBUG):
77 LOGGER.debug('%s %s://%s/a/%s' % (reqtype, GERRIT_PROTOCOL, host, path)) 84 LOGGER.debug('%s %s://%s%s' % (reqtype, GERRIT_PROTOCOL, host, url))
78 for key, val in headers.iteritems(): 85 for key, val in headers.iteritems():
79 if key == 'Authorization': 86 if key == 'Authorization':
80 val = 'HIDDEN' 87 val = 'HIDDEN'
81 LOGGER.debug('%s: %s' % (key, val)) 88 LOGGER.debug('%s: %s' % (key, val))
82 if body: 89 if body:
83 LOGGER.debug(body) 90 LOGGER.debug(body)
84 conn = GetConnectionClass()(host) 91 conn = GetConnectionClass()(host)
85 conn.req_host = host 92 conn.req_host = host
86 conn.req_params = { 93 conn.req_params = {
87 'url': '/a/%s' % path, 94 'url': url,
88 'method': reqtype, 95 'method': reqtype,
89 'headers': headers, 96 'headers': headers,
90 'body': body, 97 'body': body,
91 } 98 }
92 conn.request(**conn.req_params) 99 conn.request(**conn.req_params)
93 return conn 100 return conn
94 101
95 102
96 def ReadHttpResponse(conn, expect_status=200, ignore_404=True): 103 def ReadHttpResponse(conn, expect_status=200, ignore_404=True):
97 """Reads an http response from a connection into a string buffer. 104 """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: 180 if sortkey:
174 path = '%s&N=%s' % (path, sortkey) 181 path = '%s&N=%s' % (path, sortkey)
175 if limit: 182 if limit:
176 path = '%s&n=%d' % (path, limit) 183 path = '%s&n=%d' % (path, limit)
177 if o_params: 184 if o_params:
178 path = '%s&%s' % (path, '&'.join(['o=%s' % p for p in o_params])) 185 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. 186 # 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) 187 return ReadHttpJsonResponse(CreateHttpConn(host, path), ignore_404=False)
181 188
182 189
190 def GenerateAllChanges(host, param_dict, first_param=None, limit=500,
191 o_params=None, sortkey=None):
192 """
193 Queries a gerrit-on-borg server for all the changes matching the query terms.
194
195 A single query to gerrit-on-borg is limited on the number of results by the
196 limit parameter on the request (see QueryChanges) and the server maximum
197 limit. This function uses the "_more_changes" and "_sortkey" attributes on
198 the returned changes to iterate all of them making multiple queries to the
199 server, regardless the query limit.
200
201 Args:
202 param_dict, first_param: Refer to QueryChanges().
203 limit: Maximum number of requested changes per query.
204 o_params: Refer to QueryChanges().
205 sortkey: The value of the "_sortkey" attribute where starts from. None to
206 start from the first change.
207
208 Returns:
209 A generator object to the list of returned changes, possibly unbound.
210 """
211 more_changes = True
212 while more_changes:
213 page = QueryChanges(host, param_dict, first_param, limit, o_params, sortkey)
214 for cl in page:
215 yield cl
216
217 more_changes = [cl for cl in page if '_more_changes' in cl]
218 if len(more_changes) > 1:
219 raise GerritError(
220 200,
221 'Received %d changes with a _more_changes attribute set but should '
222 'receive at most one.' % len(more_changes))
223 if more_changes:
224 sortkey = more_changes[0]['_sortkey']
225
226
183 def MultiQueryChanges(host, param_dict, change_list, limit=None, o_params=None, 227 def MultiQueryChanges(host, param_dict, change_list, limit=None, o_params=None,
184 sortkey=None): 228 sortkey=None):
185 """Initiate a query composed of multiple sets of query parameters.""" 229 """Initiate a query composed of multiple sets of query parameters."""
186 if not change_list: 230 if not change_list:
187 raise RuntimeError( 231 raise RuntimeError(
188 "MultiQueryChanges requires a list of change numbers/id's") 232 "MultiQueryChanges requires a list of change numbers/id's")
189 q = ['q=%s' % '+OR+'.join([urllib.quote(str(x)) for x in change_list])] 233 q = ['q=%s' % '+OR+'.join([urllib.quote(str(x)) for x in change_list])]
190 if param_dict: 234 if param_dict:
191 q.append(_QueryString(param_dict)) 235 q.append(_QueryString(param_dict))
192 if limit: 236 if limit:
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 username = review.get('email', jmsg.get('name', '')) 429 username = review.get('email', jmsg.get('name', ''))
386 raise GerritError(200, 'Unable to set %s label for user "%s"' 430 raise GerritError(200, 'Unable to set %s label for user "%s"'
387 ' on change %s.' % (label, username, change)) 431 ' on change %s.' % (label, username, change))
388 jmsg = GetChangeCurrentRevision(host, change) 432 jmsg = GetChangeCurrentRevision(host, change)
389 if not jmsg: 433 if not jmsg:
390 raise GerritError( 434 raise GerritError(
391 200, 'Could not get review information for change "%s"' % change) 435 200, 'Could not get review information for change "%s"' % change)
392 elif jmsg[0]['current_revision'] != revision: 436 elif jmsg[0]['current_revision'] != revision:
393 raise GerritError(200, 'While resetting labels on change "%s", ' 437 raise GerritError(200, 'While resetting labels on change "%s", '
394 'a new patchset was uploaded.' % change) 438 'a new patchset was uploaded.' % change)
OLDNEW
« no previous file with comments | « no previous file | my_activity.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698