123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185 |
- /*
- * 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;
- using System.Collections.Generic;
- using System.Reflection;
- using System.Text;
- using Nwc.XmlRpc;
- using log4net;
- using Mono.Addins;
- using Nini.Config;
- using OpenMetaverse;
- using OpenMetaverse.StructuredData;
- using OpenSim.Framework;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Services.Interfaces;
- namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
- {
- [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "XmlRpcGroupsServicesConnectorModule")]
- public class XmlRpcGroupsServicesConnectorModule : ISharedRegionModule, IGroupsServicesConnector
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private bool m_debugEnabled = false;
- public const GroupPowers DefaultEveryonePowers
- = GroupPowers.AllowSetHome
- | GroupPowers.Accountable
- | GroupPowers.JoinChat
- | GroupPowers.AllowVoiceChat
- | GroupPowers.ReceiveNotices
- | GroupPowers.StartProposal
- | GroupPowers.VoteOnProposal;
- // Would this be cleaner as (GroupPowers)ulong.MaxValue?
- public const GroupPowers DefaultOwnerPowers
- = GroupPowers.Accountable
- | GroupPowers.AllowEditLand
- | GroupPowers.AllowFly
- | GroupPowers.AllowLandmark
- | GroupPowers.AllowRez
- | GroupPowers.AllowSetHome
- | GroupPowers.AllowVoiceChat
- | GroupPowers.AssignMember
- | GroupPowers.AssignMemberLimited
- | GroupPowers.ChangeActions
- | GroupPowers.ChangeIdentity
- | GroupPowers.ChangeMedia
- | GroupPowers.ChangeOptions
- | GroupPowers.CreateRole
- | GroupPowers.DeedObject
- | GroupPowers.DeleteRole
- | GroupPowers.Eject
- | GroupPowers.FindPlaces
- | GroupPowers.Invite
- | GroupPowers.JoinChat
- | GroupPowers.LandChangeIdentity
- | GroupPowers.LandDeed
- | GroupPowers.LandDivideJoin
- | GroupPowers.LandEdit
- | GroupPowers.LandEjectAndFreeze
- | GroupPowers.LandGardening
- | GroupPowers.LandManageAllowed
- | GroupPowers.LandManageBanned
- | GroupPowers.LandManagePasses
- | GroupPowers.LandOptions
- | GroupPowers.LandRelease
- | GroupPowers.LandSetSale
- | GroupPowers.ModerateChat
- | GroupPowers.ObjectManipulate
- | GroupPowers.ObjectSetForSale
- | GroupPowers.ReceiveNotices
- | GroupPowers.RemoveMember
- | GroupPowers.ReturnGroupOwned
- | GroupPowers.ReturnGroupSet
- | GroupPowers.ReturnNonGroup
- | GroupPowers.RoleProperties
- | GroupPowers.SendNotices
- | GroupPowers.SetLandingPoint
- | GroupPowers.StartProposal
- | GroupPowers.VoteOnProposal;
- private bool m_connectorEnabled = false;
- private string m_groupsServerURI = string.Empty;
- private bool m_disableKeepAlive = true;
- private string m_groupReadKey = string.Empty;
- private string m_groupWriteKey = string.Empty;
- private IUserAccountService m_accountService = null;
- private ExpiringCache<string, XmlRpcResponse> m_memoryCache;
- private int m_cacheTimeout = 30;
- // Used to track which agents are have dropped from a group chat session
- // Should be reset per agent, on logon
- // TODO: move this to Flotsam XmlRpc Service
- // SessionID, List<AgentID>
- private Dictionary<UUID, List<UUID>> m_groupsAgentsDroppedFromChatSession = new Dictionary<UUID, List<UUID>>();
- private Dictionary<UUID, List<UUID>> m_groupsAgentsInvitedToChatSession = new Dictionary<UUID, List<UUID>>();
- #region Region Module interfaceBase Members
- public string Name
- {
- get { return "XmlRpcGroupsServicesConnector"; }
- }
- // this module is not intended to be replaced, but there should only be 1 of them.
- public Type ReplaceableInterface
- {
- get { return null; }
- }
- public void Initialise(IConfigSource config)
- {
- IConfig groupsConfig = config.Configs["Groups"];
- if (groupsConfig == null)
- {
- // Do not run this module by default.
- return;
- }
- else
- {
- // if groups aren't enabled, we're not needed.
- // if we're not specified as the connector to use, then we're not wanted
- if ((groupsConfig.GetBoolean("Enabled", false) == false)
- || (groupsConfig.GetString("ServicesConnectorModule", "XmlRpcGroupsServicesConnector") != Name))
- {
- m_connectorEnabled = false;
- return;
- }
- m_log.DebugFormat("[XMLRPC-GROUPS-CONNECTOR]: Initializing {0}", this.Name);
- m_groupsServerURI = groupsConfig.GetString("GroupsServerURI", string.Empty);
- if (string.IsNullOrEmpty(m_groupsServerURI))
- {
- m_log.ErrorFormat("Please specify a valid URL for GroupsServerURI in OpenSim.ini, [Groups]");
- m_connectorEnabled = false;
- return;
- }
- m_disableKeepAlive = groupsConfig.GetBoolean("XmlRpcDisableKeepAlive", true);
- m_groupReadKey = groupsConfig.GetString("XmlRpcServiceReadKey", string.Empty);
- m_groupWriteKey = groupsConfig.GetString("XmlRpcServiceWriteKey", string.Empty);
- m_cacheTimeout = groupsConfig.GetInt("GroupsCacheTimeout", 30);
- if (m_cacheTimeout == 0)
- {
- m_log.WarnFormat("[XMLRPC-GROUPS-CONNECTOR]: Groups Cache Disabled.");
- }
- else
- {
- m_log.InfoFormat("[XMLRPC-GROUPS-CONNECTOR]: Groups Cache Timeout set to {0}.", m_cacheTimeout);
- }
- m_debugEnabled = groupsConfig.GetBoolean("DebugEnabled", false);
- // If we got all the config options we need, lets start'er'up
- m_memoryCache = new ExpiringCache<string, XmlRpcResponse>();
- m_connectorEnabled = true;
- }
- }
- public void Close()
- {
- }
- public void AddRegion(OpenSim.Region.Framework.Scenes.Scene scene)
- {
- if (m_connectorEnabled)
- {
- if (m_accountService == null)
- {
- m_accountService = scene.UserAccountService;
- }
- scene.RegisterModuleInterface<IGroupsServicesConnector>(this);
- }
- }
- public void RemoveRegion(OpenSim.Region.Framework.Scenes.Scene scene)
- {
- if (scene.RequestModuleInterface<IGroupsServicesConnector>() == this)
- {
- scene.UnregisterModuleInterface<IGroupsServicesConnector>(this);
- }
- }
- public void RegionLoaded(OpenSim.Region.Framework.Scenes.Scene scene)
- {
- // TODO: May want to consider listenning for Agent Connections so we can pre-cache group info
- // scene.EventManager.OnNewClient += OnNewClient;
- }
- #endregion
- #region ISharedRegionModule Members
- public void PostInitialise()
- {
- // NoOp
- }
- #endregion
- #region IGroupsServicesConnector Members
- /// <summary>
- /// Create a Group, including Everyone and Owners Role, place FounderID in both groups, select Owner as selected role, and newly created group as agent's active role.
- /// </summary>
- public UUID CreateGroup(UUID requestingAgentID, string name, string charter, bool showInList, UUID insigniaID,
- int membershipFee, bool openEnrollment, bool allowPublish,
- bool maturePublish, UUID founderID)
- {
- UUID GroupID = UUID.Random();
- UUID OwnerRoleID = UUID.Random();
- Hashtable param = new Hashtable();
- param["GroupID"] = GroupID.ToString();
- param["Name"] = name;
- param["Charter"] = charter;
- param["ShowInList"] = showInList == true ? 1 : 0;
- param["InsigniaID"] = insigniaID.ToString();
- param["MembershipFee"] = membershipFee;
- param["OpenEnrollment"] = openEnrollment == true ? 1 : 0;
- param["AllowPublish"] = allowPublish == true ? 1 : 0;
- param["MaturePublish"] = maturePublish == true ? 1 : 0;
- param["FounderID"] = founderID.ToString();
- param["EveryonePowers"] = ((ulong)DefaultEveryonePowers).ToString();
- param["OwnerRoleID"] = OwnerRoleID.ToString();
- param["OwnersPowers"] = ((ulong)DefaultOwnerPowers).ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.createGroup", param);
- if (respData.Contains("error"))
- {
- // UUID is not nullable
- return UUID.Zero;
- }
- return UUID.Parse((string)respData["GroupID"]);
- }
- public void UpdateGroup(UUID requestingAgentID, UUID groupID, string charter, bool showInList,
- UUID insigniaID, int membershipFee, bool openEnrollment,
- bool allowPublish, bool maturePublish)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = groupID.ToString();
- param["Charter"] = charter;
- param["ShowInList"] = showInList == true ? 1 : 0;
- param["InsigniaID"] = insigniaID.ToString();
- param["MembershipFee"] = membershipFee;
- param["OpenEnrollment"] = openEnrollment == true ? 1 : 0;
- param["AllowPublish"] = allowPublish == true ? 1 : 0;
- param["MaturePublish"] = maturePublish == true ? 1 : 0;
- XmlRpcCall(requestingAgentID, "groups.updateGroup", param);
- }
- public void AddGroupRole(UUID requestingAgentID, UUID groupID, UUID roleID, string name, string description,
- string title, ulong powers)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = groupID.ToString();
- param["RoleID"] = roleID.ToString();
- param["Name"] = name;
- param["Description"] = description;
- param["Title"] = title;
- param["Powers"] = powers.ToString();
- XmlRpcCall(requestingAgentID, "groups.addRoleToGroup", param);
- }
- public void RemoveGroupRole(UUID requestingAgentID, UUID groupID, UUID roleID)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = groupID.ToString();
- param["RoleID"] = roleID.ToString();
- XmlRpcCall(requestingAgentID, "groups.removeRoleFromGroup", param);
- }
- public void UpdateGroupRole(UUID requestingAgentID, UUID groupID, UUID roleID, string name, string description,
- string title, ulong powers)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = groupID.ToString();
- param["RoleID"] = roleID.ToString();
- if (name != null)
- {
- param["Name"] = name;
- }
- if (description != null)
- {
- param["Description"] = description;
- }
- if (title != null)
- {
- param["Title"] = title;
- }
- param["Powers"] = powers.ToString();
- XmlRpcCall(requestingAgentID, "groups.updateGroupRole", param);
- }
- public GroupRecord GetGroupRecord(UUID requestingAgentID, UUID GroupID, string GroupName)
- {
- Hashtable param = new Hashtable();
- if (GroupID != UUID.Zero)
- {
- param["GroupID"] = GroupID.ToString();
- }
- if (!string.IsNullOrEmpty(GroupName))
- {
- param["Name"] = GroupName.ToString();
- }
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getGroup", param);
- if (respData.Contains("error"))
- {
- return null;
- }
- return GroupProfileHashtableToGroupRecord(respData);
- }
- public GroupProfileData GetMemberGroupProfile(UUID requestingAgentID, UUID GroupID, UUID AgentID)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = GroupID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getGroup", param);
- if (respData.Contains("error"))
- {
- // GroupProfileData is not nullable
- return new GroupProfileData();
- }
- GroupMembershipData MemberInfo = GetAgentGroupMembership(requestingAgentID, AgentID, GroupID);
- GroupProfileData MemberGroupProfile = GroupProfileHashtableToGroupProfileData(respData);
- if(MemberInfo != null)
- {
- MemberGroupProfile.MemberTitle = MemberInfo.GroupTitle;
- MemberGroupProfile.PowersMask = MemberInfo.GroupPowers;
- }
- return MemberGroupProfile;
- }
- public void SetAgentActiveGroup(UUID requestingAgentID, UUID AgentID, UUID GroupID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- XmlRpcCall(requestingAgentID, "groups.setAgentActiveGroup", param);
- }
- public void SetAgentActiveGroupRole(UUID requestingAgentID, UUID AgentID, UUID GroupID, UUID RoleID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- param["SelectedRoleID"] = RoleID.ToString();
- XmlRpcCall(requestingAgentID, "groups.setAgentGroupInfo", param);
- }
- public void SetAgentGroupInfo(UUID requestingAgentID, UUID AgentID, UUID GroupID, bool AcceptNotices, bool ListInProfile)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- param["AcceptNotices"] = AcceptNotices ? "1" : "0";
- param["ListInProfile"] = ListInProfile ? "1" : "0";
- XmlRpcCall(requestingAgentID, "groups.setAgentGroupInfo", param);
- }
- public void AddAgentToGroupInvite(UUID requestingAgentID, UUID inviteID, UUID groupID, UUID roleID, UUID agentID)
- {
- Hashtable param = new Hashtable();
- param["InviteID"] = inviteID.ToString();
- param["AgentID"] = agentID.ToString();
- param["RoleID"] = roleID.ToString();
- param["GroupID"] = groupID.ToString();
- XmlRpcCall(requestingAgentID, "groups.addAgentToGroupInvite", param);
- }
- public GroupInviteInfo GetAgentToGroupInvite(UUID requestingAgentID, UUID inviteID)
- {
- Hashtable param = new Hashtable();
- param["InviteID"] = inviteID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getAgentToGroupInvite", param);
- if (respData.Contains("error"))
- {
- return null;
- }
- GroupInviteInfo inviteInfo = new GroupInviteInfo();
- inviteInfo.InviteID = inviteID;
- inviteInfo.GroupID = UUID.Parse((string)respData["GroupID"]);
- inviteInfo.RoleID = UUID.Parse((string)respData["RoleID"]);
- inviteInfo.AgentID = UUID.Parse((string)respData["AgentID"]);
- return inviteInfo;
- }
- public void RemoveAgentToGroupInvite(UUID requestingAgentID, UUID inviteID)
- {
- Hashtable param = new Hashtable();
- param["InviteID"] = inviteID.ToString();
- XmlRpcCall(requestingAgentID, "groups.removeAgentToGroupInvite", param);
- }
- public void AddAgentToGroup(UUID requestingAgentID, UUID AgentID, UUID GroupID, UUID RoleID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- param["RoleID"] = RoleID.ToString();
- XmlRpcCall(requestingAgentID, "groups.addAgentToGroup", param);
- }
- public void RemoveAgentFromGroup(UUID requestingAgentID, UUID AgentID, UUID GroupID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- XmlRpcCall(requestingAgentID, "groups.removeAgentFromGroup", param);
- }
- public void AddAgentToGroupRole(UUID requestingAgentID, UUID AgentID, UUID GroupID, UUID RoleID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- param["RoleID"] = RoleID.ToString();
- XmlRpcCall(requestingAgentID, "groups.addAgentToGroupRole", param);
- }
- public void RemoveAgentFromGroupRole(UUID requestingAgentID, UUID AgentID, UUID GroupID, UUID RoleID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- param["RoleID"] = RoleID.ToString();
- XmlRpcCall(requestingAgentID, "groups.removeAgentFromGroupRole", param);
- }
- public List<DirGroupsReplyData> FindGroups(UUID requestingAgentID, string search)
- {
- Hashtable param = new Hashtable();
- param["Search"] = search;
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.findGroups", param);
- List<DirGroupsReplyData> findings = new List<DirGroupsReplyData>();
- if (!respData.Contains("error"))
- {
- Hashtable results = (Hashtable)respData["results"];
- foreach (Hashtable groupFind in results.Values)
- {
- DirGroupsReplyData data = new DirGroupsReplyData();
- data.groupID = new UUID((string)groupFind["GroupID"]); ;
- data.groupName = (string)groupFind["Name"];
- data.members = int.Parse((string)groupFind["Members"]);
- // data.searchOrder = order;
- findings.Add(data);
- }
- }
- return findings;
- }
- public GroupMembershipData GetAgentGroupMembership(UUID requestingAgentID, UUID AgentID, UUID GroupID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getAgentGroupMembership", param);
- if (respData.Contains("error"))
- {
- return null;
- }
- GroupMembershipData data = HashTableToGroupMembershipData(respData);
- return data;
- }
- public GroupMembershipData GetAgentActiveMembership(UUID requestingAgentID, UUID AgentID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getAgentActiveMembership", param);
- if (respData.Contains("error"))
- {
- return null;
- }
- return HashTableToGroupMembershipData(respData);
- }
- public List<GroupMembershipData> GetAgentGroupMemberships(UUID requestingAgentID, UUID AgentID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getAgentGroupMemberships", param);
- List<GroupMembershipData> memberships = new List<GroupMembershipData>();
- if (!respData.Contains("error"))
- {
- foreach (object membership in respData.Values)
- {
- memberships.Add(HashTableToGroupMembershipData((Hashtable)membership));
- }
- }
- return memberships;
- }
- public List<GroupRolesData> GetAgentGroupRoles(UUID requestingAgentID, UUID AgentID, UUID GroupID)
- {
- Hashtable param = new Hashtable();
- param["AgentID"] = AgentID.ToString();
- param["GroupID"] = GroupID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getAgentRoles", param);
- List<GroupRolesData> Roles = new List<GroupRolesData>();
- if (respData.Contains("error"))
- {
- return Roles;
- }
- foreach (Hashtable role in respData.Values)
- {
- GroupRolesData data = new GroupRolesData();
- data.RoleID = new UUID((string)role["RoleID"]);
- data.Name = (string)role["Name"];
- data.Description = (string)role["Description"];
- data.Powers = ulong.Parse((string)role["Powers"]);
- data.Title = (string)role["Title"];
- Roles.Add(data);
- }
- return Roles;
- }
- public List<GroupRolesData> GetGroupRoles(UUID requestingAgentID, UUID GroupID)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = GroupID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getGroupRoles", param);
- List<GroupRolesData> Roles = new List<GroupRolesData>();
- if (respData.Contains("error"))
- {
- return Roles;
- }
- foreach (Hashtable role in respData.Values)
- {
- GroupRolesData data = new GroupRolesData();
- data.Description = (string)role["Description"];
- data.Members = int.Parse((string)role["Members"]);
- data.Name = (string)role["Name"];
- data.Powers = ulong.Parse((string)role["Powers"]);
- data.RoleID = new UUID((string)role["RoleID"]);
- data.Title = (string)role["Title"];
- Roles.Add(data);
- }
- return Roles;
- }
- public List<GroupMembersData> GetGroupMembers(UUID requestingAgentID, UUID GroupID)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = GroupID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getGroupMembers", param);
- List<GroupMembersData> members = new List<GroupMembersData>();
- if (respData.Contains("error"))
- {
- return members;
- }
- foreach (Hashtable membership in respData.Values)
- {
- GroupMembersData data = new GroupMembersData();
- data.AcceptNotices = ((string)membership["AcceptNotices"]) == "1";
- data.AgentID = new UUID((string)membership["AgentID"]);
- data.Contribution = int.Parse((string)membership["Contribution"]);
- data.IsOwner = ((string)membership["IsOwner"]) == "1";
- data.ListInProfile = ((string)membership["ListInProfile"]) == "1";
- data.AgentPowers = ulong.Parse((string)membership["AgentPowers"]);
- data.Title = (string)membership["Title"];
- if(membership.ContainsKey("OnlineStatus"))
- data.OnlineStatus = (string)membership["OnlineStatus"];
- members.Add(data);
- }
- return members;
- }
- public List<GroupRoleMembersData> GetGroupRoleMembers(UUID requestingAgentID, UUID GroupID)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = GroupID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getGroupRoleMembers", param);
- List<GroupRoleMembersData> members = new List<GroupRoleMembersData>();
- if (!respData.Contains("error"))
- {
- foreach (Hashtable membership in respData.Values)
- {
- GroupRoleMembersData data = new GroupRoleMembersData();
- data.MemberID = new UUID((string)membership["AgentID"]);
- data.RoleID = new UUID((string)membership["RoleID"]);
- members.Add(data);
- }
- }
- return members;
- }
- public List<GroupNoticeData> GetGroupNotices(UUID requestingAgentID, UUID GroupID)
- {
- Hashtable param = new Hashtable();
- param["GroupID"] = GroupID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getGroupNotices", param);
- List<GroupNoticeData> values = new List<GroupNoticeData>();
- if (!respData.Contains("error"))
- {
- foreach (Hashtable value in respData.Values)
- {
- GroupNoticeData data = new GroupNoticeData();
- data.NoticeID = UUID.Parse((string)value["NoticeID"]);
- data.Timestamp = uint.Parse((string)value["Timestamp"]);
- data.FromName = (string)value["FromName"];
- data.Subject = (string)value["Subject"];
- data.HasAttachment = false;
- data.AssetType = 0;
- values.Add(data);
- }
- }
- return values;
- }
- public GroupNoticeInfo GetGroupNotice(UUID requestingAgentID, UUID noticeID)
- {
- Hashtable param = new Hashtable();
- param["NoticeID"] = noticeID.ToString();
- Hashtable respData = XmlRpcCall(requestingAgentID, "groups.getGroupNotice", param);
- if (respData.Contains("error"))
- {
- return null;
- }
- GroupNoticeInfo data = new GroupNoticeInfo();
- data.GroupID = UUID.Parse((string)respData["GroupID"]);
- data.Message = (string)respData["Message"];
- data.BinaryBucket = Utils.HexStringToBytes((string)respData["BinaryBucket"], true);
- data.noticeData.NoticeID = UUID.Parse((string)respData["NoticeID"]);
- data.noticeData.Timestamp = uint.Parse((string)respData["Timestamp"]);
- data.noticeData.FromName = (string)respData["FromName"];
- data.noticeData.Subject = (string)respData["Subject"];
- data.noticeData.HasAttachment = false;
- data.noticeData.AssetType = 0;
- if (data.Message == null)
- {
- data.Message = string.Empty;
- }
- return data;
- }
- public void AddGroupNotice(UUID requestingAgentID, UUID groupID, UUID noticeID, string fromName, string subject, string message, byte[] binaryBucket)
- {
- string binBucket = OpenMetaverse.Utils.BytesToHexString(binaryBucket, "");
- Hashtable param = new Hashtable();
- param["GroupID"] = groupID.ToString();
- param["NoticeID"] = noticeID.ToString();
- param["FromName"] = fromName;
- param["Subject"] = subject;
- param["Message"] = message;
- param["BinaryBucket"] = binBucket;
- param["TimeStamp"] = ((uint)Util.UnixTimeSinceEpoch()).ToString();
- XmlRpcCall(requestingAgentID, "groups.addGroupNotice", param);
- }
- #endregion
- #region GroupSessionTracking
- public void ResetAgentGroupChatSessions(UUID agentID)
- {
- foreach (List<UUID> agentList in m_groupsAgentsDroppedFromChatSession.Values)
- {
- agentList.Remove(agentID);
- }
- }
- public bool hasAgentBeenInvitedToGroupChatSession(UUID agentID, UUID groupID)
- {
- // If we're tracking this group, and we can find them in the tracking, then they've been invited
- return m_groupsAgentsInvitedToChatSession.ContainsKey(groupID)
- && m_groupsAgentsInvitedToChatSession[groupID].Contains(agentID);
- }
- public bool hasAgentDroppedGroupChatSession(UUID agentID, UUID groupID)
- {
- // If we're tracking drops for this group,
- // and we find them, well... then they've dropped
- return m_groupsAgentsDroppedFromChatSession.ContainsKey(groupID)
- && m_groupsAgentsDroppedFromChatSession[groupID].Contains(agentID);
- }
- public void AgentDroppedFromGroupChatSession(UUID agentID, UUID groupID)
- {
- if (m_groupsAgentsDroppedFromChatSession.ContainsKey(groupID))
- {
- if (m_groupsAgentsInvitedToChatSession[groupID].Contains(agentID))
- m_groupsAgentsInvitedToChatSession[groupID].Remove(agentID);
- // If not in dropped list, add
- if (!m_groupsAgentsDroppedFromChatSession[groupID].Contains(agentID))
- m_groupsAgentsDroppedFromChatSession[groupID].Add(agentID);
- }
- }
- public void AgentInvitedToGroupChatSession(UUID agentID, UUID groupID)
- {
- // Add Session Status if it doesn't exist for this session
- CreateGroupChatSessionTracking(groupID);
- // If nessesary, remove from dropped list
- if (m_groupsAgentsDroppedFromChatSession[groupID].Contains(agentID))
- m_groupsAgentsDroppedFromChatSession[groupID].Remove(agentID);
- if (!m_groupsAgentsInvitedToChatSession[groupID].Contains(agentID))
- m_groupsAgentsInvitedToChatSession[groupID].Add(agentID);
- }
- private void CreateGroupChatSessionTracking(UUID groupID)
- {
- if (!m_groupsAgentsDroppedFromChatSession.ContainsKey(groupID))
- {
- m_groupsAgentsDroppedFromChatSession.Add(groupID, new List<UUID>());
- m_groupsAgentsInvitedToChatSession.Add(groupID, new List<UUID>());
- }
- }
- #endregion
- #region XmlRpcHashtableMarshalling
- private GroupProfileData GroupProfileHashtableToGroupProfileData(Hashtable groupProfile)
- {
- GroupProfileData group = new GroupProfileData();
- group.GroupID = UUID.Parse((string)groupProfile["GroupID"]);
- group.Name = (string)groupProfile["Name"];
- if (groupProfile["Charter"] != null)
- {
- group.Charter = (string)groupProfile["Charter"];
- }
- group.ShowInList = ((string)groupProfile["ShowInList"]) == "1";
- group.InsigniaID = UUID.Parse((string)groupProfile["InsigniaID"]);
- group.MembershipFee = int.Parse((string)groupProfile["MembershipFee"]);
- group.OpenEnrollment = ((string)groupProfile["OpenEnrollment"]) == "1";
- group.AllowPublish = ((string)groupProfile["AllowPublish"]) == "1";
- group.MaturePublish = ((string)groupProfile["MaturePublish"]) == "1";
- group.FounderID = UUID.Parse((string)groupProfile["FounderID"]);
- group.OwnerRole = UUID.Parse((string)groupProfile["OwnerRoleID"]);
- group.GroupMembershipCount = int.Parse((string)groupProfile["GroupMembershipCount"]);
- group.GroupRolesCount = int.Parse((string)groupProfile["GroupRolesCount"]);
- return group;
- }
- private GroupRecord GroupProfileHashtableToGroupRecord(Hashtable groupProfile)
- {
- GroupRecord group = new GroupRecord();
- group.GroupID = UUID.Parse((string)groupProfile["GroupID"]);
- group.GroupName = groupProfile["Name"].ToString();
- if (groupProfile["Charter"] != null)
- {
- group.Charter = (string)groupProfile["Charter"];
- }
- group.ShowInList = ((string)groupProfile["ShowInList"]) == "1";
- group.GroupPicture = UUID.Parse((string)groupProfile["InsigniaID"]);
- group.MembershipFee = int.Parse((string)groupProfile["MembershipFee"]);
- group.OpenEnrollment = ((string)groupProfile["OpenEnrollment"]) == "1";
- group.AllowPublish = ((string)groupProfile["AllowPublish"]) == "1";
- group.MaturePublish = ((string)groupProfile["MaturePublish"]) == "1";
- group.FounderID = UUID.Parse((string)groupProfile["FounderID"]);
- group.OwnerRoleID = UUID.Parse((string)groupProfile["OwnerRoleID"]);
- return group;
- }
- private static GroupMembershipData HashTableToGroupMembershipData(Hashtable respData)
- {
- GroupMembershipData data = new GroupMembershipData();
- data.AcceptNotices = ((string)respData["AcceptNotices"] == "1");
- data.Contribution = int.Parse((string)respData["Contribution"]);
- data.ListInProfile = ((string)respData["ListInProfile"] == "1");
- data.ActiveRole = new UUID((string)respData["SelectedRoleID"]);
- data.GroupTitle = (string)respData["Title"];
- data.GroupPowers = ulong.Parse((string)respData["GroupPowers"]);
- // Is this group the agent's active group
- data.GroupID = new UUID((string)respData["GroupID"]);
- UUID ActiveGroup = new UUID((string)respData["ActiveGroupID"]);
- data.Active = data.GroupID.Equals(ActiveGroup);
- data.AllowPublish = ((string)respData["AllowPublish"] == "1");
- if (respData["Charter"] != null)
- {
- data.Charter = (string)respData["Charter"];
- }
- data.FounderID = new UUID((string)respData["FounderID"]);
- data.GroupID = new UUID((string)respData["GroupID"]);
- data.GroupName = (string)respData["GroupName"];
- data.GroupPicture = new UUID((string)respData["InsigniaID"]);
- data.MaturePublish = ((string)respData["MaturePublish"] == "1");
- data.MembershipFee = int.Parse((string)respData["MembershipFee"]);
- data.OpenEnrollment = ((string)respData["OpenEnrollment"] == "1");
- data.ShowInList = ((string)respData["ShowInList"] == "1");
- return data;
- }
- #endregion
- /// <summary>
- /// Encapsulate the XmlRpc call to standardize security and error handling.
- /// </summary>
- private Hashtable XmlRpcCall(UUID requestingAgentID, string function, Hashtable param)
- {
- XmlRpcResponse resp = null;
- string CacheKey = null;
- // Only bother with the cache if it isn't disabled.
- if (m_cacheTimeout > 0)
- {
- if (!function.StartsWith("groups.get"))
- {
- // Any and all updates cause the cache to clear
- m_memoryCache.Clear();
- }
- else
- {
- StringBuilder sb = new StringBuilder(requestingAgentID + function);
- foreach (object key in param.Keys)
- {
- if (param[key] != null)
- {
- sb.AppendFormat(",{0}:{1}", key.ToString(), param[key].ToString());
- }
- }
- CacheKey = sb.ToString();
- m_memoryCache.TryGetValue(CacheKey, out resp);
- }
- }
- if (resp == null)
- {
- if (m_debugEnabled)
- m_log.DebugFormat("[XMLRPC-GROUPS-CONNECTOR]: Cache miss for key {0}", CacheKey);
- string UserService;
- UUID SessionID;
- GetClientGroupRequestID(requestingAgentID, out UserService, out SessionID);
- param.Add("RequestingAgentID", requestingAgentID.ToString());
- param.Add("RequestingAgentUserService", UserService);
- param.Add("RequestingSessionID", SessionID.ToString());
- param.Add("ReadKey", m_groupReadKey);
- param.Add("WriteKey", m_groupWriteKey);
- IList parameters = new ArrayList();
- parameters.Add(param);
- ConfigurableKeepAliveXmlRpcRequest req;
- req = new ConfigurableKeepAliveXmlRpcRequest(function, parameters, m_disableKeepAlive);
- try
- {
- resp = req.Send(m_groupsServerURI);
- }
- catch (Exception e)
- {
- m_log.ErrorFormat(
- "[XMLRPC-GROUPS-CONNECTOR]: An error has occured while attempting to access the XmlRpcGroups server method {0} at {1}: {2}",
- function, m_groupsServerURI, e.Message);
- if(m_debugEnabled)
- {
- m_log.ErrorFormat("[XMLRPC-GROUPS-CONNECTOR]: {0}", e.StackTrace);
- foreach (string ResponseLine in req.RequestResponse.Split(new string[] { Environment.NewLine }, StringSplitOptions.None))
- {
- m_log.ErrorFormat("[XMLRPC-GROUPS-CONNECTOR]: {0} ", ResponseLine);
- }
- foreach (string key in param.Keys)
- {
- m_log.WarnFormat("[XMLRPC-GROUPS-CONNECTOR]: {0} :: {1}", key, param[key].ToString());
- }
- }
- if ((m_cacheTimeout > 0) && (CacheKey != null))
- {
- m_memoryCache.AddOrUpdate(CacheKey, resp, 10.0);
- }
- Hashtable respData = new Hashtable();
- respData.Add("error", e.ToString());
- return respData;
- }
- if ((m_cacheTimeout > 0) && (CacheKey != null))
- {
- m_memoryCache.AddOrUpdate(CacheKey, resp, 10.0);
- }
- }
- if (resp.Value is Hashtable)
- {
- Hashtable respData = (Hashtable)resp.Value;
- if (respData.Contains("error") && !respData.Contains("succeed"))
- {
- LogRespDataToConsoleError(requestingAgentID, function, param, respData);
- }
- return respData;
- }
- m_log.ErrorFormat("[XMLRPC-GROUPS-CONNECTOR]: The XmlRpc server returned a {1} instead of a hashtable for {0}", function, resp.Value.GetType().ToString());
- if (resp.Value is ArrayList)
- {
- ArrayList al = (ArrayList)resp.Value;
- m_log.ErrorFormat("[XMLRPC-GROUPS-CONNECTOR]: Contains {0} elements", al.Count);
- foreach (object o in al)
- {
- m_log.ErrorFormat("[XMLRPC-GROUPS-CONNECTOR]: {0} :: {1}", o.GetType().ToString(), o.ToString());
- }
- }
- else
- {
- m_log.ErrorFormat("[XMLRPC-GROUPS-CONNECTOR]: Function returned: {0}", resp.Value.ToString());
- }
- Hashtable error = new Hashtable();
- error.Add("error", "invalid return value");
- return error;
- }
- private void LogRespDataToConsoleError(UUID requestingAgentID, string function, Hashtable param, Hashtable respData)
- {
- m_log.ErrorFormat(
- "[XMLRPC-GROUPS-CONNECTOR]: Error when calling {0} for {1} with params {2}. Response params are {3}",
- function, requestingAgentID, Util.PrettyFormatToSingleLine(param), Util.PrettyFormatToSingleLine(respData));
- }
- /// <summary>
- /// Group Request Tokens are an attempt to allow the groups service to authenticate
- /// requests.
- /// TODO: This broke after the big grid refactor, either find a better way, or discard this
- /// </summary>
- /// <param name="client"></param>
- /// <returns></returns>
- private void GetClientGroupRequestID(UUID AgentID, out string UserServiceURL, out UUID SessionID)
- {
- UserServiceURL = "";
- SessionID = UUID.Zero;
- // Need to rework this based on changes to User Services
- /*
- UserAccount userAccount = m_accountService.GetUserAccount(UUID.Zero,AgentID);
- if (userAccount == null)
- {
- // This should be impossible. If I've been passed a reference to a client
- // that client should be registered with the UserService. So something
- // is horribly wrong somewhere.
- m_log.WarnFormat("[GROUPS]: Could not find a UserServiceURL for {0}", AgentID);
- }
- else if (userProfile is ForeignUserProfileData)
- {
- // They aren't from around here
- ForeignUserProfileData fupd = (ForeignUserProfileData)userProfile;
- UserServiceURL = fupd.UserServerURI;
- SessionID = fupd.CurrentAgent.SessionID;
- }
- else
- {
- // They're a local user, use this:
- UserServiceURL = m_commManager.NetworkServersInfo.UserURL;
- SessionID = userProfile.CurrentAgent.SessionID;
- }
- */
- }
- }
- }
- namespace Nwc.XmlRpc
- {
- using System;
- using System.Collections;
- using System.IO;
- using System.Xml;
- using System.Net;
- using System.Text;
- using System.Reflection;
- /// <summary>Class supporting the request side of an XML-RPC transaction.</summary>
- public class ConfigurableKeepAliveXmlRpcRequest : XmlRpcRequest
- {
- private XmlRpcRequestSerializer _serializer = new XmlRpcRequestSerializer();
- private XmlRpcResponseDeserializer _deserializer = new XmlRpcResponseDeserializer();
- private bool _disableKeepAlive = true;
- public string RequestResponse = String.Empty;
- /// <summary>Instantiate an <c>XmlRpcRequest</c> for a specified method and parameters.</summary>
- /// <param name="methodName"><c>String</c> designating the <i>object.method</i> on the server the request
- /// should be directed to.</param>
- /// <param name="parameters"><c>ArrayList</c> of XML-RPC type parameters to invoke the request with.</param>
- public ConfigurableKeepAliveXmlRpcRequest(String methodName, IList parameters, bool disableKeepAlive)
- {
- MethodName = methodName;
- _params = parameters;
- _disableKeepAlive = disableKeepAlive;
- }
- /// <summary>Send the request to the server.</summary>
- /// <param name="url"><c>String</c> The url of the XML-RPC server.</param>
- /// <returns><c>XmlRpcResponse</c> The response generated.</returns>
- public XmlRpcResponse Send(String url)
- {
- HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
- if (request == null)
- throw new XmlRpcException(XmlRpcErrorCodes.TRANSPORT_ERROR,
- XmlRpcErrorCodes.TRANSPORT_ERROR_MSG + ": Could not create request with " + url);
- request.Method = "POST";
- request.ContentType = "text/xml";
- request.AllowWriteStreamBuffering = true;
- request.KeepAlive = !_disableKeepAlive;
- request.Timeout = 30000;
- using (Stream stream = request.GetRequestStream())
- {
- using (XmlTextWriter xml = new XmlTextWriter(stream, Encoding.ASCII))
- {
- _serializer.Serialize(xml, this);
- xml.Flush();
- }
- }
- XmlRpcResponse resp;
- using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
- {
- using (Stream s = response.GetResponseStream())
- {
- using (StreamReader input = new StreamReader(s))
- {
- string inputXml = input.ReadToEnd();
- try
- {
- resp = (XmlRpcResponse)_deserializer.Deserialize(inputXml);
- }
- catch (Exception e)
- {
- RequestResponse = inputXml;
- throw e;
- }
- }
- }
- }
- return resp;
- }
- }
- }
|