掲示板

How to get users associated with a team

13年前 に Shafia Kiran によって更新されました。

How to get users associated with a team

New Member 投稿: 12 参加年月日: 10/11/02 最新の投稿
Hello ,

i am trying to get users associated with a team. i get team id with the following code

List<Team> lstTeam = TeamLocalServiceUtil.getUserTeams(user.getUserId());

but i cannot get the list of users associated with specific team. please help me out.

regards
12年前 に Andy Harb によって更新されました。

RE: How to get users associated with a team

Junior Member 投稿: 66 参加年月日: 09/10/22 最新の投稿
Hi Shafia,

Did you find a solution to this? I need to do the same thing but can't seem to find a method to do this. The TeamUtil class does have a method called getUsers but since it is a persistence utility you can't access it directly from a jsp.

Thanks
Andy
thumbnail
11年前 に Jan Geißler によって更新されました。

RE: How to get users associated with a team

Liferay Master 投稿: 735 参加年月日: 11/07/05 最新の投稿
I know it's an old thread, but maybr this is going to help someone. Had the same Problem ;)


List<user> recruiter;
		try {
			Team team = TeamLocalServiceUtil.getTeam(getRecruiterTeamId());
			recruiter = UserLocalServiceUtil.getGroupUsers(team.getGroupId());
		} catch (SystemException e) {
			e.printStackTrace();
			return Collections.EMPTY_LIST;
		}
</user>


EDIT:

As it turns out, the Group is tells you in which Group the Team is, so THIS CODE WILL NOT WORK! It will fetch all Users associated with the Group the Team is in.
There is no build in function to retrieve all Users of a team.

Strange that there is no functionality built in to retrieve the User of a team. And also kind of annoying.
emoticon
emoticon

EDIT2:
http://issues.liferay.com/browse/LPS-30795
thumbnail
11年前 に Jan Geißler によって更新されました。

RE: How to get users associated with a team

Liferay Master 投稿: 735 参加年月日: 11/07/05 最新の投稿
Aeeehm.... Don't think so. We need to RETRIEVE the users, not to add Users....

Workaround:
Write a Custom Finder, with a Custom query in your Service Layer you need to get those Users. Not clean, not elegant, but working.
thumbnail
11年前 に Harish Kumar によって更新されました。

RE: How to get users associated with a team

Expert 投稿: 483 参加年月日: 10/07/31 最新の投稿
Ohhh my mistake
thumbnail
11年前 に Thomas Berg によって更新されました。

RE: How to get users associated with a team

Regular Member 投稿: 131 参加年月日: 09/09/07 最新の投稿
Since
UserLocalServiceUtil.getTeamUsers()

is not yet implemented (I'm using Liferay 6.1.1 CE GA2) I had to find another way to get users associated with teams.
Looking at portal/portal-web/docroot/html/portlet/sites_admin/edit_team_assignments_user.jsp, I managed to get a list of users with the following snippet:

LinkedHashMap<string, object> userParams = new LinkedHashMap<string, object>();
userParams.put("usersTeams", teamId);

List<user> teamUsers = UserLocalServiceUtil.search(companyId,
    null, WorkFlowConstants.STATUS_ANY, userParams, 
    QueryUtil.ALL_POS, QueryUtil.ALL_POS, (OrderByComparator) null);</user></string,></string,>


May not be the best way to do it but does not require servicebuilder or custom queries.

The Liferay docs suggest that, for performance reasons, it would be better to use the indexed version of UserLocalServiceUtil.search() but I haven't seen any examples of that version being used. If anyone has info about the indexed version, please share.

Anyway, hopefully someone will have use for this workaround while we wait for UserLocalServiceUtil.getTeamUsers() to be implemented.

Regards
Thomas
11年前 に Chris Doar によって更新されました。

RE: How to get users associated with a team

New Member 投稿: 2 参加年月日: 13/02/15 最新の投稿
Hi Thomas,

Thanks for that example. I just have a few questions with regards to it. I'm quite new to all this so I apologize if this all a little basic.

I've got a portlet that being deployed to a site within liferay. Within this I have a number of teams and some users assigned to the teams. What I am currently trying to do is get all the users in one of the teams (called co-ordinators). So, I've set up all of this in Liferay which has given me a siteId of 18002 (project) and a teamId of 18312 for the co-ordinators.

So, am I right in presuming that in your example the teamId added to the LinkedHashMap would be 18312 and that the companyId would be 18002 for the siteId?

I've also added some logging information so I can see what the code is doing. logger.info("user params " + userParams) gives user params {usersTeams=18312} and logger.info("User size" + teamUsers.size()); gives user size0. For some reason I dont seem to be returning any users for my team.

Cheers

Chris
thumbnail
11年前 に Thomas Berg によって更新されました。

RE: How to get users associated with a team

Regular Member 投稿: 131 参加年月日: 09/09/07 最新の投稿
Chris Doar:
So, am I right in presuming that in your example the teamId added to the LinkedHashMap would be 18312 and that the companyId would be 18002 for the siteId?

Well, not quite. You have to specify the companyId instead of the siteId:

long companyId = themeDisplay.getCompanyId();

The ThemeDisplay-object is available as an implicit object in your jsp if you've defined

&lt;%@ taglib uri="http://liferay.com/tld/theme" prefix="liferay-theme" %&gt;
<liferay-theme:defineobjects />


Another way to get it (for example in java-files) is
ThemeDisplay themeDisplay = (ThemeDisplay) request.getAttribute(WebKeys.THEME_DISPLAY)

where request is an implementation of javax.portlet.PortletRequest (i.e., RenderRequest, ResourceRequest etc.)

Cheers
Thomas
11年前 に Chris Doar によって更新されました。

RE: How to get users associated with a team

New Member 投稿: 2 参加年月日: 13/02/15 最新の投稿
Ah ok. Cheers for all that. I'll have a go and see what happens.

Thanks for your help.

Chris
9年前 に Beppo Ivel によって更新されました。

RE: How to get users associated with a team

Regular Member 投稿: 112 参加年月日: 14/04/09 最新の投稿
Is the way that Thomas Berg mentioned the most feasible way to get the users of a Team? And is it possible to get the team object by the name of the team?