openSUSE-release-tools/osclib/list_command.py

39 lines
1.2 KiB
Python
Raw Normal View History

2014-02-28 11:45:06 +01:00
from xml.etree import cElementTree as ET
from osc.core import makeurl
from osc.core import http_GET
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()
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')
ring = self.api.ring_packages.get(target_package)
# This condition is quite moot as we dispatched stuff above anyway
if ring:
print('Request({}): {} -> {}'.format(request_id, target_package, ring))