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,556,869
Community Members
 
Community Events
184
Community Groups

Changing filter owner with groovy

Hello all, 

I am trying to change the owner of a filter, but I'm not being successful. Any idea why? Any validations that I need to do? Omitted all the imports for clarity. 

def decomUser= userManager.getUserByName("vescalante")
def targetUser = userManager.getUserByName("gcheung")
def loggedInUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()

// Reassign all filters
SearchRequestService searchRequestService = ComponentAccessor.getComponent(SearchRequestService.class)
def contextImpl = new JiraServiceContextImpl(decomUser)

Collection<SearchRequest> searchRequests = searchRequestService.getOwnedFilters(decomUser)

if(searchRequests.size() > 0) {
searchRequests.each { s ->
s.setOwner(targetUser)
searchRequestService.updateFilter(contextImpl, s)
}
} else {
commentText << "\n\n (/) User *_${decomUser.getName()}_* doesn't own any filters, no reassignment required."
}
log.warn(commentText)

2 answers

1 accepted

Got it. I had to validate the change. 

searchRequestService.validateFilterForChangeOwner(jiraServiceContextImpl, s)
if (jiraServiceContextImpl.errorCollection.hasAnyErrors()){
        log.error(iraServiceContextImpl.getErrorCollection())
}
else{
       s.setOwner(targetUser)
       searchRequestService.updateFilterOwner(jiraServiceContextImpl, loggedInUser, s)
}

 

Hi Vivian,

Can you please share the full script again?

Thanks in advanced,
Maitrey

2 votes
Brittany Wispell
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 03, 2018

Hey @Vivian Escalante

What version of ScriptRunner do you have? I believe you can do this with the built-in scripts Change dashboard or filter ownership. To get to the built-in scripts area you'll need to go to Add-ons > ScriptRunner > Built-in Scripts. Hope this helps! 

See below images. 

Screen Shot 2018-05-03 at 3.21.51 PM.png

Screen Shot 2018-05-03 at 3.22.03 PM.png

I'm trying to do this through a groovy script, but thank you. I'm aware this exists. I was able to figure it out! 

Just to throw out why the built-in script approach didn't work for me: it uses a user lookup for the From user field. If this was a free text box, it'd be better, but because it looks up usernames and only accepts a "valid" user, the built-in script is pretty useless when working with deactivated/deleted accounts.

Like # people like this

Hi @Vivian Escalante , did you get this to work with private filters? I get it to work if I share it before running the script but when its private I get this:

The filter is not shared with anyone. You cannot change the owner of private filters.

I know this is a old thread but I have been looking around and this was so close to what I need that I give it a go.

 

br Ole

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events