I create plugin for bamboo and me need find the logged username in Bamboo.
How get her?
but for Bamboo doesn't work.
Please help.
You can use BambooAuthenticationContext to retrieve the current user.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately, I do not have anything that I can share. It is pretty straight forward though. Inject the service like any other service and invoke the getUser method to retrieve the logged in user.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What's the scope of your plugin, when it works?
If it has UI interaction then BambooAuthenticationContext will have logged in user information, if there's some background activity, there will be no user information
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Plugin send message to SOAP server and receives a response that outputs to the log. For authorization in the web service it is necessary to get the user name authorized in bamboo and run the deploy plan with the plugin task
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It means user starts deployment so you should begin from that point.
Plugin should add information about logged in user who started deployment, this data is stored in CommonContext which is available for you plugin task if it implements com.atlassian.bamboo.task.RuntimeTaskDataProvider interface (as a reference on implementation and configuration see com.atlassian.bamboo.plugins.artifact.ArtifactDownloaderRuntimeDataProvider). During this phase you put username to DeploymentContext and then can use this information on execution phase.
When your plugin task is being executed at agent it should read username from runtimeContext (taskContext.getRuntimeTaskContext()) and use for authorization to SOAP server
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I got the username so:
final String nameForSentence = deploymentTaskContext.getDeploymentContext().getTriggerReason().getNameForSentence();
String userLogin = nameForSentence.substring(nameForSentence.lastIndexOf(" ")+1);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Username is provided only by ManualBuilTriggerReason. So you may check that reason is of given type and then call reason.getUserName()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's deprecated for com.atlassian.bamboo.v2.build.CommonContext, but not for com.atlassian.bamboo.task.CommonTaskContext
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.