ScriptRunner/Groovy - Retrieve all saved filters and edit them

elie_g August 3, 2017

Hi!

I would like to know if it is possible to retrieve all saved filters and edit each of them using a function like collect or each.

Thanks!

3 answers

1 accepted

2 votes
Answer accepted
Henning Tietgens
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.
August 4, 2017

Hi,

yes by using the SearchRequestService (ComponentAccessor.getComponent(SearchRequestService)) you can retrieve filers, update and delete them.

If you want to retrieve all filters existing in the system you first have to retrieve all users (using the UserManager or UserUtil) and then retrieve all filters of each user using SearchRequestService.getOwnedFilters(). For the SearchRequest elements of the result you can use SearchRequest .query.queryString to get the JQL query. You can modify the SearchRequest and use SearchRequestService.updateFilter() to save the modifications.

Henning

elie_g August 4, 2017

Thanks Henning!

With your help I've been able to update filters of a single user but I don't know how to retrieve all the users. I look at the methods of UserUtils and UserManager but the getAllUsers function is deprecated. Moreover, the description of getAllUser says that it retrieve the users I need, but I need all users without any exceptions.

So I assume I need to retrieve all users using JQL query but I dont have any idea of what JQL query would do the job.

Do you know how I can retrieve all the users?

This is what I've done so far:

def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def ctx = new JiraServiceContextImpl(user)
searchRequestService.getOwnedFilters(user).each{filter->
def nQuery = searcher.parseQuery(user, getNewQuery(filter.getQuery().toString())).getQuery()
filter.setQuery(nQuery)
searchRequestService.updateFilter(ctx, filter)
}
elie_g August 4, 2017

Nevermind I got it!

Using the global group, I did this to retrieve all users:

ComponentManager.getGroupManager().getUsersInGroup('jira-core-users').each {...}
Henning Tietgens
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.
August 6, 2017

Yes, that's a possibility if you have a group with all users. If it's a one-time job, you could use deprecated methods, too. Deprecated means you should replace this method in your code because it may go away in future releases. Or you could use the UserSearchService:

import com.atlassian.jira.bc.user.search.UserSearchParams
import com.atlassian.jira.bc.user.search.UserSearchService
import com.atlassian.jira.component.ComponentAccessor

def userSearchService = ComponentAccessor.getComponent(UserSearchService)
def userSearchParams = new UserSearchParams.Builder()
.allowEmptyQuery(true)
.ignorePermissionCheck(true)
.maxResults(10000)
.build()
def allUsers = userSearchService.findUsers("", userSearchParams)

Just use a number higher than the number of your user for maxResults.

Henning

0 votes
Fredrik Forsberg
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!
November 11, 2022

This post (with scriptrunner code example) helped me. 
https://blog.isostech.com/searching-all-jira-filters-for-a-specific-string

0 votes
Diana
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.
October 18, 2022

hi @elie_g 

This might be a long shot, but by any chance could you share your full script? I've been trying to achieve the exact same thing, and follow the suggestions, but no luck. I was hoping to see maybe by each line where mine is wrong in comparison to yours if you still have it?

Thanks!

Fredrik Forsberg
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!
November 11, 2022

Diana - this post (with code example) helped me:
https://blog.isostech.com/searching-all-jira-filters-for-a-specific-string

Like Diana likes this
elie_g November 14, 2022

Hi @Diana Gorv ,

Unfortunately, I don't work at the same place anymore so I don't have access to the script I had made. However, if you can share your script here maybe I or someone will be able to help you.

Diana
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.
November 14, 2022

Hi @elie_g  thanks for replying back!

I have my script here in another question: https://community.atlassian.com/t5/Adaptavist-questions/How-do-I-bulk-edit-saved-filters-in-ScriptRunner/qaq-p/2141723

But I had thrown in the towel on this one. Although I was able to identify filters, I can't seem to make bulk edit. My team has decided to manually edit. But if others know, it would be a nice to have at this point.

Thanks!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events