revert some changes to groups V2 that will break external modules, with no special gain
							parent
							
								
									0d76635113
								
							
						
					
					
						commit
						a61b5d5d38
					
				|  | @ -1334,7 +1334,7 @@ namespace OpenSim.Groups | |||
| 
 | ||||
|         public List<DirGroupsReplyData> FindGroups(IClientAPI remoteClient, string query) | ||||
|         { | ||||
|             return m_groupData.FindGroups(GetRequestingAgentID(remoteClient), query); | ||||
|             return m_groupData.FindGroups(remoteClient.AgentId.ToString(), query); | ||||
|         } | ||||
| 
 | ||||
|         #endregion | ||||
|  |  | |||
|  | @ -246,9 +246,9 @@ namespace OpenSim.Groups | |||
|             return null; | ||||
|         } | ||||
| 
 | ||||
|         public List<DirGroupsReplyData> FindGroups(UUID RequestingAgentID, string search) | ||||
|         public List<DirGroupsReplyData> FindGroups(string RequestingAgentIDstr, string search) | ||||
|         { | ||||
|             return m_LocalGroupsConnector.FindGroups(RequestingAgentID, search); | ||||
|             return m_LocalGroupsConnector.FindGroups(RequestingAgentIDstr, search); | ||||
|         } | ||||
| 
 | ||||
|         public List<GroupMembersData> GetGroupMembers(string RequestingAgentID, UUID GroupID) | ||||
|  |  | |||
|  | @ -39,7 +39,7 @@ namespace OpenSim.Groups | |||
|         bool UpdateGroup(string RequestingAgentID, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, | ||||
|             bool openEnrollment, bool allowPublish, bool maturePublish, out string reason); | ||||
|         ExtendedGroupRecord GetGroupRecord(string RequestingAgentID, UUID GroupID, string GroupName); | ||||
|         List<DirGroupsReplyData> FindGroups(UUID RequestingAgentID, string search); | ||||
|         List<DirGroupsReplyData> FindGroups(string RequestingAgentIDstr, string search); | ||||
|         List<GroupMembersData> GetGroupMembers(string RequestingAgentID, UUID GroupID); | ||||
| 
 | ||||
|         bool AddGroupRole(string RequestingAgentID, UUID groupID, UUID roleID, string name, string description, string title, ulong powers, out string reason); | ||||
|  |  | |||
|  | @ -173,9 +173,9 @@ namespace OpenSim.Groups | |||
|             return null; | ||||
|         } | ||||
| 
 | ||||
|         public List<DirGroupsReplyData> FindGroups(UUID RequestingAgentID, string search) | ||||
|         public List<DirGroupsReplyData> FindGroups(string RequestingAgentIDstr, string search) | ||||
|         { | ||||
|             return m_GroupsService.FindGroups(RequestingAgentID, search); | ||||
|             return m_GroupsService.FindGroups(RequestingAgentIDstr, search); | ||||
|         } | ||||
| 
 | ||||
|         public List<GroupMembersData> GetGroupMembers(string RequestingAgentID, UUID GroupID) | ||||
|  |  | |||
|  | @ -153,7 +153,7 @@ namespace OpenSim.Groups | |||
|             return GroupsDataUtils.GroupRecord((Dictionary<string, object>)ret["RESULT"]); | ||||
|         } | ||||
| 
 | ||||
|         public List<DirGroupsReplyData> FindGroups(UUID RequestingAgentID, string query) | ||||
|         public List<DirGroupsReplyData> FindGroups(string RequestingAgentIDstr, string query) | ||||
|         { | ||||
|             List<DirGroupsReplyData> hits = new List<DirGroupsReplyData>(); | ||||
|             if (string.IsNullOrEmpty(query)) | ||||
|  | @ -161,7 +161,7 @@ namespace OpenSim.Groups | |||
| 
 | ||||
|             Dictionary<string, object> sendData = new Dictionary<string, object>(); | ||||
|             sendData["Query"] = query; | ||||
|             sendData["RequestingAgentID"] = RequestingAgentID.ToString(); | ||||
|             sendData["RequestingAgentID"] = RequestingAgentIDstr; | ||||
| 
 | ||||
|             Dictionary<string, object> ret = MakeRequest("FINDGROUPS", sendData); | ||||
| 
 | ||||
|  |  | |||
|  | @ -192,10 +192,10 @@ namespace OpenSim.Groups | |||
|             }); | ||||
|         } | ||||
| 
 | ||||
|         public List<DirGroupsReplyData> FindGroups(UUID RequestingAgentID, string search) | ||||
|         public List<DirGroupsReplyData> FindGroups(string RequestingAgentIDstr, string search) | ||||
|         { | ||||
|             // TODO! | ||||
|             return m_GroupsService.FindGroups(RequestingAgentID, search); | ||||
|             return m_GroupsService.FindGroups(RequestingAgentIDstr, search); | ||||
|         } | ||||
| 
 | ||||
|         public bool AddAgentToGroup(string RequestingAgentID, string AgentID, UUID GroupID, UUID RoleID, string token, out string reason) | ||||
|  |  | |||
|  | @ -769,7 +769,7 @@ namespace OpenSim.Groups | |||
|             if (!request.ContainsKey("RequestingAgentID") || !request.ContainsKey("Query")) | ||||
|                 NullResult(result, "Bad network data"); | ||||
| 
 | ||||
|             List<DirGroupsReplyData> hits = m_GroupsService.FindGroups(new UUID(request["RequestingAgentID"].ToString()), request["Query"].ToString()); | ||||
|             List<DirGroupsReplyData> hits = m_GroupsService.FindGroups(request["RequestingAgentID"].ToString(), request["Query"].ToString()); | ||||
| 
 | ||||
|             if (hits == null || (hits != null && hits.Count == 0)) | ||||
|                 NullResult(result, "No hits"); | ||||
|  |  | |||
|  | @ -216,7 +216,7 @@ namespace OpenSim.Groups | |||
|             return _GroupDataToRecord(data); | ||||
|         } | ||||
| 
 | ||||
|         public List<DirGroupsReplyData> FindGroups(UUID RequestingAgentID, string search) | ||||
|         public List<DirGroupsReplyData> FindGroups(string RequestingAgentID, string search) | ||||
|         { | ||||
|             List<DirGroupsReplyData> groups = new List<DirGroupsReplyData>(); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 UbitUmarov
						UbitUmarov