openSUSE-release-tools/osc-staging.py

131 lines
4.5 KiB
Python
Raw Normal View History

2013-09-04 15:11:27 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2013-09-04 15:11:27 +02:00
#
2014-02-10 10:19:37 +01:00
# (C) 2014 mhrusecky@suse.cz, openSUSE.org
# (C) 2014 tchvatal@suse.cz, openSUSE.org
# (C) 2014 aplanas@suse.de, openSUSE.org
# (C) 2014 coolo@suse.de, openSUSE.org
2013-09-04 15:11:27 +02:00
# Distribute under GPLv2 or GPLv3
import os
import os.path
import re
import sys
from xml.etree import cElementTree as ET
from osc import cmdln, oscerr
from osc.core import delete_project
from osc.core import makeurl
from osc.core import meta_get_packagelist
from osc.core import http_GET
from osc.core import http_POST
from osc.core import server_diff
# Expand sys.path to search modules inside the pluging directory
_plugin_dir = os.path.expanduser('~/.osc-plugins')
sys.path.append(_plugin_dir)
2014-03-06 18:50:59 +01:00
2014-02-12 17:58:19 +01:00
from osclib.stagingapi import StagingAPI
from osclib.request_finder import RequestFinder
from osclib.select_command import SelectCommand
from osclib.accept_command import AcceptCommand
from osclib.cleanup_rings import CleanupRings
from osclib.list_command import ListCommand
2014-03-06 18:50:59 +01:00
from osclib.freeze_command import FreezeCommand
from osclib.check_command import CheckCommand
OSC_STAGING_VERSION = '0.0.1'
2013-09-04 15:11:27 +02:00
def _print_version(self):
""" Print version information about this extension. """
print(self.OSC_STAGING_VERSION)
2013-09-04 15:11:27 +02:00
quit(0)
@cmdln.option('--move', action='store_true',
help='force the selection to become a move')
@cmdln.option('-f', '--from', dest='from_', metavar='FROMPROJECT',
help='manually specify different source project during request moving')
2013-09-04 15:11:27 +02:00
@cmdln.option('-v', '--version', action='store_true',
help='show version of the plugin')
def do_staging(self, subcmd, opts, *args):
"""${cmd_name}: Commands to work with staging projects
2014-03-06 18:50:59 +01:00
"accept" will accept all requests in
openSUSE:Factory:Staging:<LETTER> (into Factory)
2013-09-04 15:11:27 +02:00
"check" will check if all packages are links without changes
2014-03-06 18:50:59 +01:00
"cleanup_rings" will try to cleanup rings content and print
out problems
"freeze" will freeze the sources of the project's links (not
affecting the packages actually in)
2014-02-10 10:19:37 +01:00
"list" will pick the requests not in rings
"select" will add requests to the project
2014-03-06 18:50:59 +01:00
2014-03-05 09:24:07 +01:00
"unselect" will remove from the project - pushing them back to the backlog
2013-09-04 15:11:27 +02:00
Usage:
2014-03-06 18:50:59 +01:00
osc staging accept LETTER
2013-09-04 15:11:27 +02:00
osc staging check [--everything] REPO
2014-03-06 18:50:59 +01:00
osc staging cleanup_rings
osc staging freeze PROJECT...
osc staging list
osc staging select [--move [-from PROJECT]] LETTER REQUEST...
2014-03-05 09:24:07 +01:00
osc staging unselect REQUEST...
2013-09-04 15:11:27 +02:00
"""
if opts.version:
self._print_version()
# verify the argument counts match the commands
2014-02-10 19:59:45 +01:00
if len(args) == 0:
raise oscerr.WrongArgs('No command given, see "osc help staging"!')
2013-09-04 15:11:27 +02:00
cmd = args[0]
2014-03-06 18:50:59 +01:00
if cmd in ('accept', 'freeze'):
2013-09-04 15:11:27 +02:00
min_args, max_args = 1, 1
elif cmd == 'check':
min_args, max_args = 0, 2
elif cmd == 'select':
min_args, max_args = 2, None
elif cmd == 'unselect':
min_args, max_args = 1, None
elif cmd in ('list', 'cleanup_rings'):
min_args, max_args = 0, 0
2013-09-04 15:11:27 +02:00
else:
raise oscerr.WrongArgs('Unknown command: %s' % cmd)
2013-09-04 15:11:27 +02:00
if len(args) - 1 < min_args:
raise oscerr.WrongArgs('Too few arguments.')
if not max_args is None and len(args) - 1 > max_args:
raise oscerr.WrongArgs('Too many arguments.')
# init the obs access
opts.apiurl = self.get_api_url()
opts.verbose = False
2014-02-12 17:58:19 +01:00
api = StagingAPI(opts.apiurl)
2013-09-04 15:11:27 +02:00
# call the respective command and parse args by need
2014-03-06 18:50:59 +01:00
if cmd == 'check':
project = args[1] if len(args) > 1 else None
if project:
project = api.prj_from_letter(project)
CheckCommand(api).perform(project)
elif cmd == 'freeze':
for prj in args[1:]:
2014-03-06 18:50:59 +01:00
FreezeCommand(api).perform(api. prj_from_letter(prj))
elif cmd == 'accept':
return AcceptCommand(api).perform(api. prj_from_letter(args[1]))
elif cmd == 'unselect':
2014-03-04 18:22:37 +01:00
for rq, rq_prj in RequestFinder.find_staged_sr(args[1:], opts.apiurl, api).items():
print('Unselecting "{}" from "{}"'.format(rq, rq_prj['staging']))
api.rm_from_prj(rq_prj['staging'], request_id=rq)
2014-03-05 09:24:07 +01:00
api.add_review(rq, by_group='factory-staging', msg='Please recheck')
elif cmd == 'select':
tprj = api.prj_from_letter(args[1])
return SelectCommand(api).perform(tprj, args[2:], opts.move, opts.from_)
elif cmd == 'cleanup_rings':
return CleanupRings(opts.apiurl).perform()
elif cmd == 'list':
return ListCommand(api).perform()