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!
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.)
Wonderful! This is exactly what I was looking for. Thanks very much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.