The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Matthew Trahan
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

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 

TAGS
AUG Leaders

Atlassian Community Events