Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How can I get the name of a user and affected branches in a BitBucket pre-receive hook?

Benjamin Kerestan July 30, 2017

I've got a pre-receive BitBucket hook written using the Java API which does some analysis on diffs or file contents. It works perfectly thus far. I would like to be able to get the name or username of the user who pushed the changes, as well as the branch to which the changes were pushed. Is this possible? I would have imagined that this metadata would be available as part of a ref or changeset, but from what I have seen thus far in the javadocs, it does not appear to be.

Thanks!

1 answer

1 accepted

1 vote
Answer accepted
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.
July 30, 2017

The branch name:

changeRef.getRef().getDisplayId();

 (or getId() if you don't mind the name starting with "refs/heads/").

 

The current user:

ApplicationUser u = authenticationContext.getCurrentUser();

Spring-inject a com.atlassian.bitbucket.auth.AuthenticationContext (from bitbucket-api.jar) to get your hands on one of those.

 

(p.s. I'm the author of the paid add-on: Bit-Booster - Rebase Squash Amend.) 

Benjamin Kerestan August 7, 2017

Wonderful! This is exactly what I was looking for. Thanks very much!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events