t3db0t / jiraToClubhouseCLI

MIT License
15 stars 13 forks source link

jiraToClubhouseCLI

Clubhouse.io is an excellent modern project management application. This tool helps make the transition from JIRA by importing your JIRA tickets into Clubhouse.

Updated by T3db0t to use an external JSON file to map user IDs and project IDs and assorted other improvements. See this blog post for more information and a full tutorial: http://log.liminastudio.com/programming/how-and-why-i-switched-from-jira-to-clubhouse

The tool has two modes: export and import. Use export to generate a JSON file and import to actually send all the data to Clubhouse using your API token. Generate an API token from https://app.clubhouse.io/[your_organization]/settings/account/api-tokens and make it an environment variable like so: export CLUBHOUSE_API_TOKEN=asdflkjaseflkjdf

Also included are a few utility scripts in Python: createTestStory.py, deleteArchivedStories.py and deleteEmptyEpics.py. Use these like so:

python deleteArchivedStories.py $CLUBHOUSE_API_TOKEN

Notes / Known Issues

User Map

A JSON file with this structure:

[
    {
        "jiraUsername": "userA",
        "chProjectID": 5,
        "chID": "476257c9-ac5a-46bc-67d6-4bc8bbfde7be"
    },
    {
        "jiraUsername": "userB",
        "chProjectID": 81,
        "chID": "476257c9-ac5a-46bc-67d6-4bc8bbfde7be"
    },
    {
        "jiraUsername": "userC",
        "chProjectID": 6,
        "chID": "476257c9-ac5a-46bc-67d6-4bc8bbfde7be"
    }
]

You'll need to get the right JIRA usernames and Clubhouse Project ID and user IDs and fill them in with this structure. Detail on how to do this in my blog post.

Workflow Map

Right now you'll have to map workflow states in the script itself (sorry!) in jiraStructs.go:

switch item.Status {
    case "Ready for Test":
        // ready for test
        state = 500000010
    case "Task In Progress":
        // in progress
        state = 500000015
    case "Selected for Review/Development":
        // selected
        state = 500000011
    case "Task backlog":
        // backlog
        state = 500000014
    case "Done":
        // Completed
        state = 500000012
    case "Verified":
        // Completed
        state = 500000012
    case "Closed":
        state = 500000021
    default:
        // backlog
        state = 500000014
}

To get your Clubhouse workflow state IDs, you can look at curl -X GET \ -H "Content-Type: application/json" \ -L "https://api.clubhouse.io/api/v2/workflows?token=$CLUBHOUSE_API_TOKEN"

Export

To see what the data will look like (as JSON).

go run *.go export --in SearchRequest.xml --map userMap.json --out file.json

Params

Import

To actually import to Clubhouse. Use --test to parse input files and 'preview' what the effects will be without uploading to Clubhouse. Good for checking that everything works before pulling the trigger.

go run *.go import --in SearchRequest.xml --map userMap.json --token $CLUBHOUSE_API_TOKEN

Params