GroupsModule.cs 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575
  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 == UUID.Zero)
  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 != UUID.Zero && ownerID != UUID.Zero)
  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 == UUID.Zero)
  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 == UUID.Zero)
  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 ||
  498. attachmentUUID == UUID.Zero ||
  499. giver == null ||
  500. giver == UUID.Zero.ToString()
  501. )
  502. return;
  503. if (m_debugEnabled)
  504. m_log.DebugFormat("[xmlGroups]: Deny inventory from {0} to {1}", giver, remoteAgentIDstr);
  505. string message = String.Empty;
  506. InventoryItemBase itemCopy = scene.InventoryService.GetItem(remoteAgentID, attachmentUUID);
  507. if (itemCopy == null)
  508. return;
  509. InventoryFolderBase trash = scene.InventoryService.GetFolderForType(remoteAgentID, FolderType.Trash);
  510. if (trash == null)
  511. {
  512. m_log.DebugFormat("[GROUPS]: failed to find trash folder for {0} ", remoteAgentID);
  513. return;
  514. }
  515. if (itemCopy.Folder == trash.ID || remoteAgentIDstr == notice.noticeData.AttachmentOwnerID)
  516. return;
  517. itemCopy.Folder = trash.ID;
  518. scene.InventoryService.MoveItems(itemCopy.Owner, new List<InventoryItemBase>() { itemCopy });
  519. if (itemCopy == null)
  520. {
  521. remoteClient.SendAgentAlertMessage(message, false);
  522. return;
  523. }
  524. remoteClient.SendInventoryItemCreateUpdate(itemCopy, 0);
  525. }
  526. // Interop, received special 210 code for ejecting a group member
  527. // this only works within the comms servers domain, and won't work hypergrid
  528. // TODO:FIXME: Use a presense server of some kind to find out where the
  529. // client actually is, and try contacting that region directly to notify them,
  530. // or provide the notification via xmlrpc update queue
  531. else if ((im.dialog == 210))
  532. {
  533. // This is sent from the region that the ejectee was ejected from
  534. // if it's being delivered here, then the ejectee is here
  535. // so we need to send local updates to the agent.
  536. UUID ejecteeID = new UUID(im.toAgentID);
  537. im.imSessionID = UUID.Zero.Guid;
  538. im.dialog = (byte)InstantMessageDialog.MessageFromAgent;
  539. OutgoingInstantMessage(im, ejecteeID);
  540. IClientAPI ejectee = GetActiveRootClient(ejecteeID);
  541. if (ejectee != null)
  542. {
  543. UUID groupID = new UUID(im.imSessionID);
  544. ejectee.SendAgentDropGroup(groupID);
  545. SendAgentGroupDataUpdate(ejectee,true);
  546. }
  547. }
  548. }
  549. private void OnGridInstantMessage(GridInstantMessage msg)
  550. {
  551. if (m_debugEnabled) m_log.InfoFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  552. // Trigger the above event handler
  553. OnInstantMessage(null, msg);
  554. // If a message from a group arrives here, it may need to be forwarded to a local client
  555. if (msg.fromGroup == true)
  556. {
  557. switch (msg.dialog)
  558. {
  559. case (byte)InstantMessageDialog.GroupInvitation:
  560. case (byte)InstantMessageDialog.GroupNotice:
  561. UUID toAgentID = new UUID(msg.toAgentID);
  562. IClientAPI localClient = GetActiveRootClient(toAgentID);
  563. if (localClient != null)
  564. {
  565. localClient.SendInstantMessage(msg);
  566. }
  567. break;
  568. }
  569. }
  570. }
  571. #endregion
  572. #region IGroupsModule Members
  573. public event NewGroupNotice OnNewGroupNotice;
  574. public GroupRecord GetGroupRecord(UUID GroupID)
  575. {
  576. return m_groupData.GetGroupRecord(UUID.Zero.ToString(), GroupID, null);
  577. }
  578. public GroupRecord GetGroupRecord(string name)
  579. {
  580. return m_groupData.GetGroupRecord(UUID.Zero.ToString(), UUID.Zero, name);
  581. }
  582. public void ActivateGroup(IClientAPI remoteClient, UUID groupID)
  583. {
  584. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  585. m_groupData.SetAgentActiveGroup(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  586. // Changing active group changes title, active powers, all kinds of things
  587. // anyone who is in any region that can see this client, should probably be
  588. // updated with new group info. At a minimum, they should get ScenePresence
  589. // updated with new title.
  590. SendAgentGroupDataUpdate(remoteClient, true);
  591. }
  592. /// <summary>
  593. /// Get the Role Titles for an Agent, for a specific group
  594. /// </summary>
  595. public List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID)
  596. {
  597. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  598. List<GroupRolesData> agentRoles = m_groupData.GetAgentGroupRoles(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  599. GroupMembershipData agentMembership = m_groupData.GetAgentGroupMembership(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  600. List<GroupTitlesData> titles = new List<GroupTitlesData>();
  601. foreach (GroupRolesData role in agentRoles)
  602. {
  603. GroupTitlesData title = new GroupTitlesData();
  604. title.Name = role.Name;
  605. if (agentMembership != null)
  606. {
  607. title.Selected = agentMembership.ActiveRole == role.RoleID;
  608. }
  609. title.UUID = role.RoleID;
  610. titles.Add(title);
  611. }
  612. return titles;
  613. }
  614. public List<GroupMembersData> GroupMembersRequest(IClientAPI remoteClient, UUID groupID)
  615. {
  616. if (m_debugEnabled)
  617. m_log.DebugFormat(
  618. "[Groups]: GroupMembersRequest called for {0} from client {1}", groupID, remoteClient.Name);
  619. List<GroupMembersData> data = m_groupData.GetGroupMembers(GetRequestingAgentIDStr(remoteClient), groupID);
  620. if (m_debugEnabled)
  621. {
  622. foreach (GroupMembersData member in data)
  623. {
  624. m_log.DebugFormat("[Groups]: Member({0}) - IsOwner({1})", member.AgentID, member.IsOwner);
  625. }
  626. }
  627. return data;
  628. }
  629. public List<GroupRolesData> GroupRoleDataRequest(IClientAPI remoteClient, UUID groupID)
  630. {
  631. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  632. List<GroupRolesData> data = m_groupData.GetGroupRoles(GetRequestingAgentIDStr(remoteClient), groupID);
  633. return data;
  634. }
  635. public List<GroupRoleMembersData> GroupRoleMembersRequest(IClientAPI remoteClient, UUID groupID)
  636. {
  637. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  638. List<GroupRoleMembersData> data = m_groupData.GetGroupRoleMembers(GetRequestingAgentIDStr(remoteClient), groupID);
  639. if (m_debugEnabled)
  640. {
  641. foreach (GroupRoleMembersData member in data)
  642. {
  643. m_log.DebugFormat("[Groups]: Member({0}) - Role({1})", member.MemberID, member.RoleID);
  644. }
  645. }
  646. return data;
  647. }
  648. public GroupProfileData GroupProfileRequest(IClientAPI remoteClient, UUID groupID)
  649. {
  650. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  651. GroupProfileData profile = new GroupProfileData();
  652. // just to get the OwnerRole...
  653. ExtendedGroupRecord groupInfo = m_groupData.GetGroupRecord(GetRequestingAgentIDStr(remoteClient), groupID, string.Empty);
  654. GroupMembershipData memberInfo = m_groupData.GetAgentGroupMembership(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  655. if (groupInfo != null)
  656. {
  657. profile.AllowPublish = groupInfo.AllowPublish;
  658. profile.Charter = groupInfo.Charter;
  659. profile.FounderID = groupInfo.FounderID;
  660. profile.GroupID = groupID;
  661. profile.GroupMembershipCount = groupInfo.MemberCount;
  662. profile.GroupRolesCount = groupInfo.RoleCount;
  663. profile.InsigniaID = groupInfo.GroupPicture;
  664. profile.MaturePublish = groupInfo.MaturePublish;
  665. profile.MembershipFee = groupInfo.MembershipFee;
  666. profile.Money = 0;
  667. profile.Name = groupInfo.GroupName;
  668. profile.OpenEnrollment = groupInfo.OpenEnrollment;
  669. profile.OwnerRole = groupInfo.OwnerRoleID;
  670. profile.ShowInList = groupInfo.ShowInList;
  671. }
  672. if (memberInfo != null)
  673. {
  674. profile.MemberTitle = memberInfo.GroupTitle;
  675. profile.PowersMask = memberInfo.GroupPowers;
  676. }
  677. return profile;
  678. }
  679. public GroupMembershipData[] GetMembershipData(UUID agentID)
  680. {
  681. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  682. return m_groupData.GetAgentGroupMemberships(UUID.Zero.ToString(), agentID.ToString()).ToArray();
  683. }
  684. public GroupMembershipData GetMembershipData(UUID groupID, UUID agentID)
  685. {
  686. if (m_debugEnabled)
  687. m_log.DebugFormat(
  688. "[Groups]: {0} called with groupID={1}, agentID={2}",
  689. System.Reflection.MethodBase.GetCurrentMethod().Name, groupID, agentID);
  690. return m_groupData.GetAgentGroupMembership(UUID.Zero.ToString(), agentID.ToString(), groupID);
  691. }
  692. public GroupMembershipData GetActiveMembershipData(UUID agentID)
  693. {
  694. string agentIDstr = agentID.ToString();
  695. return m_groupData.GetAgentActiveMembership(agentIDstr, agentIDstr);
  696. }
  697. public void UpdateGroupInfo(IClientAPI remoteClient, UUID groupID, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish)
  698. {
  699. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  700. // Note: Permissions checking for modification rights is handled by the Groups Server/Service
  701. string reason = string.Empty;
  702. if (!m_groupData.UpdateGroup(GetRequestingAgentIDStr(remoteClient), groupID, charter, showInList, insigniaID, membershipFee,
  703. openEnrollment, allowPublish, maturePublish, out reason))
  704. remoteClient.SendAgentAlertMessage(reason, false);
  705. }
  706. public void SetGroupAcceptNotices(IClientAPI remoteClient, UUID groupID, bool acceptNotices, bool listInProfile)
  707. {
  708. // Note: Permissions checking for modification rights is handled by the Groups Server/Service
  709. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  710. m_groupData.UpdateMembership(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID, acceptNotices, listInProfile);
  711. }
  712. public UUID CreateGroup(IClientAPI remoteClient, string name, string charter, bool showInList, UUID insigniaID, int membershipFee, bool openEnrollment, bool allowPublish, bool maturePublish)
  713. {
  714. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called in {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, remoteClient.Scene.RegionInfo.RegionName);
  715. if (m_groupData.GetGroupRecord(GetRequestingAgentIDStr(remoteClient), UUID.Zero, name) != null)
  716. {
  717. remoteClient.SendCreateGroupReply(UUID.Zero, false, "A group with the same name already exists.");
  718. return UUID.Zero;
  719. }
  720. // check user level
  721. ScenePresence avatar = null;
  722. Scene scene = (Scene)remoteClient.Scene;
  723. scene.TryGetScenePresence(remoteClient.AgentId, out avatar);
  724. if (avatar != null)
  725. {
  726. if (avatar.GodController.UserLevel < m_levelGroupCreate)
  727. {
  728. remoteClient.SendCreateGroupReply(UUID.Zero, false, String.Format("Insufficient permissions to create a group. Requires level {0}", m_levelGroupCreate));
  729. return UUID.Zero;
  730. }
  731. }
  732. // check funds
  733. // is there a money module present ?
  734. IMoneyModule money = scene.RequestModuleInterface<IMoneyModule>();
  735. if (money != null)
  736. {
  737. // do the transaction, that is if the agent has got sufficient funds
  738. if (!money.AmountCovered(remoteClient.AgentId, money.GroupCreationCharge)) {
  739. remoteClient.SendCreateGroupReply(UUID.Zero, false, "Insufficient funds to create a group.");
  740. return UUID.Zero;
  741. }
  742. }
  743. string reason = string.Empty;
  744. UUID groupID = m_groupData.CreateGroup(remoteClient.AgentId, name, charter, showInList, insigniaID, membershipFee, openEnrollment,
  745. allowPublish, maturePublish, remoteClient.AgentId, out reason);
  746. if (groupID != UUID.Zero)
  747. {
  748. if (money != null && money.GroupCreationCharge > 0)
  749. money.ApplyCharge(remoteClient.AgentId, money.GroupCreationCharge, MoneyTransactionType.GroupCreate, name);
  750. remoteClient.SendCreateGroupReply(groupID, true, "Group created successfully");
  751. // Update the founder with new group information.
  752. SendAgentGroupDataUpdate(remoteClient, true);
  753. }
  754. else
  755. remoteClient.SendCreateGroupReply(groupID, false, reason);
  756. return groupID;
  757. }
  758. public GroupNoticeData[] GroupNoticesListRequest(IClientAPI remoteClient, UUID groupID)
  759. {
  760. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  761. // ToDo: check if agent is a member of group and is allowed to see notices?
  762. List<ExtendedGroupNoticeData> notices = m_groupData.GetGroupNotices(GetRequestingAgentIDStr(remoteClient), groupID);
  763. List<GroupNoticeData> os_notices = new List<GroupNoticeData>();
  764. foreach (ExtendedGroupNoticeData n in notices)
  765. {
  766. GroupNoticeData osn = n.ToGroupNoticeData();
  767. os_notices.Add(osn);
  768. }
  769. return os_notices.ToArray();
  770. }
  771. /// <summary>
  772. /// Get the title of the agent's current role.
  773. /// </summary>
  774. public string GetGroupTitle(UUID avatarID)
  775. {
  776. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  777. GroupMembershipData membership = m_groupData.GetAgentActiveMembership(UUID.Zero.ToString(), avatarID.ToString());
  778. if (membership != null)
  779. {
  780. return membership.GroupTitle;
  781. }
  782. return string.Empty;
  783. }
  784. /// <summary>
  785. /// Change the current Active Group Role for Agent
  786. /// </summary>
  787. public void GroupTitleUpdate(IClientAPI remoteClient, UUID groupID, UUID titleRoleID)
  788. {
  789. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  790. m_groupData.SetAgentActiveGroupRole(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID, titleRoleID);
  791. // TODO: Not sure what all is needed here, but if the active group role change is for the group
  792. // the client currently has set active, then we need to do a scene presence update too
  793. // if (m_groupData.GetAgentActiveMembership(GetRequestingAgentID(remoteClient)).GroupID == GroupID)
  794. SendDataUpdate(remoteClient, true);
  795. }
  796. public void GroupRoleUpdate(IClientAPI remoteClient, UUID groupID, UUID roleID, string name, string description, string title, ulong powers, byte updateType)
  797. {
  798. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  799. // Security Checks are handled in the Groups Service.
  800. switch ((OpenMetaverse.GroupRoleUpdate)updateType)
  801. {
  802. case OpenMetaverse.GroupRoleUpdate.Create:
  803. string reason = string.Empty;
  804. if (!m_groupData.AddGroupRole(GetRequestingAgentIDStr(remoteClient), groupID, UUID.Random(), name, description, title, powers, out reason))
  805. remoteClient.SendAgentAlertMessage("Unable to create role: " + reason, false);
  806. break;
  807. case OpenMetaverse.GroupRoleUpdate.Delete:
  808. m_groupData.RemoveGroupRole(GetRequestingAgentIDStr(remoteClient), groupID, roleID);
  809. break;
  810. case OpenMetaverse.GroupRoleUpdate.UpdateAll:
  811. case OpenMetaverse.GroupRoleUpdate.UpdateData:
  812. case OpenMetaverse.GroupRoleUpdate.UpdatePowers:
  813. if (m_debugEnabled)
  814. {
  815. GroupPowers gp = (GroupPowers)powers;
  816. m_log.DebugFormat("[Groups]: Role ({0}) updated with Powers ({1}) ({2})", name, powers.ToString(), gp.ToString());
  817. }
  818. m_groupData.UpdateGroupRole(GetRequestingAgentIDStr(remoteClient), groupID, roleID, name, description, title, powers);
  819. break;
  820. case OpenMetaverse.GroupRoleUpdate.NoUpdate:
  821. default:
  822. // No Op
  823. break;
  824. }
  825. // TODO: This update really should send out updates for everyone in the role that just got changed.
  826. SendDataUpdate(remoteClient, true);
  827. }
  828. public void GroupRoleChanges(IClientAPI remoteClient, UUID groupID, UUID roleID, UUID memberID, uint changes)
  829. {
  830. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  831. // Todo: Security check
  832. switch (changes)
  833. {
  834. case 0:
  835. // Add
  836. m_groupData.AddAgentToGroupRole(GetRequestingAgentIDStr(remoteClient), memberID.ToString(), groupID, roleID);
  837. break;
  838. case 1:
  839. // Remove
  840. m_groupData.RemoveAgentFromGroupRole(GetRequestingAgentIDStr(remoteClient), memberID.ToString(), groupID, roleID);
  841. break;
  842. default:
  843. m_log.ErrorFormat("[Groups]: {0} does not understand changes == {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, changes);
  844. break;
  845. }
  846. // TODO: This update really should send out updates for everyone in the role that just got changed.
  847. SendDataUpdate(remoteClient, true);
  848. }
  849. public void GroupNoticeRequest(IClientAPI remoteClient, UUID groupNoticeID)
  850. {
  851. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called for notice {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, groupNoticeID);
  852. GridInstantMessage msg = CreateGroupNoticeIM(remoteClient.AgentId, groupNoticeID, (byte)InstantMessageDialog.GroupNoticeRequested);
  853. OutgoingInstantMessage(msg, GetRequestingAgentID(remoteClient));
  854. }
  855. public GridInstantMessage CreateGroupNoticeIM(UUID agentID, UUID groupNoticeID, byte dialog)
  856. {
  857. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  858. GridInstantMessage msg = new GridInstantMessage();
  859. byte[] bucket;
  860. msg.imSessionID = groupNoticeID.Guid;
  861. msg.toAgentID = agentID.Guid;
  862. msg.dialog = dialog;
  863. // msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.GroupNotice;
  864. msg.fromGroup = true;
  865. msg.offline = (byte)0;
  866. msg.ParentEstateID = 0;
  867. msg.Position = Vector3.Zero;
  868. msg.RegionID = UUID.Zero.Guid;
  869. GroupNoticeInfo info = m_groupData.GetGroupNotice(agentID.ToString(), groupNoticeID);
  870. if (info != null)
  871. {
  872. msg.fromAgentID = info.GroupID.Guid;
  873. msg.timestamp = info.noticeData.Timestamp;
  874. msg.fromAgentName = info.noticeData.FromName;
  875. msg.message = info.noticeData.Subject + "|" + info.Message;
  876. if (info.noticeData.HasAttachment)
  877. {
  878. byte[] name = System.Text.Encoding.UTF8.GetBytes(info.noticeData.AttachmentName);
  879. bucket = new byte[19 + name.Length];
  880. bucket[0] = 1; // has attachment?
  881. bucket[1] = info.noticeData.AttachmentType; // attachment type
  882. info.GroupID.ToBytes(bucket, 2);
  883. name.CopyTo(bucket, 18);
  884. }
  885. else
  886. {
  887. bucket = new byte[19];
  888. bucket[0] = 0; // Has att?
  889. bucket[1] = 0; // type
  890. bucket[18] = 0; // null terminated
  891. }
  892. msg.binaryBucket = bucket;
  893. }
  894. else
  895. {
  896. m_log.DebugFormat("[Groups]: Group Notice {0} not found, composing empty message.", groupNoticeID);
  897. msg.fromAgentID = UUID.Zero.Guid;
  898. msg.timestamp = (uint)Util.UnixTimeSinceEpoch(); ;
  899. msg.fromAgentName = string.Empty;
  900. msg.message = string.Empty;
  901. msg.binaryBucket = new byte[0];
  902. }
  903. return msg;
  904. }
  905. public void JoinGroupRequest(IClientAPI remoteClient, UUID groupID)
  906. {
  907. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  908. GroupRecord groupRecord = GetGroupRecord(groupID);
  909. IMoneyModule money = remoteClient.Scene.RequestModuleInterface<IMoneyModule>();
  910. // Should check to see if there's an outstanding invitation
  911. if (money != null && groupRecord.MembershipFee > 0)
  912. {
  913. // Does the agent have the funds to cover the group join fee?
  914. if (!money.AmountCovered(remoteClient.AgentId, groupRecord.MembershipFee))
  915. {
  916. remoteClient.SendAlertMessage("Insufficient funds to join the group.");
  917. remoteClient.SendJoinGroupReply(groupID, false);
  918. return;
  919. }
  920. }
  921. string reason = string.Empty;
  922. if (m_groupData.AddAgentToGroup(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID, UUID.Zero, string.Empty, out reason))
  923. {
  924. if (money != null && groupRecord.MembershipFee > 0)
  925. money.ApplyCharge(remoteClient.AgentId, groupRecord.MembershipFee, MoneyTransactionType.GroupJoin, groupRecord.GroupName);
  926. remoteClient.SendJoinGroupReply(groupID, true);
  927. // Should this send updates to everyone in the group?
  928. SendAgentGroupDataUpdate(remoteClient, true);
  929. if (reason != string.Empty)
  930. // A warning
  931. remoteClient.SendAlertMessage("Warning: " + reason);
  932. }
  933. else
  934. remoteClient.SendJoinGroupReply(groupID, false);
  935. }
  936. public void LeaveGroupRequest(IClientAPI remoteClient, UUID groupID)
  937. {
  938. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  939. m_groupData.RemoveAgentFromGroup(GetRequestingAgentIDStr(remoteClient), GetRequestingAgentIDStr(remoteClient), groupID);
  940. remoteClient.SendLeaveGroupReply(groupID, true);
  941. remoteClient.SendAgentDropGroup(groupID);
  942. // SL sends out notifcations to the group messaging session that the person has left
  943. // Should this also update everyone who is in the group?
  944. SendAgentGroupDataUpdate(remoteClient, true);
  945. }
  946. public void EjectGroupMemberRequest(IClientAPI remoteClient, UUID groupID, UUID ejecteeID)
  947. {
  948. EjectGroupMember(remoteClient, GetRequestingAgentID(remoteClient), groupID, ejecteeID);
  949. }
  950. public void EjectGroupMember(IClientAPI remoteClient, UUID agentID, UUID groupID, UUID ejecteeID)
  951. {
  952. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  953. // Todo: Security check?
  954. m_groupData.RemoveAgentFromGroup(agentID.ToString(), ejecteeID.ToString(), groupID);
  955. string agentName;
  956. RegionInfo regionInfo;
  957. // remoteClient provided or just agentID?
  958. if (remoteClient != null)
  959. {
  960. agentName = remoteClient.Name;
  961. regionInfo = remoteClient.Scene.RegionInfo;
  962. remoteClient.SendEjectGroupMemberReply(agentID, groupID, true);
  963. }
  964. else
  965. {
  966. IClientAPI client = GetActiveClient(agentID);
  967. if (client != null)
  968. {
  969. agentName = client.Name;
  970. regionInfo = client.Scene.RegionInfo;
  971. client.SendEjectGroupMemberReply(agentID, groupID, true);
  972. }
  973. else
  974. {
  975. regionInfo = m_sceneList[0].RegionInfo;
  976. UserAccount acc = m_sceneList[0].UserAccountService.GetUserAccount(regionInfo.ScopeID, agentID);
  977. if (acc != null)
  978. {
  979. agentName = acc.FirstName + " " + acc.LastName;
  980. }
  981. else
  982. {
  983. agentName = "Unknown member";
  984. }
  985. }
  986. }
  987. GroupRecord groupInfo = m_groupData.GetGroupRecord(agentID.ToString(), groupID, null);
  988. UserAccount account = m_sceneList[0].UserAccountService.GetUserAccount(regionInfo.ScopeID, ejecteeID);
  989. if ((groupInfo == null) || (account == null))
  990. {
  991. return;
  992. }
  993. IClientAPI ejecteeClient = GetActiveRootClient(ejecteeID);
  994. // Send Message to Ejectee
  995. GridInstantMessage msg = new GridInstantMessage();
  996. // if local send a normal message
  997. if(ejecteeClient != null)
  998. {
  999. msg.imSessionID = UUID.Zero.Guid;
  1000. msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.MessageFromAgent;
  1001. // also execute and send update
  1002. ejecteeClient.SendAgentDropGroup(groupID);
  1003. SendAgentGroupDataUpdate(ejecteeClient,true);
  1004. }
  1005. else // send
  1006. {
  1007. // Interop, received special 210 code for ejecting a group member
  1008. // this only works within the comms servers domain, and won't work hypergrid
  1009. // TODO:FIXME: Use a presence server of some kind to find out where the
  1010. // client actually is, and try contacting that region directly to notify them,
  1011. // or provide the notification via xmlrpc update queue
  1012. msg.imSessionID = groupInfo.GroupID.Guid;
  1013. msg.dialog = (byte)210; //interop
  1014. }
  1015. msg.fromAgentID = agentID.Guid;
  1016. // msg.fromAgentID = info.GroupID;
  1017. msg.toAgentID = ejecteeID.Guid;
  1018. //msg.timestamp = (uint)Util.UnixTimeSinceEpoch();
  1019. msg.timestamp = 0;
  1020. msg.fromAgentName = agentName;
  1021. msg.message = string.Format("You have been ejected from '{1}' by {0}.", agentName, groupInfo.GroupName);
  1022. msg.fromGroup = false;
  1023. msg.offline = (byte)0;
  1024. msg.ParentEstateID = 0;
  1025. msg.Position = Vector3.Zero;
  1026. msg.RegionID = regionInfo.RegionID.Guid;
  1027. msg.binaryBucket = new byte[0];
  1028. OutgoingInstantMessage(msg, ejecteeID);
  1029. // Message to ejector
  1030. msg = new GridInstantMessage();
  1031. msg.imSessionID = UUID.Zero.Guid;
  1032. msg.fromAgentID = agentID.Guid;
  1033. msg.toAgentID = agentID.Guid;
  1034. msg.timestamp = 0;
  1035. msg.fromAgentName = agentName;
  1036. if (account != null)
  1037. {
  1038. msg.message = string.Format("{2} has been ejected from '{1}' by {0}.", agentName, groupInfo.GroupName, account.FirstName + " " + account.LastName);
  1039. }
  1040. else
  1041. {
  1042. msg.message = string.Format("{2} has been ejected from '{1}' by {0}.", agentName, groupInfo.GroupName, "Unknown member");
  1043. }
  1044. msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.MessageFromAgent;
  1045. msg.fromGroup = false;
  1046. msg.offline = (byte)0;
  1047. msg.ParentEstateID = 0;
  1048. msg.Position = Vector3.Zero;
  1049. msg.RegionID = regionInfo.RegionID.Guid;
  1050. msg.binaryBucket = new byte[0];
  1051. OutgoingInstantMessage(msg, agentID);
  1052. }
  1053. public void InviteGroupRequest(IClientAPI remoteClient, UUID groupID, UUID invitedAgentID, UUID roleID)
  1054. {
  1055. InviteGroup(remoteClient, GetRequestingAgentID(remoteClient), groupID, invitedAgentID, roleID);
  1056. }
  1057. public void InviteGroup(IClientAPI remoteClient, UUID agentID, UUID groupID, UUID invitedAgentID, UUID roleID)
  1058. {
  1059. if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  1060. string agentName = m_UserManagement.GetUserName(agentID);
  1061. RegionInfo regionInfo = m_sceneList[0].RegionInfo;
  1062. GroupRecord group = m_groupData.GetGroupRecord(agentID.ToString(), groupID, null);
  1063. if (group == null)
  1064. {
  1065. m_log.DebugFormat("[Groups]: No such group {0}", groupID);
  1066. return;
  1067. }
  1068. // Todo: Security check, probably also want to send some kind of notification
  1069. UUID InviteID = UUID.Random();
  1070. if (m_groupData.AddAgentToGroupInvite(agentID.ToString(), InviteID, groupID, roleID, invitedAgentID.ToString()))
  1071. {
  1072. if (m_msgTransferModule != null)
  1073. {
  1074. Guid inviteUUID = InviteID.Guid;
  1075. GridInstantMessage msg = new GridInstantMessage();
  1076. msg.imSessionID = inviteUUID;
  1077. // msg.fromAgentID = agentID.Guid;
  1078. msg.fromAgentID = groupID.Guid;
  1079. msg.toAgentID = invitedAgentID.Guid;
  1080. //msg.timestamp = (uint)Util.UnixTimeSinceEpoch();
  1081. msg.timestamp = 0;
  1082. msg.fromAgentName = agentName;
  1083. 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);
  1084. msg.dialog = (byte)OpenMetaverse.InstantMessageDialog.GroupInvitation;
  1085. msg.fromGroup = true;
  1086. msg.offline = (byte)0;
  1087. msg.ParentEstateID = 0;
  1088. msg.Position = Vector3.Zero;
  1089. msg.RegionID = regionInfo.RegionID.Guid;
  1090. msg.binaryBucket = new byte[20];
  1091. OutgoingInstantMessage(msg, invitedAgentID);
  1092. }
  1093. }
  1094. }
  1095. public List<DirGroupsReplyData> FindGroups(IClientAPI remoteClient, string query)
  1096. {
  1097. return m_groupData.FindGroups(remoteClient.AgentId.ToString(), query);
  1098. }
  1099. #endregion
  1100. #region Client/Update Tools
  1101. private IClientAPI GetActiveRootClient(UUID agentID)
  1102. {
  1103. foreach (Scene scene in m_sceneList)
  1104. {
  1105. ScenePresence sp = scene.GetScenePresence(agentID);
  1106. if (sp != null && !sp.IsChildAgent && !sp.IsDeleted)
  1107. {
  1108. return sp.ControllingClient;
  1109. }
  1110. }
  1111. return null;
  1112. }
  1113. /// <summary>
  1114. /// Try to find an active IClientAPI reference for agentID giving preference to root connections
  1115. /// </summary>
  1116. private IClientAPI GetActiveClient(UUID agentID)
  1117. {
  1118. IClientAPI child = null;
  1119. // Try root avatar first
  1120. foreach (Scene scene in m_sceneList)
  1121. {
  1122. ScenePresence sp = scene.GetScenePresence(agentID);
  1123. if (sp != null&& !sp.IsDeleted)
  1124. {
  1125. if (!sp.IsChildAgent)
  1126. {
  1127. return sp.ControllingClient;
  1128. }
  1129. else
  1130. {
  1131. child = sp.ControllingClient;
  1132. }
  1133. }
  1134. }
  1135. // If we didn't find a root, then just return whichever child we found, or null if none
  1136. return child;
  1137. }
  1138. private void SendScenePresenceUpdate(UUID AgentID, string Title)
  1139. {
  1140. if (m_debugEnabled) m_log.DebugFormat("[Groups]: Updating scene title for {0} with title: {1}", AgentID, Title);
  1141. ScenePresence presence = null;
  1142. foreach (Scene scene in m_sceneList)
  1143. {
  1144. presence = scene.GetScenePresence(AgentID);
  1145. if (presence != null)
  1146. {
  1147. if (presence.Grouptitle != Title)
  1148. {
  1149. presence.Grouptitle = Title;
  1150. if (! presence.IsChildAgent)
  1151. presence.SendAvatarDataToAllAgents();
  1152. }
  1153. }
  1154. }
  1155. }
  1156. public void SendAgentGroupDataUpdate(IClientAPI remoteClient)
  1157. {
  1158. SendAgentGroupDataUpdate(remoteClient, true);
  1159. }
  1160. /// <summary>
  1161. /// Tell remoteClient about its agent groups, and optionally send title to others
  1162. /// </summary>
  1163. private void SendAgentGroupDataUpdate(IClientAPI remoteClient, bool tellOthers)
  1164. {
  1165. if (m_debugEnabled) m_log.InfoFormat("[Groups]: {0} called for {1}", System.Reflection.MethodBase.GetCurrentMethod().Name, remoteClient.Name);
  1166. // NPCs currently don't have a CAPs structure or event queues. There is a strong argument for conveying this information
  1167. // to them anyway since it makes writing server-side bots a lot easier, but for now we don't do anything.
  1168. if (remoteClient.SceneAgent.PresenceType == PresenceType.Npc)
  1169. return;
  1170. // TODO: All the client update functions need to be reexamined because most do too much and send too much stuff
  1171. UUID agentID = GetRequestingAgentID(remoteClient);
  1172. SendDataUpdate(remoteClient, tellOthers);
  1173. GroupMembershipData[] membershipArray = GetProfileListedGroupMemberships(remoteClient, agentID);
  1174. remoteClient.UpdateGroupMembership(membershipArray);
  1175. remoteClient.SendAgentGroupDataUpdate(agentID, membershipArray);
  1176. }
  1177. /// <summary>
  1178. /// Get a list of groups memberships for the agent that are marked "ListInProfile"
  1179. /// (unless that agent has a godLike aspect, in which case get all groups)
  1180. /// </summary>
  1181. /// <param name="dataForAgentID"></param>
  1182. /// <returns></returns>
  1183. private GroupMembershipData[] GetProfileListedGroupMemberships(IClientAPI requestingClient, UUID dataForAgentID)
  1184. {
  1185. List<GroupMembershipData> membershipData = m_groupData.GetAgentGroupMemberships(requestingClient.AgentId.ToString(), dataForAgentID.ToString());
  1186. GroupMembershipData[] membershipArray;
  1187. // cScene and property accessor 'isGod' are in support of the opertions to bypass 'hidden' group attributes for
  1188. // those with a GodLike aspect.
  1189. Scene cScene = (Scene)requestingClient.Scene;
  1190. bool isGod = cScene.Permissions.IsGod(requestingClient.AgentId);
  1191. if (isGod)
  1192. {
  1193. membershipArray = membershipData.ToArray();
  1194. }
  1195. else
  1196. {
  1197. if (requestingClient.AgentId != dataForAgentID)
  1198. {
  1199. Predicate<GroupMembershipData> showInProfile = delegate(GroupMembershipData membership)
  1200. {
  1201. return membership.ListInProfile;
  1202. };
  1203. membershipArray = membershipData.FindAll(showInProfile).ToArray();
  1204. }
  1205. else
  1206. {
  1207. membershipArray = membershipData.ToArray();
  1208. }
  1209. }
  1210. if (m_debugEnabled)
  1211. {
  1212. m_log.InfoFormat("[Groups]: Get group membership information for {0} requested by {1}", dataForAgentID, requestingClient.AgentId);
  1213. foreach (GroupMembershipData membership in membershipArray)
  1214. {
  1215. m_log.InfoFormat("[Groups]: {0} :: {1} - {2} - {3}", dataForAgentID, membership.GroupName, membership.GroupTitle, membership.GroupPowers);
  1216. }
  1217. }
  1218. return membershipArray;
  1219. }
  1220. //tell remoteClient about its agent group info, and optionally send title to others
  1221. private void SendDataUpdate(IClientAPI remoteClient, bool tellOthers)
  1222. {
  1223. if (m_debugEnabled) m_log.DebugFormat("[GROUPS]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  1224. UUID activeGroupID = UUID.Zero;
  1225. string activeGroupTitle = string.Empty;
  1226. string activeGroupName = string.Empty;
  1227. ulong activeGroupPowers = (ulong)GroupPowers.None;
  1228. UUID agentID = GetRequestingAgentID(remoteClient);
  1229. GroupMembershipData membership = m_groupData.GetAgentActiveMembership(agentID.ToString(), agentID.ToString());
  1230. if (membership != null)
  1231. {
  1232. activeGroupID = membership.GroupID;
  1233. activeGroupTitle = membership.GroupTitle;
  1234. activeGroupPowers = membership.GroupPowers;
  1235. activeGroupName = membership.GroupName;
  1236. }
  1237. UserAccount account = m_sceneList[0].UserAccountService.GetUserAccount(remoteClient.Scene.RegionInfo.ScopeID, agentID);
  1238. string firstname, lastname;
  1239. if (account != null)
  1240. {
  1241. firstname = account.FirstName;
  1242. lastname = account.LastName;
  1243. }
  1244. else
  1245. {
  1246. firstname = "Unknown";
  1247. lastname = "Unknown";
  1248. }
  1249. remoteClient.SendAgentDataUpdate(agentID, activeGroupID, firstname,
  1250. lastname, activeGroupPowers, activeGroupName,
  1251. activeGroupTitle);
  1252. if (tellOthers)
  1253. SendScenePresenceUpdate(agentID, activeGroupTitle);
  1254. ScenePresence sp = (ScenePresence)remoteClient.SceneAgent;
  1255. if (sp != null)
  1256. sp.Grouptitle = activeGroupTitle;
  1257. }
  1258. #endregion
  1259. #region IM Backed Processes
  1260. private void OutgoingInstantMessage(GridInstantMessage msg, UUID msgTo)
  1261. {
  1262. if (m_debugEnabled) m_log.InfoFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name);
  1263. IClientAPI localClient = GetActiveRootClient(msgTo);
  1264. if (localClient != null)
  1265. {
  1266. if (m_debugEnabled) m_log.InfoFormat("[Groups]: MsgTo ({0}) is local, delivering directly", localClient.Name);
  1267. localClient.SendInstantMessage(msg);
  1268. }
  1269. else if (m_msgTransferModule != null)
  1270. {
  1271. if (m_debugEnabled) m_log.InfoFormat("[Groups]: MsgTo ({0}) is not local, delivering via TransferModule", msgTo);
  1272. m_msgTransferModule.SendInstantMessage(msg, delegate(bool success) { if (m_debugEnabled) m_log.DebugFormat("[Groups]: Message Sent: {0}", success?"Succeeded":"Failed"); });
  1273. }
  1274. }
  1275. public void NotifyChange(UUID groupID)
  1276. {
  1277. // Notify all group members of a chnge in group roles and/or
  1278. // permissions
  1279. //
  1280. }
  1281. #endregion
  1282. private string GetRequestingAgentIDStr(IClientAPI client)
  1283. {
  1284. return GetRequestingAgentID(client).ToString();
  1285. }
  1286. private UUID GetRequestingAgentID(IClientAPI client)
  1287. {
  1288. UUID requestingAgentID = UUID.Zero;
  1289. if (client != null)
  1290. {
  1291. requestingAgentID = client.AgentId;
  1292. }
  1293. return requestingAgentID;
  1294. }
  1295. }
  1296. }