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

Is it possible to find out if a user is pushing code through SSH or HTTPS?

Matthew Trahan January 10, 2018
I’m attempting to display a message to users when they push through HTTPS. I can’t find any information on determining the protocol that the user is using. I’ve tried grabbing the remote origin URL and searched everywhere to see if there’s a way to get the protocol, but I’m stumped. Thanks for any help.

2 answers

1 accepted

1 vote
Answer accepted
Michael Heemskerk
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 10, 2018

You can inject RequestManager into your hook (assuming you're writing a hook). Then in your hook you could do something like this:

RequestContext requestContext = requestManager.getRequestContext();
if (requestContext != null && requestContext.getProtocol().startsWith("http")) {
....
}

0 votes
Ana Retamal
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 12, 2018

Hi Matthew, I'm assuming you're using Bitbucket Server.

You can also see that from the access logs. If you need help on how to read the access logs, you can refer to How to read the bitbucket server log formats.

Hope that helps!

Ana 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events