openSUSE-release-tools/osclib/prio_command.py
Jimmy Berry 84e1b66cd8 setprio: utilize project_status() and refactor to support list of stagings.
The existing setup was inconsistent in that it was copied from check, but
documented that it supported multiple specific stagings. Assuming that
would be a desired feature anyway it has been reworked.
2017-03-17 14:11:55 -05:00

69 lines
2.4 KiB
Python

# Copyright (C) 2016,2017 SUSE LLC
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
import json
import osc
import urllib2
class PrioCommand(object):
def __init__(self, api):
self.api = api
def _setprio(self, project):
"""
Set prios for requests that are still in review
:param project: project to check
"""
# XXX taking name verbatim would produce null byte error
# https://github.com/openSUSE/open-build-service/issues/2493
message = 'raising priority for %s'%str(project['name'])
for r in project['missing_reviews']:
reqid = str(r['request'])
req = osc.core.get_request(self.api.apiurl, reqid)
priority = req.priority
if priority is None:
priority = 'important'
query = { 'cmd': 'setpriority', 'priority': priority }
url = osc.core.makeurl(self.api.apiurl, ['request', reqid], query)
print reqid, message
try:
osc.core.http_POST(url, data=message)
print reqid, r['by'], priority
except urllib2.HTTPError, e:
print e
def perform(self, projects=None):
"""
Set priority on specific stagings or all of them at once
:param projects: projects on which to set priority, None for all
"""
aggregate = False
if not projects:
aggregate = True
projects = self.api.get_staging_projects()
for project in projects:
info = self.api.project_status(project, aggregate)
if not info['selected_requests']:
continue
self._setprio(info)
return True