GroupsModule.cs 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Collections.Generic;
  29. using System.Reflection;
  30. using System.Timers;
  31. using log4net;
  32. using Mono.Addins;
  33. using Nini.Config;
  34. using OpenMetaverse;
  35. using OpenMetaverse.StructuredData;
  36. using OpenSim.Framework;
  37. using OpenSim.Region.Framework.Interfaces;
  38. using OpenSim.Region.Framework.Scenes;
  39. using OpenSim.Services.Interfaces;
  40. using PermissionMask = OpenSim.Framework.PermissionMask;
  41. namespace OpenSim.Groups
  42. {
  43. [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "GroupsModule")]
  44. public class GroupsModule : ISharedRegionModule, IGroupsModule
  45. {
  46. private static readonly ILog m_log =
  47. LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  48. private List<Scene> m_sceneList = new List<Scene>();
  49. private IMessageTransferModule m_msgTransferModule = null;
  50. private IGroupsServicesConnector m_groupData = null;
  51. private IUserManagement m_UserManagement;
  52. // Configuration settings
  53. private bool m_groupsEnabled = false;
  54. private bool m_groupNoticesEnabled = true;
  55. private bool m_debugEnabled = false;
  56. private int m_levelGroupCreate = 0;
  57. #region Region Module interfaceBase Members
  58. public void Initialise(IConfigSource config)
  59. {
  60. IConfig groupsConfig = config.Configs["Groups"];
  61. if (groupsConfig == null)
  62. {
  63. // Do not run this module by default.
  64. return;
  65. }
  66. else
  67. {
  68. m_groupsEnabled = groupsConfig.GetBoolean("Enabled", false);
  69. if (!m_groupsEnabled)
  70. {
  71. return;
  72. }
  73. if (groupsConfig.GetString("Module", "Default") != Name)
  74. {
  75. m_groupsEnabled = false;
  76. return;
  77. }
  78. m_log.InfoFormat("[Groups]: Initializing {0}", this.Name);
  79. m_groupNoticesEnabled = groupsConfig.GetBoolean("NoticesEnabled", true);
  80. m_debugEnabled = groupsConfig.GetBoolean("DebugEnabled", false);
  81. m_levelGroupCreate = groupsConfig.GetInt("LevelGroupCreate", 0);
  82. }
  83. }
  84. public void AddRegion(Scene scene)
  85. {
  86. if (m_groupsEnabled)
  87. {
  88. scene.RegisterModuleInterface<IGroupsModule>(this);
  89. scene.AddCommand(
  90. "Debug",
  91. this,
  92. "debug groups verbose",
  93. "debug groups verbose <true|false>",
  94. "This setting turns on very verbose groups debugging",
  95. HandleDebugGroupsVerbose);
  96. }
  97. }
  98. private void HandleDebugGroupsVerbose(object modules, string[] args)
  99. {
  100. if (args.Length < 4)
  101. {
  102. MainConsole.Instance.Output("Usage: debug groups verbose <true|false>");
  103. return;
  104. }
  105. bool verbose = false;
  106. if (!bool.TryParse(args[3], out verbose))
  107. {
  108. MainConsole.Instance.Output("Usage: debug groups verbose <true|false>");
  109. return;
  110. }
  111. m_debugEnabled = verbose;
  112. MainConsole.Instance.Output("{0} verbose logging set to {1}", Name, m_debugEnabled);
  113. }
  114. public void RegionLoaded(Scene scene)
  115. {
  116. if (!m_groupsEnabled)
  117. return;
  118. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  119. if (m_groupData == null)
  120. {
  121. m_groupData = scene.RequestModuleInterface<IGroupsServicesConnector>();
  122. // No Groups Service Connector, then nothing works...
  123. if (m_groupData == null)
  124. {
  125. m_groupsEnabled = false;
  126. m_log.Error("[Groups]: Could not get IGroupsServicesConnector");
  127. RemoveRegion(scene);
  128. return;
  129. }
  130. }
  131. if (m_msgTransferModule == null)
  132. {
  133. m_msgTransferModule = scene.RequestModuleInterface<IMessageTransferModule>();
  134. // No message transfer module, no notices, group invites, rejects, ejects, etc
  135. if (m_msgTransferModule == null)
  136. {
  137. m_log.Warn("[Groups]: Could not get MessageTransferModule");
  138. }
  139. }
  140. if (m_UserManagement == null)
  141. {
  142. m_UserManagement = scene.RequestModuleInterface<IUserManagement>();
  143. if (m_UserManagement == null)
  144. m_log.Warn("[Groups]: Could not get UserManagementModule");
  145. }
  146. lock (m_sceneList)
  147. {
  148. m_sceneList.Add(scene);
  149. }
  150. scene.EventManager.OnNewClient += OnNewClient;
  151. scene.EventManager.OnMakeRootAgent += OnMakeRoot;
  152. scene.EventManager.OnMakeChildAgent += OnMakeChild;
  153. scene.EventManager.OnIncomingInstantMessage += OnGridInstantMessage;
  154. scene.EventManager.OnClientClosed += OnClientClosed;
  155. }
  156. public void RemoveRegion(Scene scene)
  157. {
  158. if (!m_groupsEnabled)
  159. return;
  160. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  161. scene.EventManager.OnNewClient -= OnNewClient;
  162. scene.EventManager.OnMakeRootAgent -= OnMakeRoot;
  163. scene.EventManager.OnMakeChildAgent -= OnMakeChild;
  164. scene.EventManager.OnIncomingInstantMessage -= OnGridInstantMessage;
  165. scene.EventManager.OnClientClosed -= OnClientClosed;
  166. lock (m_sceneList)
  167. {
  168. m_sceneList.Remove(scene);
  169. }
  170. }
  171. public void Close()
  172. {
  173. if (!m_groupsEnabled)
  174. return;
  175. if (m_debugEnabled) m_log.Debug("[Groups]: Shutting down Groups module.");
  176. }
  177. public Type ReplaceableInterface
  178. {
  179. get { return null; }
  180. }
  181. public string Name
  182. {
  183. get { return "Groups Module V2"; }
  184. }
  185. public void PostInitialise()
  186. {
  187. // NoOp
  188. }
  189. #endregion
  190. #region EventHandlers
  191. private void OnNewClient(IClientAPI client)
  192. {
  193. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  194. client.OnAgentDataUpdateRequest += OnAgentDataUpdateRequest;
  195. //client.OnRequestAvatarProperties += OnRequestAvatarProperties;
  196. }
  197. private void OnMakeRoot(ScenePresence sp)
  198. {
  199. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  200. sp.ControllingClient.OnUUIDGroupNameRequest += HandleUUIDGroupNameRequest;
  201. // Used for Notices and Group Invites/Accept/Reject
  202. sp.ControllingClient.OnInstantMessage += OnInstantMessage;
  203. // Send out group data update for compatibility.
  204. // There might be some problem with the thread we're generating this on but not
  205. // doing the update at this time causes problems (Mantis #7920 and #7915)
  206. // TODO: move sending this update to a later time in the rootification of the client.
  207. if(!sp.m_haveGroupInformation)
  208. SendAgentGroupDataUpdate(sp.ControllingClient, false);
  209. }
  210. private void OnMakeChild(ScenePresence sp)
  211. {
  212. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  213. sp.ControllingClient.OnUUIDGroupNameRequest -= HandleUUIDGroupNameRequest;
  214. // Used for Notices and Group Invites/Accept/Reject
  215. sp.ControllingClient.OnInstantMessage -= OnInstantMessage;
  216. }
  217. /*
  218. private void OnRequestAvatarProperties(IClientAPI remoteClient, UUID avatarID)
  219. {
  220. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  221. GroupMembershipData[] avatarGroups = GetProfileListedGroupMemberships(remoteClient, avatarID);
  222. remoteClient.SendAvatarGroupsReply(avatarID, avatarGroups);
  223. }
  224. */
  225. private void OnClientClosed(UUID AgentId, Scene scene)
  226. {
  227. if (m_debugEnabled) m_log.DebugFormat("[GROUPS]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  228. if (scene == null)
  229. return;
  230. ScenePresence sp = scene.GetScenePresence(AgentId);
  231. IClientAPI client = sp.ControllingClient;
  232. if (client != null)
  233. {
  234. client.OnAgentDataUpdateRequest -= OnAgentDataUpdateRequest;
  235. //client.OnRequestAvatarProperties -= OnRequestAvatarProperties;
  236. // make child possible not called?
  237. client.OnUUIDGroupNameRequest -= HandleUUIDGroupNameRequest;
  238. client.OnInstantMessage -= OnInstantMessage;
  239. }
  240. /*
  241. lock (m_ActiveClients)
  242. {
  243. if (m_ActiveClients.ContainsKey(AgentId))
  244. {
  245. IClientAPI client = m_ActiveClients[AgentId];
  246. client.OnUUIDGroupNameRequest -= HandleUUIDGroupNameRequest;
  247. client.OnAgentDataUpdateRequest -= OnAgentDataUpdateRequest;
  248. client.OnDirFindQuery -= OnDirFindQuery;
  249. client.OnInstantMessage -= OnInstantMessage;
  250. m_ActiveClients.Remove(AgentId);
  251. }
  252. else
  253. {
  254. if (m_debugEnabled) m_log.WarnFormat("[Groups]: Client closed that wasn't registered here.");
  255. }
  256. }
  257. */
  258. }
  259. private void OnAgentDataUpdateRequest(IClientAPI remoteClient, UUID dataForAgentID, UUID sessionID)
  260. {
  261. // this a private message for own agent only
  262. if (dataForAgentID != GetRequestingAgentID(remoteClient))
  263. return;
  264. SendAgentGroupDataUpdate(remoteClient, false);
  265. // also current viewers do ignore it and ask later on a much nicer thread
  266. // its a info request not a change, so nothing is sent to others
  267. // they do get the group title with the avatar object update on arrivel to a region
  268. }
  269. private void HandleUUIDGroupNameRequest(UUID GroupID, IClientAPI remoteClient)
  270. {
  271. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  272. string GroupName;
  273. GroupRecord group = m_groupData.GetGroupRecord(GetRequestingAgentIDStr(remoteClient), GroupID, null);
  274. if (group != null)
  275. {
  276. GroupName = group.GroupName;
  277. }
  278. else
  279. {
  280. GroupName = "Unknown";
  281. }
  282. remoteClient.SendGroupNameReply(GroupID, GroupName);
  283. }
  284. private void OnInstantMessage(IClientAPI remoteClient, GridInstantMessage im)
  285. {
  286. if (m_debugEnabled)
  287. m_log.DebugFormat("[Groups]: OnInstantMessage called");
  288. if(remoteClient == null || !remoteClient.IsActive || remoteClient.AgentId.IsZero())
  289. return;
  290. Scene scene = (Scene)remoteClient.Scene;
  291. if (scene == null)
  292. return;
  293. string remoteAgentIDstr = remoteClient.AgentId.ToString();
  294. //m_log.DebugFormat("[Groups]: IM From {0} to {1} msg {2} type {3}", im.fromAgentID, im.toAgentID, im.message, (InstantMessageDialog)im.dialog);
  295. // Group invitations
  296. if ((im.dialog == (byte)InstantMessageDialog.GroupInvitationAccept) || (im.dialog == (byte)InstantMessageDialog.GroupInvitationDecline))
  297. {
  298. UUID inviteID = new UUID(im.imSessionID);
  299. GroupInviteInfo inviteInfo = m_groupData.GetAgentToGroupInvite(remoteAgentIDstr, inviteID);
  300. if (inviteInfo == null)
  301. {
  302. if (m_debugEnabled) m_log.WarnFormat("[Groups]: Received an Invite IM for an invite that does not exist {0}.", inviteID);
  303. return;
  304. }
  305. //m_log.DebugFormat("[XXX]: Invite is for Agent {0} to Group {1}.", inviteInfo.AgentID, inviteInfo.GroupID);
  306. UUID fromAgentID = new UUID(im.fromAgentID);
  307. UUID invitee = UUID.Zero;
  308. string tmp = string.Empty;
  309. Util.ParseUniversalUserIdentifier(inviteInfo.AgentID, out invitee, out tmp, out tmp, out tmp, out tmp);
  310. if ((inviteInfo != null) && (fromAgentID == invitee))
  311. {
  312. // Accept
  313. if (im.dialog == (byte)InstantMessageDialog.GroupInvitationAccept)
  314. {
  315. //m_log.DebugFormat("[XXX]: Received an accept invite notice.");
  316. // and the sessionid is the role
  317. string reason = string.Empty;
  318. if (!m_groupData.AddAgentToGroup(remoteAgentIDstr, invitee.ToString(), inviteInfo.GroupID, inviteInfo.RoleID, string.Empty, out reason))
  319. remoteClient.SendAgentAlertMessage("Unable to add you to the group: " + reason, false);
  320. else
  321. {
  322. GridInstantMessage msg = new GridInstantMessage();
  323. msg.imSessionID = UUID.Zero.Guid;
  324. msg.fromAgentID = UUID.Zero.Guid;
  325. msg.toAgentID = invitee.Guid;
  326. msg.timestamp = (uint)Util.UnixTimeSinceEpoch();
  327. msg.fromAgentName = "Groups";
  328. msg.message = string.Format("You have been added to the group.");
  329. msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.MessageBox;
  330. msg.fromGroup = false;
  331. msg.offline = (byte)0;
  332. msg.ParentEstateID = 0;
  333. msg.Position = Vector3.Zero;
  334. msg.RegionID = UUID.Zero.Guid;
  335. msg.binaryBucket = new byte[0];
  336. OutgoingInstantMessage(msg, invitee);
  337. IClientAPI inviteeClient = GetActiveRootClient(invitee);
  338. if(inviteeClient !=null)
  339. {
  340. SendAgentGroupDataUpdate(inviteeClient,true);
  341. }
  342. }
  343. m_groupData.RemoveAgentToGroupInvite(remoteAgentIDstr, inviteID);
  344. }
  345. // Reject
  346. if (im.dialog == (byte)InstantMessageDialog.GroupInvitationDecline)
  347. {
  348. if (m_debugEnabled)
  349. m_log.DebugFormat("[Groups]: Received a reject invite notice.");
  350. m_groupData.RemoveAgentToGroupInvite(remoteAgentIDstr, inviteID);
  351. m_groupData.RemoveAgentFromGroup(remoteAgentIDstr, inviteInfo.AgentID, inviteInfo.GroupID);
  352. }
  353. }
  354. }
  355. // Group notices
  356. else if ((im.dialog == (byte)InstantMessageDialog.GroupNotice))
  357. {
  358. if (!m_groupNoticesEnabled)
  359. return;
  360. UUID GroupID = new UUID(im.toAgentID);
  361. GroupMembershipData grpMemberData = m_groupData.GetAgentGroupMembership(remoteAgentIDstr, remoteAgentIDstr, GroupID);
  362. if (grpMemberData == null)
  363. {
  364. remoteClient.SendAgentAlertMessage("Group membership not found", false);
  365. return;
  366. }
  367. if ((grpMemberData.GroupPowers & (ulong)GroupPowers.SendNotices) == 0)
  368. {
  369. remoteClient.SendAgentAlertMessage("No permission to send notice to group", false);
  370. return;
  371. }
  372. int index = im.message.IndexOf('|');
  373. if (index < 0)
  374. return;
  375. string Subject = im.message.Substring(0, index);
  376. string Message = im.message.Substring(index + 1);
  377. UUID NoticeID = UUID.Random();
  378. InventoryItemBase item = null;
  379. bool hasAttachment = false;
  380. if (im.binaryBucket.Length >= 1 && im.binaryBucket[0] > 0)
  381. {
  382. UUID itemID = UUID.Zero;
  383. UUID ownerID = UUID.Zero;
  384. try
  385. {
  386. string binBucket = Utils.BytesToString(im.binaryBucket);
  387. binBucket = binBucket.Substring(15); // remove extra LLSD pre header
  388. OSDMap binBucketMAP = (OSDMap)OSDParser.DeserializeLLSDXml(binBucket);
  389. itemID = binBucketMAP["item_id"].AsUUID();
  390. ownerID = binBucketMAP["owner_id"].AsUUID();
  391. }
  392. catch
  393. {
  394. m_log.DebugFormat("[GROUPS]: failed to decode group notice bucket");
  395. return;
  396. }
  397. if (!itemID.IsZero() && !ownerID.IsZero())
  398. {
  399. item = scene.InventoryService.GetItem(ownerID, itemID);
  400. if(item != null)
  401. {
  402. if ((item.CurrentPermissions & (uint)(PermissionMask.Transfer | PermissionMask.Copy)) !=
  403. (uint)(PermissionMask.Transfer | PermissionMask.Copy))
  404. {
  405. remoteClient.SendAgentAlertMessage("Item must be have Copy and Transfer rights to attach to group notice", false);
  406. return;
  407. }
  408. }
  409. hasAttachment = true;
  410. }
  411. }
  412. if (m_groupData.AddGroupNotice(remoteAgentIDstr, GroupID, NoticeID, im.fromAgentName, Subject, Message,
  413. hasAttachment,
  414. (byte)(item == null ? 0 : item.AssetType),
  415. item == null ? null : item.Name,
  416. item == null ? UUID.Zero : item.ID,
  417. item == null ? UUID.Zero.ToString() : item.Owner.ToString()))
  418. {
  419. OnNewGroupNotice?.Invoke(GroupID, NoticeID);
  420. // Send notice out to everyone that wants notices
  421. foreach (GroupMembersData member in m_groupData.GetGroupMembers(remoteAgentIDstr, GroupID))
  422. {
  423. GridInstantMessage msg = CreateGroupNoticeIM(UUID.Zero, NoticeID, (byte)InstantMessageDialog.GroupNotice);
  424. if (member.AcceptNotices)
  425. {
  426. // Build notice IIM, one of reach, because the sending may be async
  427. msg.toAgentID = member.AgentID.Guid;
  428. OutgoingInstantMessage(msg, member.AgentID);
  429. }
  430. }
  431. }
  432. }
  433. if (im.dialog == (byte)InstantMessageDialog.GroupNoticeInventoryAccepted)
  434. {
  435. if (!m_groupNoticesEnabled)
  436. return;
  437. UUID noticeID = new UUID(im.imSessionID);
  438. if (m_debugEnabled)
  439. m_log.DebugFormat("[xmlGROUPS]: Accepted notice {0} for {1}", noticeID, remoteClient.AgentId);
  440. if (noticeID.IsZero())
  441. return;
  442. UUID folderID = UUID.Zero;
  443. try
  444. {
  445. if (im.binaryBucket != null && im.binaryBucket.Length >= 16)
  446. folderID = new UUID(im.binaryBucket, 0);
  447. }
  448. catch
  449. {
  450. m_log.DebugFormat("[xmlGROUPS]: GroupNoticeInventoryAccepted failed to decode target folder");
  451. return;
  452. }
  453. GroupNoticeInfo notice = m_groupData.GetGroupNotice(remoteAgentIDstr, noticeID);
  454. if (notice == null)
  455. {
  456. if (m_debugEnabled)
  457. m_log.DebugFormat(
  458. "[GROUPS]: Could not find notice {0} for {1} on GroupNoticeInventoryAccepted.",
  459. noticeID, remoteClient.AgentId);
  460. return;
  461. }
  462. string tmp;
  463. UUID giver = new UUID(im.toAgentID);
  464. Util.ParseUniversalUserIdentifier(notice.noticeData.AttachmentOwnerID, out giver, out tmp, out tmp, out tmp, out tmp);
  465. m_log.DebugFormat("[Groups]: Giving inventory from {0} to {1}", giver, remoteClient.AgentId);
  466. string message = "Could not find group notice attached item";
  467. InventoryItemBase itemCopy = scene.GiveInventoryItem(remoteClient.AgentId,
  468. giver, notice.noticeData.AttachmentItemID, folderID, out message);
  469. if (itemCopy == null)
  470. {
  471. remoteClient.SendAgentAlertMessage(message, false);
  472. return;
  473. }
  474. remoteClient.SendInventoryItemCreateUpdate(itemCopy, 0);
  475. }
  476. else if (im.dialog == (byte)InstantMessageDialog.GroupNoticeInventoryDeclined)
  477. {
  478. if (!m_groupNoticesEnabled)
  479. return;
  480. UUID noticeID = new UUID(im.imSessionID);
  481. if (m_debugEnabled)
  482. m_log.DebugFormat("[GROUPS]: Accepted notice {0} for {1}", noticeID, remoteAgentIDstr);
  483. if (noticeID.IsZero())
  484. return;
  485. UUID remoteAgentID = remoteClient.AgentId;
  486. GroupNoticeInfo notice = m_groupData.GetGroupNotice(remoteAgentIDstr, noticeID);
  487. if (notice == null)
  488. {
  489. if (m_debugEnabled)
  490. m_log.DebugFormat(
  491. "[GROUPS]: Could not find notice {0} for {1} on GroupNoticeInventoryAccepted.",
  492. noticeID, remoteClient.AgentId);
  493. return;
  494. }
  495. string giver = notice.noticeData.AttachmentOwnerID;
  496. UUID attachmentUUID = notice.noticeData.AttachmentItemID;
  497. if (attachmentUUID == null || attachmentUUID.IsZero() ||
  498. giver == null || giver == UUID.ZeroString )
  499. return;
  500. if (m_debugEnabled)
  501. m_log.DebugFormat("[xmlGroups]: Deny inventory from {0} to {1}", giver, remoteAgentIDstr);
  502. string message = String.Empty;
  503. InventoryItemBase itemCopy = scene.InventoryService.GetItem(remoteAgentID, attachmentUUID);
  504. if (itemCopy == null)
  505. return;
  506. InventoryFolderBase trash = scene.InventoryService.GetFolderForType(remoteAgentID, FolderType.Trash);
  507. if (trash == null)
  508. {
  509. m_log.DebugFormat("[GROUPS]: failed to find trash folder for {0} ", remoteAgentID);
  510. return;
  511. }
  512. if (itemCopy.Folder == trash.ID || remoteAgentIDstr == notice.noticeData.AttachmentOwnerID)
  513. return;
  514. itemCopy.Folder = trash.ID;
  515. scene.InventoryService.MoveItems(itemCopy.Owner, new List<InventoryItemBase>() { itemCopy });
  516. if (itemCopy == null)
  517. {
  518. remoteClient.SendAgentAlertMessage(message, false);
  519. return;
  520. }
  521. remoteClient.SendInventoryItemCreateUpdate(itemCopy, 0);
  522. }
  523. // Interop, received special 210 code for ejecting a group member
  524. // this only works within the comms servers domain, and won't work hypergrid
  525. // TODO:FIXME: Use a presense server of some kind to find out where the
  526. // client actually is, and try contacting that region directly to notify them,
  527. // or provide the notification via xmlrpc update queue
  528. else if ((im.dialog == 210))
  529. {
  530. // This is sent from the region that the ejectee was ejected from
  531. // if it's being delivered here, then the ejectee is here
  532. // so we need to send local updates to the agent.
  533. UUID ejecteeID = new UUID(im.toAgentID);
  534. im.imSessionID = UUID.Zero.Guid;
  535. im.dialog = (byte)InstantMessageDialog.MessageFromAgent;
  536. OutgoingInstantMessage(im, ejecteeID);
  537. IClientAPI ejectee = GetActiveRootClient(ejecteeID);
  538. if (ejectee != null)
  539. {
  540. UUID groupID = new UUID(im.imSessionID);
  541. ejectee.SendAgentDropGroup(groupID);
  542. SendAgentGroupDataUpdate(ejectee,true);
  543. }
  544. }
  545. }
  546. private void OnGridInstantMessage(GridInstantMessage msg)
  547. {
  548. if (m_debugEnabled) m_log.InfoFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  549. // Trigger the above event handler
  550. OnInstantMessage(null, msg);
  551. // If a message from a group arrives here, it may need to be forwarded to a local client
  552. if (msg.fromGroup == true)
  553. {
  554. switch (msg.dialog)
  555. {
  556. case (byte)InstantMessageDialog.GroupInvitation:
  557. case (byte)InstantMessageDialog.GroupNotice:
  558. UUID toAgentID = new UUID(msg.toAgentID);
  559. IClientAPI localClient = GetActiveRootClient(toAgentID);
  560. if (localClient != null)
  561. {
  562. localClient.SendInstantMessage(msg);
  563. }
  564. break;
  565. }
  566. }
  567. }
  568. #endregion
  569. #region IGroupsModule Members
  570. public event NewGroupNotice OnNewGroupNotice;
  571. public GroupRecord GetGroupRecord(UUID GroupID)
  572. {
  573. return m_groupData.GetGroupRecord(UUID.Zero.ToString(), GroupID, null);
  574. }
  575. public GroupRecord GetGroupRecord(string name)
  576. {
  577. return m_groupData.GetGroupRecord(UUID.Zero.ToString(), UUID.Zero, name);
  578. }
  579. public void ActivateGroup(IClientAPI remoteClient, UUID groupID)
  580. {
  581. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  582. m_groupData.SetAgentActiveGroup(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  583. // Changing active group changes title, active powers, all kinds of things
  584. // anyone who is in any region that can see this client, should probably be
  585. // updated with new group info. At a minimum, they should get ScenePresence
  586. // updated with new title.
  587. SendAgentGroupDataUpdate(remoteClient, true);
  588. }
  589. /// <summary>
  590. /// Get the Role Titles for an Agent, for a specific group
  591. /// </summary>
  592. public List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID)
  593. {
  594. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  595. List<GroupRolesData> agentRoles = m_groupData.GetAgentGroupRoles(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  596. GroupMembershipData agentMembership = m_groupData.GetAgentGroupMembership(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  597. List<GroupTitlesData> titles = new List<GroupTitlesData>();
  598. foreach (GroupRolesData role in agentRoles)
  599. {
  600. GroupTitlesData title = new GroupTitlesData();
  601. title.Name = role.Name;
  602. if (agentMembership != null)
  603. {
  604. title.Selected = agentMembership.ActiveRole == role.RoleID;
  605. }
  606. title.UUID = role.RoleID;
  607. titles.Add(title);
  608. }
  609. return titles;
  610. }
  611. public List<GroupMembersData> GroupMembersRequest(IClientAPI remoteClient, UUID groupID)
  612. {
  613. if (m_debugEnabled)
  614. m_log.DebugFormat(
  615. "[Groups]: GroupMembersRequest called for {0} from client {1}", groupID, remoteClient.Name);
  616. List<GroupMembersData> data = m_groupData.GetGroupMembers(GetRequestingAgentIDStr(remoteClient), groupID);
  617. if (m_debugEnabled)
  618. {
  619. foreach (GroupMembersData member in data)
  620. {
  621. m_log.DebugFormat("[Groups]: Member({0}) - IsOwner({1})", member.AgentID, member.IsOwner);
  622. }
  623. }
  624. return data;
  625. }
  626. public ulong GetFullGroupPowers(UUID agentID, UUID groupID)
  627. {
  628. if (m_debugEnabled) m_log.DebugFormat("[GROUPS]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  629. List<GroupRolesData> data = m_groupData.GetGroupRoles(agentID.ToString(), groupID);
  630. if (data == null || data.Count == 0)
  631. return 0;
  632. ulong powers = 0;
  633. for (int i = 0; i < data.Count; ++i)
  634. {
  635. powers |= data[i].Powers;
  636. }
  637. return powers;
  638. }
  639. public List<GroupRolesData> GroupRoleDataRequest(UUID agentID, UUID groupID)
  640. {
  641. if (m_debugEnabled) m_log.DebugFormat("[GROUPS]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  642. List<GroupRolesData> data = m_groupData.GetGroupRoles(agentID.ToString(), groupID);
  643. return data;
  644. }
  645. public List<GroupRolesData> GroupRoleDataRequest(IClientAPI remoteClient, UUID groupID)
  646. {
  647. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  648. List<GroupRolesData> data = m_groupData.GetGroupRoles(GetRequestingAgentIDStr(remoteClient), groupID);
  649. return data;
  650. }
  651. public List<GroupRoleMembersData> GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID)
  652. {
  653. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  654. List<GroupRoleMembersData> data = m_groupData.GetGroupRoleMembers(GetRequestingAgentIDStr(remoteClient), groupID);
  655. if (m_debugEnabled)
  656. {
  657. foreach (GroupRoleMembersData member in data)
  658. {
  659. m_log.DebugFormat("[Groups]: Member({0}) - Role({1})", member.MemberID, member.RoleID);
  660. }
  661. }
  662. return data;
  663. }
  664. public GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID)
  665. {
  666. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  667. GroupProfileData profile = new GroupProfileData();
  668. // just to get the OwnerRole...
  669. ExtendedGroupRecord groupInfo = m_groupData.GetGroupRecord(GetRequestingAgentIDStr(remoteClient), groupID, string.Empty);
  670. GroupMembershipData memberInfo = m_groupData.GetAgentGroupMembership(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  671. if (groupInfo != null)
  672. {
  673. profile.AllowPublish = groupInfo.AllowPublish;
  674. profile.Charter = groupInfo.Charter;
  675. profile.FounderID = groupInfo.FounderID;
  676. profile.GroupID = groupID;
  677. profile.GroupMembershipCount = groupInfo.MemberCount;
  678. profile.GroupRolesCount = groupInfo.RoleCount;
  679. profile.InsigniaID = groupInfo.GroupPicture;
  680. profile.MaturePublish = groupInfo.MaturePublish;
  681. profile.MembershipFee = groupInfo.MembershipFee;
  682. profile.Money = 0;
  683. profile.Name = groupInfo.GroupName;
  684. profile.OpenEnrollment = groupInfo.OpenEnrollment;
  685. profile.OwnerRole = groupInfo.OwnerRoleID;
  686. profile.ShowInList = groupInfo.ShowInList;
  687. }
  688. if (memberInfo != null)
  689. {
  690. profile.MemberTitle = memberInfo.GroupTitle;
  691. profile.PowersMask = memberInfo.GroupPowers;
  692. }
  693. return profile;
  694. }
  695. public GroupMembershipData[] GetMembershipData(UUID agentID)
  696. {
  697. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  698. return m_groupData.GetAgentGroupMemberships(UUID.Zero.ToString(), agentID.ToString()).ToArray();
  699. }
  700. public GroupMembershipData GetMembershipData(UUID groupID, UUID agentID)
  701. {
  702. if (m_debugEnabled)
  703. m_log.DebugFormat(
  704. "[Groups]: {0} called with groupID={1}, agentID={2}",
  705. System.Reflection.MethodBase.GetCurrentMethod().Name, groupID, agentID);
  706. return m_groupData.GetAgentGroupMembership(UUID.Zero.ToString(), agentID.ToString(), groupID);
  707. }
  708. public GroupMembershipData GetActiveMembershipData(UUID agentID)
  709. {
  710. string agentIDstr = agentID.ToString();
  711. return m_groupData.GetAgentActiveMembership(agentIDstr, agentIDstr);
  712. }
  713. public void UpdateGroupInfo(IClientAPI remoteClient, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish)
  714. {
  715. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  716. // Note: Permissions checking for modification rights is handled by the Groups Server/Service
  717. string reason = string.Empty;
  718. if (!m_groupData.UpdateGroup(GetRequestingAgentIDStr(remoteClient), groupID, charter, showInList, insigniaID, membershipFee,
  719. openEnrollment, allowPublish, maturePublish, out reason))
  720. remoteClient.SendAgentAlertMessage(reason, false);
  721. }
  722. public void SetGroupAcceptNotices(IClientAPI remoteClient, UUID groupID, bool acceptNotices, bool listInProfile)
  723. {
  724. // Note: Permissions checking for modification rights is handled by the Groups Server/Service
  725. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  726. m_groupData.UpdateMembership(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID, acceptNotices, listInProfile);
  727. }
  728. public UUID CreateGroup(IClientAPI remoteClient, string name, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish)
  729. {
  730. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called in {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, remoteClient.Scene.RegionInfo.RegionName);
  731. if (m_groupData.GetGroupRecord(GetRequestingAgentIDStr(remoteClient), UUID.Zero, name) != null)
  732. {
  733. remoteClient.SendCreateGroupReply(UUID.Zero, false, "A group with the same name already exists.");
  734. return UUID.Zero;
  735. }
  736. // check user level
  737. ScenePresence avatar = null;
  738. Scene scene = (Scene)remoteClient.Scene;
  739. scene.TryGetScenePresence(remoteClient.AgentId, out avatar);
  740. if (avatar != null)
  741. {
  742. if (avatar.GodController.UserLevel < m_levelGroupCreate)
  743. {
  744. remoteClient.SendCreateGroupReply(UUID.Zero, false, String.Format("Insufficient permissions to create a group. Requires level {0}", m_levelGroupCreate));
  745. return UUID.Zero;
  746. }
  747. }
  748. // check funds
  749. // is there a money module present ?
  750. IMoneyModule money = scene.RequestModuleInterface<IMoneyModule>();
  751. if (money != null)
  752. {
  753. // do the transaction, that is if the agent has got sufficient funds
  754. if (!money.AmountCovered(remoteClient.AgentId, money.GroupCreationCharge)) {
  755. remoteClient.SendCreateGroupReply(UUID.Zero, false, "Insufficient funds to create a group.");
  756. return UUID.Zero;
  757. }
  758. }
  759. string reason = string.Empty;
  760. UUID groupID = m_groupData.CreateGroup(remoteClient.AgentId, name, charter, showInList, insigniaID, membershipFee, openEnrollment,
  761. allowPublish, maturePublish, remoteClient.AgentId, out reason);
  762. if (!groupID.IsZero())
  763. {
  764. if (money != null && money.GroupCreationCharge > 0)
  765. money.ApplyCharge(remoteClient.AgentId, money.GroupCreationCharge, MoneyTransactionType.GroupCreate, name);
  766. remoteClient.SendCreateGroupReply(groupID, true, "Group created successfully");
  767. // Update the founder with new group information.
  768. SendAgentGroupDataUpdate(remoteClient, true);
  769. }
  770. else
  771. remoteClient.SendCreateGroupReply(groupID, false, reason);
  772. return groupID;
  773. }
  774. public GroupNoticeData[] GroupNoticesListRequest(IClientAPI remoteClient, UUID groupID)
  775. {
  776. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  777. // ToDo: check if agent is a member of group and is allowed to see notices?
  778. List<ExtendedGroupNoticeData> notices = m_groupData.GetGroupNotices(GetRequestingAgentIDStr(remoteClient), groupID);
  779. List<GroupNoticeData> os_notices = new List<GroupNoticeData>();
  780. foreach (ExtendedGroupNoticeData n in notices)
  781. {
  782. GroupNoticeData osn = n.ToGroupNoticeData();
  783. os_notices.Add(osn);
  784. }
  785. return os_notices.ToArray();
  786. }
  787. /// <summary>
  788. /// Get the title of the agent's current role.
  789. /// </summary>
  790. public string GetGroupTitle(UUID avatarID)
  791. {
  792. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  793. GroupMembershipData membership = m_groupData.GetAgentActiveMembership(UUID.Zero.ToString(), avatarID.ToString());
  794. if (membership != null)
  795. {
  796. return membership.GroupTitle;
  797. }
  798. return string.Empty;
  799. }
  800. /// <summary>
  801. /// Change the current Active Group Role for Agent
  802. /// </summary>
  803. public void GroupTitleUpdate(IClientAPI remoteClient, UUID groupID, UUID titleRoleID)
  804. {
  805. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  806. m_groupData.SetAgentActiveGroupRole(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID, titleRoleID);
  807. // TODO: Not sure what all is needed here, but if the active group role change is for the group
  808. // the client currently has set active, then we need to do a scene presence update too
  809. // if (m_groupData.GetAgentActiveMembership(GetRequestingAgentID(remoteClient)).GroupID == GroupID)
  810. SendDataUpdate(remoteClient, true);
  811. }
  812. public void GroupRoleUpdate(IClientAPI remoteClient, UUID groupID, UUID roleID, string name, string description, string title, ulong powers, byte updateType)
  813. {
  814. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  815. // Security Checks are handled in the Groups Service.
  816. switch ((OpenMetaverse.GroupRoleUpdate)updateType)
  817. {
  818. case OpenMetaverse.GroupRoleUpdate.Create:
  819. string reason = string.Empty;
  820. if (!m_groupData.AddGroupRole(GetRequestingAgentIDStr(remoteClient), groupID, UUID.Random(), name, description, title, powers, out reason))
  821. remoteClient.SendAgentAlertMessage("Unable to create role: " + reason, false);
  822. break;
  823. case OpenMetaverse.GroupRoleUpdate.Delete:
  824. m_groupData.RemoveGroupRole(GetRequestingAgentIDStr(remoteClient), groupID, roleID);
  825. break;
  826. case OpenMetaverse.GroupRoleUpdate.UpdateAll:
  827. case OpenMetaverse.GroupRoleUpdate.UpdateData:
  828. case OpenMetaverse.GroupRoleUpdate.UpdatePowers:
  829. if (m_debugEnabled)
  830. {
  831. GroupPowers gp = (GroupPowers)powers;
  832. m_log.DebugFormat("[Groups]: Role ({0}) updated with Powers ({1}) ({2})", name, powers.ToString(), gp.ToString());
  833. }
  834. m_groupData.UpdateGroupRole(GetRequestingAgentIDStr(remoteClient), groupID, roleID, name, description, title, powers);
  835. break;
  836. case OpenMetaverse.GroupRoleUpdate.NoUpdate:
  837. default:
  838. // No Op
  839. break;
  840. }
  841. // TODO: This update really should send out updates for everyone in the role that just got changed.
  842. SendDataUpdate(remoteClient, true);
  843. }
  844. public void GroupRoleChanges(IClientAPI remoteClient, UUID groupID, UUID roleID, UUID memberID, uint changes)
  845. {
  846. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  847. // Todo: Security check
  848. switch (changes)
  849. {
  850. case 0:
  851. // Add
  852. m_groupData.AddAgentToGroupRole(GetRequestingAgentIDStr(remoteClient), memberID.ToString(), groupID, roleID);
  853. break;
  854. case 1:
  855. // Remove
  856. m_groupData.RemoveAgentFromGroupRole(GetRequestingAgentIDStr(remoteClient), memberID.ToString(), groupID, roleID);
  857. break;
  858. default:
  859. m_log.ErrorFormat("[Groups]: {0} does not understand changes == {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, changes);
  860. break;
  861. }
  862. // TODO: This update really should send out updates for everyone in the role that just got changed.
  863. SendDataUpdate(remoteClient, true);
  864. }
  865. public void GroupNoticeRequest(IClientAPI remoteClient, UUID groupNoticeID)
  866. {
  867. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called for notice {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, groupNoticeID);
  868. GridInstantMessage msg = CreateGroupNoticeIM(remoteClient.AgentId, groupNoticeID, (byte)InstantMessageDialog.GroupNoticeRequested);
  869. OutgoingInstantMessage(msg, GetRequestingAgentID(remoteClient));
  870. }
  871. public GridInstantMessage CreateGroupNoticeIM(UUID agentID, UUID groupNoticeID, byte dialog)
  872. {
  873. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  874. GridInstantMessage msg = new GridInstantMessage();
  875. byte[] bucket;
  876. msg.imSessionID = groupNoticeID.Guid;
  877. msg.toAgentID = agentID.Guid;
  878. msg.dialog = dialog;
  879. msg.fromGroup = true;
  880. msg.offline = (byte)1;
  881. msg.ParentEstateID = 0;
  882. msg.Position = Vector3.Zero;
  883. msg.RegionID = UUID.Zero.Guid;
  884. GroupNoticeInfo info = m_groupData.GetGroupNotice(agentID.ToString(), groupNoticeID);
  885. if (info != null)
  886. {
  887. msg.fromAgentID = info.GroupID.Guid;
  888. msg.timestamp = info.noticeData.Timestamp;
  889. msg.fromAgentName = info.noticeData.FromName;
  890. msg.message = info.noticeData.Subject + "|" + info.Message;
  891. if (info.noticeData.HasAttachment)
  892. {
  893. byte[] name = System.Text.Encoding.UTF8.GetBytes(info.noticeData.AttachmentName);
  894. bucket = new byte[19 + name.Length];
  895. bucket[0] = 1; // has attachment?
  896. bucket[1] = info.noticeData.AttachmentType; // attachment type
  897. name.CopyTo(bucket, 18);
  898. }
  899. else
  900. {
  901. bucket = new byte[19];
  902. bucket[0] = 0; //No attachment
  903. bucket[1] = 0; //Attachment type
  904. bucket[18] = 0; //NUL terminate name
  905. }
  906. info.GroupID.ToBytes(bucket, 2);
  907. msg.binaryBucket = bucket;
  908. }
  909. else
  910. {
  911. m_log.DebugFormat("[Groups]: Group Notice {0} not found, composing empty message.", groupNoticeID);
  912. msg.fromAgentID = UUID.Zero.Guid;
  913. msg.timestamp = (uint)Util.UnixTimeSinceEpoch(); ;
  914. msg.fromAgentName = string.Empty;
  915. msg.message = string.Empty;
  916. msg.binaryBucket = new byte[0];
  917. }
  918. return msg;
  919. }
  920. public void JoinGroupRequest(IClientAPI remoteClient, UUID groupID)
  921. {
  922. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  923. GroupRecord groupRecord = GetGroupRecord(groupID);
  924. IMoneyModule money = remoteClient.Scene.RequestModuleInterface<IMoneyModule>();
  925. // Should check to see if there's an outstanding invitation
  926. if (money != null && groupRecord.MembershipFee > 0)
  927. {
  928. // Does the agent have the funds to cover the group join fee?
  929. if (!money.AmountCovered(remoteClient.AgentId, groupRecord.MembershipFee))
  930. {
  931. remoteClient.SendAlertMessage("Insufficient funds to join the group.");
  932. remoteClient.SendJoinGroupReply(groupID, false);
  933. return;
  934. }
  935. }
  936. string reason = string.Empty;
  937. string requestingAgentIDStr = GetRequestingAgentIDStr(remoteClient);
  938. if (m_groupData.AddAgentToGroup(requestingAgentIDStr, requestingAgentIDStr, groupID, UUID.Zero, string.Empty, out reason))
  939. {
  940. if (money != null && groupRecord.MembershipFee > 0)
  941. money.ApplyCharge(remoteClient.AgentId, groupRecord.MembershipFee, MoneyTransactionType.GroupJoin, groupRecord.GroupName);
  942. remoteClient.SendJoinGroupReply(groupID, true);
  943. // Should this send updates to everyone in the group?
  944. SendAgentGroupDataUpdate(remoteClient, true);
  945. if (reason != string.Empty)
  946. // A warning
  947. remoteClient.SendAlertMessage("Warning: " + reason);
  948. }
  949. else
  950. remoteClient.SendJoinGroupReply(groupID, false);
  951. }
  952. public void LeaveGroupRequest(IClientAPI remoteClient, UUID groupID)
  953. {
  954. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  955. m_groupData.RemoveAgentFromGroup(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  956. remoteClient.SendLeaveGroupReply(groupID, true);
  957. remoteClient.SendAgentDropGroup(groupID);
  958. // SL sends out notifcations to the group messaging session that the person has left
  959. // Should this also update everyone who is in the group?
  960. SendAgentGroupDataUpdate(remoteClient, true);
  961. }
  962. public void EjectGroupMemberRequest(IClientAPI remoteClient, UUID groupID, UUID ejecteeID)
  963. {
  964. EjectGroupMember(remoteClient, GetRequestingAgentID(remoteClient), groupID, ejecteeID);
  965. }
  966. public void EjectGroupMember(IClientAPI remoteClient, UUID agentID, UUID groupID, UUID ejecteeID)
  967. {
  968. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  969. // Todo: Security check?
  970. m_groupData.RemoveAgentFromGroup(agentID.ToString(), ejecteeID.ToString(), groupID);
  971. string agentName;
  972. RegionInfo regionInfo;
  973. // remoteClient provided or just agentID?
  974. if (remoteClient != null)
  975. {
  976. agentName = remoteClient.Name;
  977. regionInfo = remoteClient.Scene.RegionInfo;
  978. remoteClient.SendEjectGroupMemberReply(agentID, groupID, true);
  979. }
  980. else
  981. {
  982. IClientAPI client = GetActiveClient(agentID);
  983. if (client != null)
  984. {
  985. agentName = client.Name;
  986. regionInfo = client.Scene.RegionInfo;
  987. client.SendEjectGroupMemberReply(agentID, groupID, true);
  988. }
  989. else
  990. {
  991. regionInfo = m_sceneList[0].RegionInfo;
  992. UserAccount acc = m_sceneList[0].UserAccountService.GetUserAccount(regionInfo.ScopeID, agentID);
  993. if (acc != null)
  994. {
  995. agentName = acc.FirstName + " " + acc.LastName;
  996. }
  997. else
  998. {
  999. agentName = "Unknown member";
  1000. }
  1001. }
  1002. }
  1003. GroupRecord groupInfo = m_groupData.GetGroupRecord(agentID.ToString(), groupID, null);
  1004. if ((groupInfo == null))
  1005. return;
  1006. UserData udata = m_sceneList[0].UserManagementModule.GetUserData(ejecteeID);
  1007. IClientAPI ejecteeClient = GetActiveRootClient(ejecteeID);
  1008. string ejecteeName;
  1009. // Send Message to Ejectee
  1010. GridInstantMessage msg = new GridInstantMessage();
  1011. // if local send a normal message
  1012. if(ejecteeClient != null)
  1013. {
  1014. msg.imSessionID = UUID.Zero.Guid;
  1015. msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.MessageFromAgent;
  1016. // also execute and send update
  1017. ejecteeClient.SendAgentDropGroup(groupID);
  1018. SendAgentGroupDataUpdate(ejecteeClient,true);
  1019. ejecteeName = ejecteeClient.Name;
  1020. }
  1021. else // send
  1022. {
  1023. // Interop, received special 210 code for ejecting a group member
  1024. // this only works within the comms servers domain, and won't work hypergrid
  1025. // TODO:FIXME: Use a presence server of some kind to find out where the
  1026. // client actually is, and try contacting that region directly to notify them,
  1027. // or provide the notification via xmlrpc update queue
  1028. msg.imSessionID = groupInfo.GroupID.Guid;
  1029. msg.dialog = 210; //interop
  1030. ejecteeName = udata != null ? (udata.FirstName + " " + udata.LastName) : "user name currently unknown";
  1031. }
  1032. //if(ejecteeClient != null || (udata != null && udata.IsLocal))
  1033. {
  1034. msg.fromAgentID = agentID.Guid;
  1035. // msg.fromAgentID = info.GroupID;
  1036. msg.toAgentID = ejecteeID.Guid;
  1037. //msg.timestamp = (uint)Util.UnixTimeSinceEpoch();
  1038. msg.timestamp = 0;
  1039. msg.fromAgentName = agentName;
  1040. msg.message = string.Format("You have been ejected from '{1}' by {0}.", agentName, groupInfo.GroupName);
  1041. msg.fromGroup = false;
  1042. msg.offline = (byte)0;
  1043. msg.ParentEstateID = 0;
  1044. msg.Position = Vector3.Zero;
  1045. msg.RegionID = regionInfo.RegionID.Guid;
  1046. msg.binaryBucket = new byte[0];
  1047. OutgoingInstantMessage(msg, ejecteeID);
  1048. }
  1049. // Message to ejector
  1050. msg = new GridInstantMessage();
  1051. msg.imSessionID = UUID.Zero.Guid;
  1052. msg.fromAgentID = agentID.Guid;
  1053. msg.toAgentID = agentID.Guid;
  1054. msg.timestamp = 0;
  1055. msg.fromAgentName = agentName;
  1056. msg.message = string.Format("{2} has been ejected from '{1}' by {0}.", agentName, groupInfo.GroupName, ejecteeName);
  1057. msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.MessageFromAgent;
  1058. msg.fromGroup = false;
  1059. msg.offline = (byte)0;
  1060. msg.ParentEstateID = 0;
  1061. msg.Position = Vector3.Zero;
  1062. msg.RegionID = regionInfo.RegionID.Guid;
  1063. msg.binaryBucket = new byte[0];
  1064. OutgoingInstantMessage(msg, agentID);
  1065. }
  1066. public void InviteGroupRequest(IClientAPI remoteClient, UUID groupID, UUID invitedAgentID, UUID roleID)
  1067. {
  1068. InviteGroup(remoteClient, GetRequestingAgentID(remoteClient), groupID, invitedAgentID, roleID);
  1069. }
  1070. public void InviteGroup(IClientAPI remoteClient, UUID agentID, UUID groupID, UUID invitedAgentID, UUID roleID)
  1071. {
  1072. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  1073. string agentName = m_UserManagement.GetUserName(agentID);
  1074. RegionInfo regionInfo = m_sceneList[0].RegionInfo;
  1075. GroupRecord group = m_groupData.GetGroupRecord(agentID.ToString(), groupID, null);
  1076. if (group == null)
  1077. {
  1078. m_log.DebugFormat("[Groups]: No such group {0}", groupID);
  1079. return;
  1080. }
  1081. // Todo: Security check, probably also want to send some kind of notification
  1082. UUID InviteID = UUID.Random();
  1083. if (m_groupData.AddAgentToGroupInvite(agentID.ToString(), InviteID, groupID, roleID, invitedAgentID.ToString()))
  1084. {
  1085. if (m_msgTransferModule != null)
  1086. {
  1087. Guid inviteUUID = InviteID.Guid;
  1088. GridInstantMessage msg = new GridInstantMessage();
  1089. msg.imSessionID = inviteUUID;
  1090. // msg.fromAgentID = agentID.Guid;
  1091. msg.fromAgentID = groupID.Guid;
  1092. msg.toAgentID = invitedAgentID.Guid;
  1093. //msg.timestamp = (uint)Util.UnixTimeSinceEpoch();
  1094. msg.timestamp = 0;
  1095. msg.fromAgentName = agentName;
  1096. msg.message = string.Format("{0} has invited you to join a group called {1}. There is no cost to join this group.", agentName, group.GroupName);
  1097. msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.GroupInvitation;
  1098. msg.fromGroup = true;
  1099. msg.offline = (byte)0;
  1100. msg.ParentEstateID = 0;
  1101. msg.Position = Vector3.Zero;
  1102. msg.RegionID = regionInfo.RegionID.Guid;
  1103. msg.binaryBucket = new byte[20];
  1104. OutgoingInstantMessage(msg, invitedAgentID);
  1105. }
  1106. }
  1107. }
  1108. public List<DirGroupsReplyData> FindGroups(IClientAPI remoteClient, string query)
  1109. {
  1110. return m_groupData.FindGroups(remoteClient.AgentId.ToString(), query);
  1111. }
  1112. #endregion
  1113. #region Client/Update Tools
  1114. private IClientAPI GetActiveRootClient(UUID agentID)
  1115. {
  1116. foreach (Scene scene in m_sceneList)
  1117. {
  1118. ScenePresence sp = scene.GetScenePresence(agentID);
  1119. if (sp != null && !sp.IsChildAgent && !sp.IsDeleted)
  1120. {
  1121. return sp.ControllingClient;
  1122. }
  1123. }
  1124. return null;
  1125. }
  1126. /// <summary>
  1127. /// Try to find an active IClientAPI reference for agentID giving preference to root connections
  1128. /// </summary>
  1129. private IClientAPI GetActiveClient(UUID agentID)
  1130. {
  1131. IClientAPI child = null;
  1132. // Try root avatar first
  1133. foreach (Scene scene in m_sceneList)
  1134. {
  1135. ScenePresence sp = scene.GetScenePresence(agentID);
  1136. if (sp != null&& !sp.IsDeleted)
  1137. {
  1138. if (!sp.IsChildAgent)
  1139. {
  1140. return sp.ControllingClient;
  1141. }
  1142. else
  1143. {
  1144. child = sp.ControllingClient;
  1145. }
  1146. }
  1147. }
  1148. // If we didn't find a root, then just return whichever child we found, or null if none
  1149. return child;
  1150. }
  1151. private void SendScenePresenceUpdate(UUID AgentID, string Title)
  1152. {
  1153. if (m_debugEnabled) m_log.DebugFormat("[Groups]: Updating scene title for {0} with title: {1}", AgentID, Title);
  1154. ScenePresence presence = null;
  1155. foreach (Scene scene in m_sceneList)
  1156. {
  1157. presence = scene.GetScenePresence(AgentID);
  1158. if (presence != null)
  1159. {
  1160. if (presence.Grouptitle != Title)
  1161. {
  1162. presence.Grouptitle = Title;
  1163. if (! presence.IsChildAgent)
  1164. presence.SendAvatarDataToAllAgents();
  1165. }
  1166. }
  1167. }
  1168. }
  1169. public void SendAgentGroupDataUpdate(IClientAPI remoteClient)
  1170. {
  1171. SendAgentGroupDataUpdate(remoteClient, true);
  1172. }
  1173. /// <summary>
  1174. /// Tell remoteClient about its agent groups, and optionally send title to others
  1175. /// </summary>
  1176. private void SendAgentGroupDataUpdate(IClientAPI remoteClient, bool tellOthers)
  1177. {
  1178. if (m_debugEnabled) m_log.InfoFormat("[Groups]: {0} called for {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, remoteClient.Name);
  1179. // NPCs currently don't have a CAPs structure or event queues. There is a strong argument for conveying this information
  1180. // to them anyway since it makes writing server-side bots a lot easier, but for now we don't do anything.
  1181. if (remoteClient.SceneAgent.PresenceType == PresenceType.Npc)
  1182. return;
  1183. // TODO: All the client update functions need to be reexamined because most do too much and send too much stuff
  1184. UUID agentID = GetRequestingAgentID(remoteClient);
  1185. SendDataUpdate(remoteClient, tellOthers);
  1186. GroupMembershipData[] membershipArray = GetProfileListedGroupMemberships(remoteClient, agentID);
  1187. remoteClient.UpdateGroupMembership(membershipArray);
  1188. remoteClient.SendAgentGroupDataUpdate(agentID, membershipArray);
  1189. }
  1190. /// <summary>
  1191. /// Get a list of groups memberships for the agent that are marked "ListInProfile"
  1192. /// (unless that agent has a godLike aspect, in which case get all groups)
  1193. /// </summary>
  1194. /// <param name="dataForAgentID"></param>
  1195. /// <returns></returns>
  1196. private GroupMembershipData[] GetProfileListedGroupMemberships(IClientAPI requestingClient, UUID dataForAgentID)
  1197. {
  1198. List<GroupMembershipData> membershipData = m_groupData.GetAgentGroupMemberships(requestingClient.AgentId.ToString(), dataForAgentID.ToString());
  1199. GroupMembershipData[] membershipArray;
  1200. // cScene and property accessor 'isGod' are in support of the opertions to bypass 'hidden' group attributes for
  1201. // those with a GodLike aspect.
  1202. Scene cScene = (Scene)requestingClient.Scene;
  1203. bool isGod = cScene.Permissions.IsGod(requestingClient.AgentId);
  1204. if (isGod)
  1205. {
  1206. membershipArray = membershipData.ToArray();
  1207. }
  1208. else
  1209. {
  1210. if (requestingClient.AgentId != dataForAgentID)
  1211. {
  1212. Predicate<GroupMembershipData> showInProfile = delegate(GroupMembershipData membership)
  1213. {
  1214. return membership.ListInProfile;
  1215. };
  1216. membershipArray = membershipData.FindAll(showInProfile).ToArray();
  1217. }
  1218. else
  1219. {
  1220. membershipArray = membershipData.ToArray();
  1221. }
  1222. }
  1223. if (m_debugEnabled)
  1224. {
  1225. m_log.InfoFormat("[Groups]: Get group membership information for {0} requested by {1}", dataForAgentID, requestingClient.AgentId);
  1226. foreach (GroupMembershipData membership in membershipArray)
  1227. {
  1228. m_log.InfoFormat("[Groups]: {0} :: {1} - {2} - {3}", dataForAgentID, membership.GroupName, membership.GroupTitle, membership.GroupPowers);
  1229. }
  1230. }
  1231. return membershipArray;
  1232. }
  1233. //tell remoteClient about its agent group info, and optionally send title to others
  1234. private void SendDataUpdate(IClientAPI remoteClient, bool tellOthers)
  1235. {
  1236. if (m_debugEnabled) m_log.DebugFormat("[GROUPS]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  1237. UUID activeGroupID = UUID.Zero;
  1238. string activeGroupTitle = string.Empty;
  1239. string activeGroupName = string.Empty;
  1240. ulong activeGroupPowers = (ulong)GroupPowers.None;
  1241. UUID agentID = GetRequestingAgentID(remoteClient);
  1242. GroupMembershipData membership = m_groupData.GetAgentActiveMembership(agentID.ToString(), agentID.ToString());
  1243. if (membership != null)
  1244. {
  1245. activeGroupID = membership.GroupID;
  1246. activeGroupTitle = membership.GroupTitle;
  1247. activeGroupPowers = membership.GroupPowers;
  1248. activeGroupName = membership.GroupName;
  1249. }
  1250. UserAccount account = m_sceneList[0].UserAccountService.GetUserAccount(remoteClient.Scene.RegionInfo.ScopeID, agentID);
  1251. string firstname, lastname;
  1252. if (account != null)
  1253. {
  1254. firstname = account.FirstName;
  1255. lastname = account.LastName;
  1256. }
  1257. else
  1258. {
  1259. firstname = "Unknown";
  1260. lastname = "Unknown";
  1261. }
  1262. remoteClient.SendAgentDataUpdate(agentID, activeGroupID, firstname,
  1263. lastname, activeGroupPowers, activeGroupName,
  1264. activeGroupTitle);
  1265. if (tellOthers)
  1266. SendScenePresenceUpdate(agentID, activeGroupTitle);
  1267. ScenePresence sp = (ScenePresence)remoteClient.SceneAgent;
  1268. if (sp != null)
  1269. sp.Grouptitle = activeGroupTitle;
  1270. }
  1271. #endregion
  1272. #region IM Backed Processes
  1273. private void OutgoingInstantMessage(GridInstantMessage msg, UUID msgTo)
  1274. {
  1275. if (m_debugEnabled) m_log.InfoFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  1276. IClientAPI localClient = GetActiveRootClient(msgTo);
  1277. if (localClient != null)
  1278. {
  1279. if (m_debugEnabled) m_log.InfoFormat("[Groups]: MsgTo ({0}) is local, delivering directly", localClient.Name);
  1280. localClient.SendInstantMessage(msg);
  1281. }
  1282. else if (m_msgTransferModule != null)
  1283. {
  1284. if (m_debugEnabled) m_log.InfoFormat("[Groups]: MsgTo ({0}) is not local, delivering via TransferModule", msgTo);
  1285. m_msgTransferModule.SendInstantMessage(msg, delegate(bool success) { if (m_debugEnabled) m_log.DebugFormat("[Groups]: Message Sent: {0}", success?"Succeeded":"Failed"); });
  1286. }
  1287. }
  1288. public void NotifyChange(UUID groupID)
  1289. {
  1290. // Notify all group members of a chnge in group roles and/or
  1291. // permissions
  1292. //
  1293. }
  1294. #endregion
  1295. private string GetRequestingAgentIDStr(IClientAPI client)
  1296. {
  1297. return GetRequestingAgentID(client).ToString();
  1298. }
  1299. private UUID GetRequestingAgentID(IClientAPI client)
  1300. {
  1301. UUID requestingAgentID = UUID.Zero;
  1302. if (client != null)
  1303. {
  1304. requestingAgentID = client.AgentId;
  1305. }
  1306. return requestingAgentID;
  1307. }
  1308. }
  1309. }