openSUSE-release-tools/osclib/list_command.py

60 lines
2.0 KiB
Python
Raw Normal View History

from osc import oscerr
2014-02-28 11:45:06 +01:00
class ListCommand:
def __init__(self, api):
self.api = api
def perform(self):
2014-03-05 13:01:55 +01:00
"""
Perform the list command
"""
# First dispatch all possible requests
self.api.dispatch_open_requests()
# Print out the left overs
requests = self.api.get_open_requests()
non_ring_packages = []
change_devel_requests = {}
for request in requests:
# Consolidate all data from request
request_id = int(request.get('id'))
action = request.findall('action')
if not action:
msg = 'Request {} has no action'.format(request_id)
raise oscerr.WrongArgs(msg)
# we care only about first action
action = action[0]
# Where are we targeting the package
target_package = action.find('target').get('package')
# handle change_devel requests
if action.get('type') == 'change_devel':
change_devel_requests[target_package] = request_id
continue
2015-03-24 14:46:36 +01:00
# If the system have rings, we ask for the ring of the
# package
if self.api.crings:
ring = self.api.ring_packages.get(target_package)
else:
ring = self.api.project
# This condition is quite moot as we dispatched stuff
# above anyway
if ring:
print('Request({}): {} -> {}'.format(request_id, target_package, ring))
else:
non_ring_packages.append(target_package)
if len(non_ring_packages):
print "Not in a ring:", ' '.join(sorted(non_ring_packages))
if len(change_devel_requests):
print "\nChange devel requests:"
for package, requestid in change_devel_requests.items():
print('Request({}): {}'.format(package, 'https://build.opensuse.org/request/show/'+str(requestid)))