Problem Description
Workaround via Jira REST API
AutoHotkey Implementation
; ------------------------------------------------------------------------------------------------------------------- | |
Jira_AddLinkByName(sLinkName, inwardIssueKey, outwardIssueKey) { | |
; suc := Jira_AddLinkByName(sLinkName, inwardIssueKey, outwardIssueKey) | |
sRootUrl := Jira_IssueKey2RootUrl(inwardIssueKey) | |
sUrl := sRootUrl . "/rest/api/2/issueLink" | |
sBody = {"type":{"name":"%sLinkName%"},"inwardIssue":{"key":"%inwardIssueKey%"},"outwardIssue":{"key":"%outwardIssueKey%"}} | |
;sResponse:= Jira_Post(sUrl, sBody) | |
; MsgBox %sUrl%`n%sBody%`n%sResponse% | |
WebRequest := Jira_WebRequest("POST",sUrl, sBody) | |
suc := (WebRequest.Status = "201") | |
return suc | |
} ; eofun | |
; ------------------------------------------------------------------------------------------------------------------- | |
Jira_AddLink(sLinkName:="",srcIssueKey:="",tgtIssueKey:="") { | |
; sLog := Jira_AddLink(sLinkName,srcIssueKey,tgtIssueKey) | |
; srcIssueKey and tgtIssueKey can be a string containing multiple keys | |
If (srcIssueKey="") { | |
InputBox, srcIssueKey , Input Keys, Input issue Key(s) for link source(s):,, 640, 125 | |
If ErrorLevel ; user cancelled | |
return | |
} | |
If (tgtIssueKey="") { | |
InputBox, tgtIssueKey , Input Keys, Input issue Key(s) for link target(s):,, 640, 125 | |
If ErrorLevel ; user cancelled | |
return | |
} | |
; Input linkName | |
If (sLinkName = "") { | |
InputBox, sLinkName , Input Link, Input (inward or outward) Link name:,, 640, 125 | |
If ErrorLevel ; user cancelled | |
return | |
} | |
; Get Link definition | |
sRootUrl := Jira_IssueKey2RootUrl(inwardIssueKey) | |
sUrl := sRootUrl . "/rest/api/2/issueLinkType" | |
sResponse:= Jira_Get(sUrl, sBody) | |
Json := Jxon_Load(sResponse) | |
JsonLinks := Json["issueLinkTypes"] | |
; Shorten LinkName matching | |
sPat:= StrReplace(sLinkName," ","[^\s]*\s") | |
sPat := RegExReplace(sPat,"\s$") ; remove trailing \s | |
sPat := "i)^" . sPat . "[^\s]*" ; case insensitive, start with | |
; Loop on Links to find the relevant one and direction | |
For i, link in JsonLinks | |
{ | |
If RegExMatch(link["inward"],sPat,sMatch) { ;(l["inward"] = sLinkName) | |
If !(StrLen(sMatch) = StrLen(link["inward"])) ; full match only | |
continue | |
inwardIssueKey := tgtIssueKey | |
outwardIssueKey := srcIssueKey | |
linkName := link["name"] | |
Break | |
} | |
If RegExMatch(link["outward"],sPat,sMatch) { | |
If !(StrLen(sMatch) = StrLen(link["outward"])) ; full match only | |
continue | |
inwardIssueKey := srcIssueKey | |
outwardIssueKey := tgtIssueKey | |
linkName := link["name"] | |
Break | |
} | |
} | |
If (linkName ="") { | |
TrayTip, Error, No link found matching input name '%sLinkName%'!,,3 | |
return | |
} | |
; Convert to array if necessary | |
If (inwardIssueKey.Length() ="") ; no array | |
inwardKeys := Jira_GetIssueKeys(inwardIssueKey) | |
Else | |
inwardKeys := inwardIssueKey | |
If (outwardIssueKey.Length() ="") ; no array | |
outwardKeys := Jira_GetIssueKeys(outwardIssueKey) | |
Else | |
outwardKeys := outwardIssueKey | |
sPrompt:= "Create '" . linkName . "'' link(s) from:" | |
; Prompt for confirmation | |
for index_in, inKey in inwardKeys | |
{ | |
sPrompt := sPrompt . inKey . ", " | |
} ; end for | |
sPrompt := RegExReplace(sPrompt,", $") | |
sPrompt:= sPrompt . " to: " | |
for index_out, outKey in outwardKeys | |
{ | |
sPrompt := sPrompt . outKey . ", " | |
} | |
sPrompt := RegExReplace(sPrompt,", $","?") | |
MsgBox, 4, Create Links?, %sPrompt% | |
IfMsgBox No ; Exit | |
return | |
; Add Links | |
for index_in, inKey in inwardKeys | |
{ | |
for index_out, outKey in outwardKeys | |
{ | |
suc := Jira_AddLinkByName(linkName, inKey, outKey) | |
If (suc) | |
sLog := sLog . "`n'" . linkName . "' link between " . inKey " and " . outKey . " added." | |
Else | |
sLog := sLog . "`n'" . linkName . "' link between " . inKey " and " . outKey . " failed to add." | |
} | |
} ; end for | |
sLog := RegExReplace(sLog,"$\n") ; remove starting \n | |
return sLog | |
} ; eofun | |
; ------------------------------------------------------------------------------------------------------------------- |
Usage
Source Issues
Source issues are taken out of the current context:
- In the browser from the current url
- Jira detailed issue view
- Jira filter with multiple keys
- R4J tree view
- This works also from a bulk edit view triggered from the R4J Tree selection
- Excel: from the current select. Key is found intelligently as in the Open Issue feature
- (other application) From the selection, any selected text will be parsed by issue keys
Target Issues
You can enter any text that contains issue keys including multiple one; the text will be parsed by issue keys.
Link name
You will be prompted to enter the link name with which you want to create the link. The link name is a inward or outward link name. For example 'satisfies' or 'is satisfied by'.
The input dialog supports shortened input.
For example 'i s b' will match 'is satisfied by'. Still the number of words (separated by a space) shall match the full link name.
Confirmation Question Dialog
Before the links are creates you will be prompted for confirmation.
The link name is confirmed as well as the inward and outward issue keys. The order might look reverse to you depending on the link direction you have entered.
The created links can't be undone automatically. There is no undo feature.
Result
In the notification area you will have a notification about the links that were created by the PowerTool.