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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,557,788
Community Members
 
Community Events
184
Community Groups

compare logged in user to username in post function

I am trying to compare the current logged in user during a post function to verify that the transition isn't running via an automation.  The automation is set to run as xyz user.  So if the user executing the transition matches that username I don't want to assign the current user to the assignee.  If the current user doesn't match the username then I want to assign the currently logged in user as the assignee.  This is what I have been trying unsuccessfully.  

 

import com.atlassian.jira.component.ComponentAccessor

def userManager = ComponentAccessor.getUserManager()
def issueService = ComponentAccessor.issueService
def user = ComponentAccessor.jiraAuthenticationContext.loggedInUser

if (user != userManager.getUserByName("xyz"))
{

def validateAssignResult = issueService.validateAssign(user,issue.id, user.username)
if(validateAssignResult.isValid()){ issueService.assign(user,validateAssignResult) }
}

 

I look at what the step in the post functions return when I run it manually and it appears to have the correct information but the assignee doesn't update.  I am new to Jira and Groovy so any help will be appreciated.

2 answers

0 votes
Payne
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.
May 05, 2020

Your code works fine for me in the Script Console (though note in your second listing you define User with a capital "U" and then use it with a lowercase "u"; they should match). Perhaps your post function should be moved up/down in the list of post functions?

After I fixed the case of the U it is logging teh change to history but not actually changing the assignee.  I've moved it around in the post function order and that doesn't seem to change anything.  I have an update change history step and an re-index step in the post function.  It is currently first in the postfunction order.  Code is below

import com.atlassian.jira.component.ComponentAccessor

def userManager = ComponentAccessor.getUserManager()
def issueService = ComponentAccessor.issueService
def user = ComponentAccessor.jiraAuthenticationContext?.getLoggedInUser()


if (user != userManager.getUserByName("SA-PItseJiraAdmin"))
{
def validateAssignResult = issueService.validateAssign(user,issue.id,user.username)
if(validateAssignResult.isValid()){issueService.assign(user,validateAssignResult)}

}

So I have this working with minimal testing -  

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
def userManager = ComponentAccessor.getUserManager()
def User = ComponentAccessor.jiraAuthenticationContext?.getLoggedInUser()

//def Issue issue = issue
if (User != userManager.getUserByName("xyz"))
{
issue.assignee = User
}

 

 

But this does not-

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
def issueService = ComponentAccessor.issueService
def userManager = ComponentAccessor.getUserManager()
def User = ComponentAccessor.jiraAuthenticationContext?.getLoggedInUser()

//def Issue issue = issue
if (User != userManager.getUserByName("xyz"))
{

def validateAssignResult = issueService.validateAssign(user,issue.id, user.username)
if(validateAssignResult.isValid()){ issueService.assign(user,validateAssignResult) }
}

 

 

So it would appear that my (validateAssignResult.isValid()) is failing.

Is this a check that is bestPractice?  It seems to me that it would be.  Why is it failing? 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events