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: 

Set users timezone based on LDAP?

Greg Hoggarth
Contributor
April 2, 2014

Is it possible to automatically set users timezones using information imported from an LDAP server?

Or alternatively is there any way for a jira admin to set the timezones of other users?

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

2 votes
Answer accepted
Boris Georgiev [Appfire]
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 Champions.
April 2, 2014

You can not set locale through the UI as far as I know, but you can do it through the API using the following groovy script (you can run it with script runner add-on)

import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.user.preferences.ExtendedPreferences;
import com.atlassian.jira.user.preferences.PreferenceKeys;
import com.atlassian.jira.user.ApplicationUser;

ApplicationUser user = ComponentAccessor.getUserManager().getUserByName("sampleuser");
ExtendedPreferences prefs = ComponentAccessor.getUserPreferencesManager().getExtendedPreferences(user);
prefs.setString(PreferenceKeys.USER_TIMEZONE, "PST");

Greg Hoggarth
Contributor
April 3, 2014

That sounds like what I want to be doing. How can I quickly apply timezones to a list of users, rather than one at a time? Would I just need to copy and paste the final 3 lines over and over again and change "sampleuser" to a different string, or could I construct an array of the user names, then have a loop?

Boris Georgiev [Appfire]
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 Champions.
April 3, 2014

You can use array like that:

import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.user.preferences.ExtendedPreferences;
import com.atlassian.jira.user.preferences.PreferenceKeys;
import com.atlassian.jira.user.ApplicationUser;
 
def users = ["user1", "user2", "user3"]
users.each {userName ->

   ApplicationUser user =     ComponentAccessor.getUserManager().getUserByName(userName);
   ExtendedPreferences prefs =    ComponentAccessor.getUserPreferencesManager().getExtendedPreferences(user);
   prefs.setString(PreferenceKeys.USER_TIMEZONE, "PST");
}

Like Craig Castle-Mead likes this
Greg Hoggarth
Contributor
April 3, 2014

Thanks!

10char

Craig Castle-Mead
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 Champions.
October 9, 2022

This post just came in handy - 8 years later!

NB: the "users.each {userName ->" looks like it was URL encoded on paste/save and should be "userName ->"


CCM