123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSimulator Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Threading;
- using System.Text;
- using OpenSim.Framework;
- using OpenSim.Region.Framework.Scenes;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Server.Base;
- using OpenSim.Services.Interfaces;
- using OpenMetaverse;
- using Mono.Addins;
- using log4net;
- using Nini.Config;
- namespace OpenSim.Groups
- {
- [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "GroupsServiceRemoteConnectorModule")]
- public class GroupsServiceRemoteConnectorModule : ISharedRegionModule, IGroupsServicesConnector
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private bool m_Enabled = false;
- private GroupsServiceRemoteConnector m_GroupsService;
- private IUserManagement m_UserManagement;
- private List<Scene> m_Scenes;
- private RemoteConnectorCacheWrapper m_CacheWrapper;
- #region constructors
- public GroupsServiceRemoteConnectorModule()
- {
- }
- public GroupsServiceRemoteConnectorModule(IConfigSource config, IUserManagement uman)
- {
- Init(config);
- m_UserManagement = uman;
- m_CacheWrapper = new RemoteConnectorCacheWrapper(m_UserManagement);
- }
- #endregion
- private void Init(IConfigSource config)
- {
- m_GroupsService = new GroupsServiceRemoteConnector(config);
- m_Scenes = new List<Scene>();
- }
- #region ISharedRegionModule
- public void Initialise(IConfigSource config)
- {
- IConfig groupsConfig = config.Configs["Groups"];
- if (groupsConfig == null)
- return;
- if ((groupsConfig.GetBoolean("Enabled", false) == false)
- || (groupsConfig.GetString("ServicesConnectorModule", string.Empty) != Name))
- {
- return;
- }
- Init(config);
- m_Enabled = true;
- m_log.DebugFormat("[Groups.RemoteConnector]: Initializing {0}", this.Name);
- }
- public string Name
- {
- get { return "Groups Remote Service Connector"; }
- }
- public Type ReplaceableInterface
- {
- get { return null; }
- }
- public void AddRegion(Scene scene)
- {
- if (!m_Enabled)
- return;
- m_log.DebugFormat("[Groups.RemoteConnector]: Registering {0} with {1}", this.Name, scene.RegionInfo.RegionName);
- scene.RegisterModuleInterface<IGroupsServicesConnector>(this);
- m_Scenes.Add(scene);
- }
- public void RemoveRegion(Scene scene)
- {
- if (!m_Enabled)
- return;
- scene.UnregisterModuleInterface<IGroupsServicesConnector>(this);
- m_Scenes.Remove(scene);
- }
- public void RegionLoaded(Scene scene)
- {
- if (!m_Enabled)
- return;
- if (m_UserManagement == null)
- {
- m_UserManagement = scene.RequestModuleInterface<IUserManagement>();
- m_CacheWrapper = new RemoteConnectorCacheWrapper(m_UserManagement);
- }
- }
- public void PostInitialise()
- {
- }
- public void Close()
- {
- }
- #endregion
- #region IGroupsServicesConnector
- public UUID CreateGroup(UUID RequestingAgentID, string name, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment,
- bool allowPublish, bool maturePublish, UUID founderID, out string reason)
- {
- m_log.DebugFormat("[Groups.RemoteConnector]: Creating group {0}", name);
- string r = string.Empty;
- UUID groupID = m_CacheWrapper.CreateGroup(RequestingAgentID, delegate
- {
- return m_GroupsService.CreateGroup(RequestingAgentID.ToString(), name, charter, showInList, insigniaID,
- membershipFee, openEnrollment, allowPublish, maturePublish, founderID, out r);
- });
- reason = r;
- return groupID;
- }
- public bool UpdateGroup(string RequestingAgentID, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee,
- bool openEnrollment, bool allowPublish, bool maturePublish, out string reason)
- {
- string r = string.Empty;
- bool success = m_CacheWrapper.UpdateGroup(groupID, delegate
- {
- return m_GroupsService.UpdateGroup(RequestingAgentID, groupID, charter, showInList, insigniaID, membershipFee, openEnrollment, allowPublish, maturePublish);
- });
- reason = r;
- return success;
- }
- public ExtendedGroupRecord GetGroupRecord(string RequestingAgentID, UUID GroupID, string GroupName)
- {
- if (GroupID == UUID.Zero && (GroupName == null || GroupName != null && GroupName == string.Empty))
- return null;
- return m_CacheWrapper.GetGroupRecord(RequestingAgentID,GroupID,GroupName, delegate
- {
- return m_GroupsService.GetGroupRecord(RequestingAgentID, GroupID, GroupName);
- });
- }
- public List<DirGroupsReplyData> FindGroups(string RequestingAgentIDstr, string search)
- {
- // TODO!
- return m_GroupsService.FindGroups(RequestingAgentIDstr, search);
- }
- public bool AddAgentToGroup(string RequestingAgentID, string AgentID, UUID GroupID, UUID RoleID, string token, out string reason)
- {
- string agentFullID = AgentID;
- m_log.DebugFormat("[Groups.RemoteConnector]: Add agent {0} to group {1}", agentFullID, GroupID);
- string r = string.Empty;
- bool success = m_CacheWrapper.AddAgentToGroup(RequestingAgentID, AgentID, GroupID, delegate
- {
- return m_GroupsService.AddAgentToGroup(RequestingAgentID, agentFullID, GroupID, RoleID, token, out r);
- });
- reason = r;
- return success;
- }
- public void RemoveAgentFromGroup(string RequestingAgentID, string AgentID, UUID GroupID)
- {
- m_CacheWrapper.RemoveAgentFromGroup(RequestingAgentID, AgentID, GroupID, delegate
- {
- m_GroupsService.RemoveAgentFromGroup(RequestingAgentID, AgentID, GroupID);
- });
- }
- public void SetAgentActiveGroup(string RequestingAgentID, string AgentID, UUID GroupID)
- {
- m_CacheWrapper.SetAgentActiveGroup(AgentID, delegate
- {
- return m_GroupsService.SetAgentActiveGroup(RequestingAgentID, AgentID, GroupID);
- });
- }
- public ExtendedGroupMembershipData GetAgentActiveMembership(string RequestingAgentID, string AgentID)
- {
- return m_CacheWrapper.GetAgentActiveMembership(AgentID, delegate
- {
- return m_GroupsService.GetMembership(RequestingAgentID, AgentID, UUID.Zero);
- });
- }
- public ExtendedGroupMembershipData GetAgentGroupMembership(string RequestingAgentID, string AgentID, UUID GroupID)
- {
- return m_CacheWrapper.GetAgentGroupMembership(AgentID, GroupID, delegate
- {
- return m_GroupsService.GetMembership(RequestingAgentID, AgentID, GroupID);
- });
- }
- public List<GroupMembershipData> GetAgentGroupMemberships(string RequestingAgentID, string AgentID)
- {
- return m_CacheWrapper.GetAgentGroupMemberships(AgentID, delegate
- {
- return m_GroupsService.GetMemberships(RequestingAgentID, AgentID);
- });
- }
- public List<GroupMembersData> GetGroupMembers(string RequestingAgentID, UUID GroupID)
- {
- return m_CacheWrapper.GetGroupMembers(RequestingAgentID, GroupID, delegate
- {
- return m_GroupsService.GetGroupMembers(RequestingAgentID, GroupID);
- });
- }
- public bool AddGroupRole(string RequestingAgentID, UUID groupID, UUID roleID, string name, string description, string title, ulong powers, out string reason)
- {
- string r = string.Empty;
- bool success = m_CacheWrapper.AddGroupRole(groupID, roleID, description, name, powers, title, delegate
- {
- return m_GroupsService.AddGroupRole(RequestingAgentID, groupID, roleID, name, description, title, powers, out r);
- });
- reason = r;
- return success;
- }
- public bool UpdateGroupRole(string RequestingAgentID, UUID groupID, UUID roleID, string name, string description, string title, ulong powers)
- {
- return m_CacheWrapper.UpdateGroupRole(groupID, roleID, name, description, title, powers, delegate
- {
- return m_GroupsService.UpdateGroupRole(RequestingAgentID, groupID, roleID, name, description, title, powers);
- });
- }
- public void RemoveGroupRole(string RequestingAgentID, UUID groupID, UUID roleID)
- {
- m_CacheWrapper.RemoveGroupRole(RequestingAgentID, groupID, roleID, delegate
- {
- m_GroupsService.RemoveGroupRole(RequestingAgentID, groupID, roleID);
- });
- }
- public List<GroupRolesData> GetGroupRoles(string RequestingAgentID, UUID GroupID)
- {
- return m_CacheWrapper.GetGroupRoles(RequestingAgentID, GroupID, delegate
- {
- return m_GroupsService.GetGroupRoles(RequestingAgentID, GroupID);
- });
- }
- public List<GroupRoleMembersData> GetGroupRoleMembers(string RequestingAgentID, UUID GroupID)
- {
- return m_CacheWrapper.GetGroupRoleMembers(RequestingAgentID, GroupID, delegate
- {
- return m_GroupsService.GetGroupRoleMembers(RequestingAgentID, GroupID);
- });
- }
- public void AddAgentToGroupRole(string RequestingAgentID, string AgentID, UUID GroupID, UUID RoleID)
- {
- m_CacheWrapper.AddAgentToGroupRole(RequestingAgentID, AgentID, GroupID, RoleID, delegate
- {
- return m_GroupsService.AddAgentToGroupRole(RequestingAgentID, AgentID, GroupID, RoleID);
- });
- }
- public void RemoveAgentFromGroupRole(string RequestingAgentID, string AgentID, UUID GroupID, UUID RoleID)
- {
- m_CacheWrapper.RemoveAgentFromGroupRole(RequestingAgentID, AgentID, GroupID, RoleID, delegate
- {
- return m_GroupsService.RemoveAgentFromGroupRole(RequestingAgentID, AgentID, GroupID, RoleID);
- });
- }
- public List<GroupRolesData> GetAgentGroupRoles(string RequestingAgentID, string AgentID, UUID GroupID)
- {
- return m_CacheWrapper.GetAgentGroupRoles(RequestingAgentID, AgentID, GroupID, delegate
- {
- return m_GroupsService.GetAgentGroupRoles(RequestingAgentID, AgentID, GroupID); ;
- });
- }
- public void SetAgentActiveGroupRole(string RequestingAgentID, string AgentID, UUID GroupID, UUID RoleID)
- {
- m_CacheWrapper.SetAgentActiveGroupRole(AgentID, GroupID, delegate
- {
- m_GroupsService.SetAgentActiveGroupRole(RequestingAgentID, AgentID, GroupID, RoleID);
- });
- }
- public void UpdateMembership(string RequestingAgentID, string AgentID, UUID GroupID, bool AcceptNotices, bool ListInProfile)
- {
- m_CacheWrapper.UpdateMembership(AgentID, GroupID, AcceptNotices, ListInProfile, delegate
- {
- m_GroupsService.UpdateMembership(RequestingAgentID, AgentID, GroupID, AcceptNotices, ListInProfile);
- });
- }
- public bool AddAgentToGroupInvite(string RequestingAgentID, UUID inviteID, UUID groupID, UUID roleID, string agentID)
- {
- return m_GroupsService.AddAgentToGroupInvite(RequestingAgentID, inviteID, groupID, roleID, agentID);
- }
- public GroupInviteInfo GetAgentToGroupInvite(string RequestingAgentID, UUID inviteID)
- {
- return m_GroupsService.GetAgentToGroupInvite(RequestingAgentID, inviteID);
- }
- public void RemoveAgentToGroupInvite(string RequestingAgentID, UUID inviteID)
- {
- m_GroupsService.RemoveAgentToGroupInvite(RequestingAgentID, inviteID);
- }
- public bool AddGroupNotice(string RequestingAgentID, UUID groupID, UUID noticeID, string fromName, string subject, string message,
- bool hasAttachment, byte attType, string attName, UUID attItemID, string attOwnerID)
- {
- GroupNoticeInfo notice = new GroupNoticeInfo();
- notice.GroupID = groupID;
- notice.Message = message;
- notice.noticeData = new ExtendedGroupNoticeData();
- notice.noticeData.AttachmentItemID = attItemID;
- notice.noticeData.AttachmentName = attName;
- notice.noticeData.AttachmentOwnerID = attOwnerID.ToString();
- notice.noticeData.AttachmentType = attType;
- notice.noticeData.FromName = fromName;
- notice.noticeData.HasAttachment = hasAttachment;
- notice.noticeData.NoticeID = noticeID;
- notice.noticeData.Subject = subject;
- notice.noticeData.Timestamp = (uint)Util.UnixTimeSinceEpoch();
- return m_CacheWrapper.AddGroupNotice(groupID, noticeID, notice, delegate
- {
- return m_GroupsService.AddGroupNotice(RequestingAgentID, groupID, noticeID, fromName, subject, message,
- hasAttachment, attType, attName, attItemID, attOwnerID);
- });
- }
- public GroupNoticeInfo GetGroupNotice(string RequestingAgentID, UUID noticeID)
- {
- return m_CacheWrapper.GetGroupNotice(noticeID, delegate
- {
- return m_GroupsService.GetGroupNotice(RequestingAgentID, noticeID);
- });
- }
- public List<ExtendedGroupNoticeData> GetGroupNotices(string RequestingAgentID, UUID GroupID)
- {
- return m_CacheWrapper.GetGroupNotices(GroupID, delegate
- {
- return m_GroupsService.GetGroupNotices(RequestingAgentID, GroupID);
- });
- }
- #endregion
- }
- }
|