From 5c152fe7823625e151241bcb99f994f945da8fcd Mon Sep 17 00:00:00 2001 From: Florian Jung Date: Thu, 5 Sep 2013 01:02:34 +0200 Subject: Import assigned_to field using a user dictionary --- issues.py | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/issues.py b/issues.py index db7623d..bca36e4 100755 --- a/issues.py +++ b/issues.py @@ -1,5 +1,18 @@ #!/usr/bin/env python + + +userdict = { + # provide your sourceforge -> github user name mappings here. + # syntax: + # "old_sf_user": "NewGitHubUser", + # "another": "line", + # "last": "line" +} + + +####################################################################### + import re import better_exchook @@ -8,7 +21,7 @@ better_exchook.install() import sys import optparse -parser = optparse.OptionParser(usage='Usage: %prog [options] sfexport.xml githubuser/repo') +parser = optparse.OptionParser(usage='Usage: %prog [options] sfexport.xml githubuser/repo\n\tYou might want to edit %prog with a text editor and set\n\tup the userdict = {...} accordingly, for mapping user names.') parser.add_option('-s', '--start', dest='start_id', action='store', help='id of first issue to import; useful for aborted runs') parser.add_option('-u', '--user', dest='github_user') opts, args = parser.parse_args() @@ -169,8 +182,18 @@ def handle_tracker_item(item, issue_title_prefix, statusprintprefix): cleanup_message_body(followup.find('field',attrs={'name':'body'}).string), ])) - print statusprintprefix+ 'Creating: %s [%s] (%d comments)%s for SF #%s from %s' % (title, ','.join(labels), len(comments), ' (closed)' if closed else '', item_id, item_date) - response = rest_call('POST', 'issues', {'title': title, 'body': body, 'labels': labels}) + assignee_sf = item.find('field',attrs={'name':'assigned_to'}).string.strip().lower() + if assignee_sf == "nobody": + assignee = None + else: + try: + assignee = userdict[assignee_sf] + except KeyError: # not in dict + print "Warning: could not convert original assignee '%s': Not found in userdict." % assignee_sf + assignee = None + + print statusprintprefix+ 'Creating: %s [%s] (%d comments)%s for SF #%s from %s, assigned to %s' % (title, ','.join(labels), len(comments), ' (closed)' if closed else '', item_id, item_date, assignee) + response = rest_call('POST', 'issues', {'title': title, 'body': body, 'labels': labels, 'assignee': assignee}) if response.status_code == 500: print "ISSUE CAUSED SERVER SIDE ERROR AND WAS NOT SAVED!!! Import will continue." else: -- cgit v1.2.1