3c369591e9
This tool lifts all of the user's reviews that they have -2d for a project using the gerrit REST API. Change-Id: Ie955417e1d3d068b07a445649dec61c14861f520
83 lines
2.7 KiB
Python
83 lines
2.7 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import json
|
|
import os.path
|
|
|
|
import pbr.version
|
|
import requests
|
|
from requests import auth
|
|
import yaml
|
|
|
|
|
|
__version__ = pbr.version.VersionInfo('update_reviews').version_string()
|
|
|
|
|
|
def _read_config():
|
|
data = yaml.safe_load(open(os.path.expanduser('~/.gertty.yaml')))
|
|
servers = data['servers']
|
|
for s in servers:
|
|
if s['name'] == 'openstack':
|
|
return s
|
|
|
|
|
|
class UpdateReviews(object):
|
|
def __init__(self, project, user=None, password=None,
|
|
updating_review_cb=lambda x: None):
|
|
self.base_url = 'https://review.openstack.org/'
|
|
|
|
if not (user and password):
|
|
config = _read_config()
|
|
user = config['username']
|
|
password = config['password']
|
|
self.base_url = config['url']
|
|
|
|
self.auth = auth.HTTPDigestAuth(user, password)
|
|
|
|
self.project = project
|
|
self.updating_review_cb = updating_review_cb
|
|
|
|
def _list_my_reviews(self):
|
|
url = '%sa/changes/' % self.base_url
|
|
branch = 'master'
|
|
query = ('project:%s branch:%s status:open '
|
|
'label:Code-Review=-2,self' % (self.project, branch))
|
|
params = {'q': query, 'o': 'CURRENT_REVISION'}
|
|
r = requests.get(url, params=params, auth=self.auth)
|
|
r.raise_for_status()
|
|
|
|
# Note that the result is not JSON, it's got a leading line that needs
|
|
# to be removed first.
|
|
res_text = r.text
|
|
(dummy_magic_prefix, dummy_nl, res_json) = res_text.partition('\n')
|
|
return json.loads(res_json)
|
|
|
|
def _update_review(self, r):
|
|
change_id = r['id']
|
|
revision_id = r['current_revision']
|
|
url = ('%sa/changes/%s/revisions/%s/review' %
|
|
(self.base_url, change_id, revision_id))
|
|
headers = {'Content-Type': 'application/json'}
|
|
payload = {
|
|
'message': 'This project is now open for new features.',
|
|
'labels': {
|
|
'Code-Review': 0,
|
|
},
|
|
}
|
|
r = requests.post(url, auth=self.auth, headers=headers, json=payload)
|
|
r.raise_for_status()
|
|
|
|
def update_my_reviews(self):
|
|
for r in self._list_my_reviews():
|
|
self.updating_review_cb(r)
|
|
self._update_review(r)
|