1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 01:06:17 +02:00

Merge branch 'metafile_edit_support_force' of https://github.com/marcus-h/osc

Offer a force ("f") choice in metafile.edit's error handling code path.
This commit is contained in:
Marcus Huewe 2021-09-02 15:10:39 +02:00
commit 2d43ea59dd

View File

@ -2162,8 +2162,11 @@ rev: %s
url = ET.SubElement(root, 'url') url = ET.SubElement(root, 'url')
url.text = self.url url.text = self.url
u = makeurl(self.apiurl, ['source', self.prjname, self.name, '_meta']) delegate = lambda force=False: make_meta_url('pkg',
mf = metafile(u, ET.tostring(root, encoding=ET_ENCODING)) (self.prjname, self.name),
self.apiurl, force=force)
url_factory = metafile._URLFactory(delegate)
mf = metafile(url_factory, ET.tostring(root, encoding=ET_ENCODING))
if not force: if not force:
print('*' * 36, 'old', '*' * 36) print('*' * 36, 'old', '*' * 36)
@ -3674,10 +3677,29 @@ def show_configuration(apiurl):
class metafile: class metafile:
"""metafile that can be manipulated and is stored back after manipulation.""" """metafile that can be manipulated and is stored back after manipulation."""
class _URLFactory:
# private class which might go away again...
def __init__(self, delegate, force_supported=True):
self._delegate = delegate
self._force_supported = force_supported
def is_force_supported(self):
return self._force_supported
def __call__(self, **kwargs):
return self._delegate(**kwargs)
def __init__(self, url, input, change_is_required=False, file_ext='.xml'): def __init__(self, url, input, change_is_required=False, file_ext='.xml'):
import tempfile import tempfile
self.url = url if isinstance(url, self._URLFactory):
self._url_factory = url
else:
delegate = lambda **kwargs: url
# force is not supported for a raw url
self._url_factory = self._URLFactory(delegate, False)
self.url = self._url_factory()
self.change_is_required = change_is_required self.change_is_required = change_is_required
(fd, self.filename) = tempfile.mkstemp(prefix = 'osc_metafile.', suffix = file_ext) (fd, self.filename) = tempfile.mkstemp(prefix = 'osc_metafile.', suffix = file_ext)
@ -3711,8 +3733,11 @@ class metafile:
def edit(self): def edit(self):
try: try:
try_force = False
while True: while True:
if not try_force:
run_editor(self.filename) run_editor(self.filename)
try_force = False
try: try:
self.sync() self.sync()
break break
@ -3728,8 +3753,18 @@ class metafile:
summary = root.find('summary') summary = root.find('summary')
if summary is not None: if summary is not None:
print(summary.text, file=sys.stderr) print(summary.text, file=sys.stderr)
ri = raw_input('Try again? ([y/N]): ') if self._url_factory.is_force_supported():
if ri not in ['y', 'Y']: prompt = 'Try again? ([y/N/f]): '
else:
prompt = 'Try again? ([y/N): '
ri = raw_input(prompt)
if ri in ('y', 'Y'):
self.url = self._url_factory()
elif ri in ('f', 'F') and self._url_factory.is_force_supported():
self.url = self._url_factory(force='1')
try_force = True
else:
break break
finally: finally:
self.discard() self.discard()
@ -3866,8 +3901,12 @@ def edit_meta(metatype,
print(' osc meta pkg %s %s -e' % (unquote(project), package)) print(' osc meta pkg %s %s -e' % (unquote(project), package))
return return
url = make_meta_url(metatype, path_args, apiurl, force, remove_linking_repositories, msg) delegate = lambda force=force: make_meta_url(metatype, path_args, apiurl,
f = metafile(url, data, change_is_required, metatypes[metatype]['file_ext']) force,
remove_linking_repositories,
msg)
url_factory = metafile._URLFactory(delegate)
f = metafile(url_factory, data, change_is_required, metatypes[metatype]['file_ext'])
if edit: if edit:
f.edit() f.edit()