Restrict jira issue use in one bitbucket repo

ILY November 27, 2017

Is it possible to restrict the use of an issue in jira server in only one repository in bitbucket, in other words we can't use the issue in other repositories ?

1 answer

0 votes
Julius Davies _bit-booster_com_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 27, 2017

It's possible, but it's not easy.

You'd have to write your own global push hook, similar to Yet Another Commit Checker's global hook.

In your hook's onReceive() method you would extract JIRA ticket references from the commit messages, and then use Bitbucket's built-in JIRA index to see if any previous commits already referenced them.

@ComponentImport
private final com.atlassian.bitbucket.idx.CommitIndex commitIndex;

In particular, you would call the CommitIndex.findByProperty() method to see if any commits in any repos referred to the given JIRA ticket:

String jiraKey = "TKT-123";
PageRequest pr = new PageRequestImpl(0, 999);
Page<IndexedCommit> pageResult;

pageResult = commitIndex.findByProperty(
JiraConstants.IDX_PROP_ISSUE_KEYS, jiraKey, false, pr);

 

Note: a naive implementation of this would potentially block all new commits that referenced "UTF-8" or "ISO-9000", since Bitbucket assumes those are JIRA tickets.   Bitbucket does not check if a given "ticket-like" string in a commit message actually exists in your JIRA instance.  It just indexes all "ticket-like" strings regardless.

 

ILY November 27, 2017

IS there a possibility to do it with a hook ( bash commands )

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events