diff options
Diffstat (limited to 'OpenSim')
11 files changed, 316 insertions, 196 deletions
diff --git a/OpenSim/Addons/Groups/GroupsMessagingModule.cs b/OpenSim/Addons/Groups/GroupsMessagingModule.cs index 31e9175..be76ef1 100644 --- a/OpenSim/Addons/Groups/GroupsMessagingModule.cs +++ b/OpenSim/Addons/Groups/GroupsMessagingModule.cs | |||
@@ -39,6 +39,7 @@ using OpenSim.Region.Framework.Interfaces; | |||
39 | using OpenSim.Region.Framework.Scenes; | 39 | using OpenSim.Region.Framework.Scenes; |
40 | using OpenSim.Services.Interfaces; | 40 | using OpenSim.Services.Interfaces; |
41 | using PresenceInfo = OpenSim.Services.Interfaces.PresenceInfo; | 41 | using PresenceInfo = OpenSim.Services.Interfaces.PresenceInfo; |
42 | using GridRegion = OpenSim.Services.Interfaces.GridRegion; | ||
42 | 43 | ||
43 | namespace OpenSim.Groups | 44 | namespace OpenSim.Groups |
44 | { | 45 | { |
@@ -79,6 +80,10 @@ namespace OpenSim.Groups | |||
79 | 80 | ||
80 | private int m_usersOnlineCacheExpirySeconds = 20; | 81 | private int m_usersOnlineCacheExpirySeconds = 20; |
81 | 82 | ||
83 | private Dictionary<UUID, List<string>> m_groupsAgentsDroppedFromChatSession = new Dictionary<UUID, List<string>>(); | ||
84 | private Dictionary<UUID, List<string>> m_groupsAgentsInvitedToChatSession = new Dictionary<UUID, List<string>>(); | ||
85 | |||
86 | |||
82 | #region Region Module interfaceBase Members | 87 | #region Region Module interfaceBase Members |
83 | 88 | ||
84 | public void Initialise(IConfigSource config) | 89 | public void Initialise(IConfigSource config) |
@@ -227,62 +232,50 @@ namespace OpenSim.Groups | |||
227 | 232 | ||
228 | public void SendMessageToGroup(GridInstantMessage im, UUID groupID) | 233 | public void SendMessageToGroup(GridInstantMessage im, UUID groupID) |
229 | { | 234 | { |
230 | List<GroupMembersData> groupMembers = m_groupData.GetGroupMembers(new UUID(im.fromAgentID).ToString(), groupID); | 235 | UUID fromAgentID = new UUID(im.fromAgentID); |
236 | List<GroupMembersData> groupMembers = m_groupData.GetGroupMembers(fromAgentID.ToString(), groupID); | ||
231 | int groupMembersCount = groupMembers.Count; | 237 | int groupMembersCount = groupMembers.Count; |
238 | PresenceInfo[] onlineAgents = null; | ||
232 | 239 | ||
233 | if (m_messageOnlineAgentsOnly) | 240 | // In V2 we always only send to online members. |
234 | { | 241 | // Sending to offline members is not an option. |
235 | string[] t1 = groupMembers.ConvertAll<string>(gmd => gmd.AgentID.ToString()).ToArray(); | 242 | string[] t1 = groupMembers.ConvertAll<string>(gmd => gmd.AgentID.ToString()).ToArray(); |
236 | 243 | ||
237 | // We cache in order not to overwhlem the presence service on large grids with many groups. This does | 244 | // We cache in order not to overwhlem the presence service on large grids with many groups. This does |
238 | // mean that members coming online will not see all group members until after m_usersOnlineCacheExpirySeconds has elapsed. | 245 | // mean that members coming online will not see all group members until after m_usersOnlineCacheExpirySeconds has elapsed. |
239 | // (assuming this is the same across all grid simulators). | 246 | // (assuming this is the same across all grid simulators). |
240 | PresenceInfo[] onlineAgents; | 247 | if (!m_usersOnlineCache.TryGetValue(groupID, out onlineAgents)) |
241 | if (!m_usersOnlineCache.TryGetValue(groupID, out onlineAgents)) | 248 | { |
242 | { | 249 | onlineAgents = m_presenceService.GetAgents(t1); |
243 | onlineAgents = m_presenceService.GetAgents(t1); | 250 | m_usersOnlineCache.Add(groupID, onlineAgents, m_usersOnlineCacheExpirySeconds); |
244 | m_usersOnlineCache.Add(groupID, onlineAgents, m_usersOnlineCacheExpirySeconds); | 251 | } |
245 | } | ||
246 | 252 | ||
247 | HashSet<string> onlineAgentsUuidSet = new HashSet<string>(); | 253 | HashSet<string> onlineAgentsUuidSet = new HashSet<string>(); |
248 | Array.ForEach<PresenceInfo>(onlineAgents, pi => onlineAgentsUuidSet.Add(pi.UserID)); | 254 | Array.ForEach<PresenceInfo>(onlineAgents, pi => onlineAgentsUuidSet.Add(pi.UserID)); |
249 | 255 | ||
250 | groupMembers = groupMembers.Where(gmd => onlineAgentsUuidSet.Contains(gmd.AgentID.ToString())).ToList(); | 256 | groupMembers = groupMembers.Where(gmd => onlineAgentsUuidSet.Contains(gmd.AgentID.ToString())).ToList(); |
251 | 257 | ||
252 | // if (m_debugEnabled) | 258 | // if (m_debugEnabled) |
253 | // m_log.DebugFormat( | 259 | // m_log.DebugFormat( |
254 | // "[Groups.Messaging]: SendMessageToGroup called for group {0} with {1} visible members, {2} online", | 260 | // "[Groups.Messaging]: SendMessageToGroup called for group {0} with {1} visible members, {2} online", |
255 | // groupID, groupMembersCount, groupMembers.Count()); | 261 | // groupID, groupMembersCount, groupMembers.Count()); |
256 | } | ||
257 | else | ||
258 | { | ||
259 | if (m_debugEnabled) | ||
260 | m_log.DebugFormat( | ||
261 | "[Groups.Messaging]: SendMessageToGroup called for group {0} with {1} visible members", | ||
262 | groupID, groupMembers.Count); | ||
263 | } | ||
264 | 262 | ||
265 | int requestStartTick = Environment.TickCount; | 263 | int requestStartTick = Environment.TickCount; |
266 | 264 | ||
267 | // Copy Message | 265 | im.imSessionID = groupID.Guid; |
268 | GridInstantMessage msg = new GridInstantMessage(); | 266 | im.fromGroup = true; |
269 | msg.imSessionID = groupID.Guid; | 267 | IClientAPI thisClient = GetActiveClient(fromAgentID); |
270 | msg.fromAgentName = im.fromAgentName; | 268 | if (thisClient != null) |
271 | msg.message = im.message; | 269 | { |
272 | msg.dialog = im.dialog; | 270 | im.RegionID = thisClient.Scene.RegionInfo.RegionID.Guid; |
273 | msg.offline = im.offline; | 271 | } |
274 | msg.ParentEstateID = im.ParentEstateID; | ||
275 | msg.Position = im.Position; | ||
276 | msg.RegionID = im.RegionID; | ||
277 | msg.binaryBucket = im.binaryBucket; | ||
278 | msg.timestamp = (uint)Util.UnixTimeSinceEpoch(); | ||
279 | |||
280 | msg.fromAgentID = im.fromAgentID; | ||
281 | msg.fromGroup = true; | ||
282 | 272 | ||
283 | // Send to self first of all | 273 | // Send to self first of all |
284 | msg.toAgentID = msg.fromAgentID; | 274 | im.toAgentID = im.fromAgentID; |
285 | ProcessMessageFromGroupSession(msg); | 275 | ProcessMessageFromGroupSession(im); |
276 | |||
277 | List<UUID> regions = new List<UUID>(); | ||
278 | List<UUID> clientsAlreadySent = new List<UUID>(); | ||
286 | 279 | ||
287 | // Then send to everybody else | 280 | // Then send to everybody else |
288 | foreach (GroupMembersData member in groupMembers) | 281 | foreach (GroupMembersData member in groupMembers) |
@@ -290,27 +283,50 @@ namespace OpenSim.Groups | |||
290 | if (member.AgentID.Guid == im.fromAgentID) | 283 | if (member.AgentID.Guid == im.fromAgentID) |
291 | continue; | 284 | continue; |
292 | 285 | ||
293 | if (m_groupData.hasAgentDroppedGroupChatSession(member.AgentID.ToString(), groupID)) | 286 | if (hasAgentDroppedGroupChatSession(member.AgentID.ToString(), groupID)) |
294 | { | 287 | { |
295 | // Don't deliver messages to people who have dropped this session | 288 | // Don't deliver messages to people who have dropped this session |
296 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: {0} has dropped session, not delivering to them", member.AgentID); | 289 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: {0} has dropped session, not delivering to them", member.AgentID); |
297 | continue; | 290 | continue; |
298 | } | 291 | } |
299 | 292 | ||
300 | msg.toAgentID = member.AgentID.Guid; | 293 | im.toAgentID = member.AgentID.Guid; |
301 | 294 | ||
302 | IClientAPI client = GetActiveClient(member.AgentID); | 295 | IClientAPI client = GetActiveClient(member.AgentID); |
303 | if (client == null) | 296 | if (client == null) |
304 | { | 297 | { |
305 | // If they're not local, forward across the grid | 298 | // If they're not local, forward across the grid |
299 | // BUT do it only once per region, please! Sim would be even better! | ||
306 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Delivering to {0} via Grid", member.AgentID); | 300 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Delivering to {0} via Grid", member.AgentID); |
307 | m_msgTransferModule.SendInstantMessage(msg, delegate(bool success) { }); | 301 | |
302 | bool reallySend = true; | ||
303 | if (onlineAgents != null) | ||
304 | { | ||
305 | PresenceInfo presence = onlineAgents.First(p => p.UserID == member.AgentID.ToString()); | ||
306 | if (regions.Contains(presence.RegionID)) | ||
307 | reallySend = false; | ||
308 | else | ||
309 | regions.Add(presence.RegionID); | ||
310 | } | ||
311 | |||
312 | if (reallySend) | ||
313 | { | ||
314 | // We have to create a new IM structure because the transfer module | ||
315 | // uses async send | ||
316 | GridInstantMessage msg = new GridInstantMessage(im, true); | ||
317 | m_msgTransferModule.SendInstantMessage(msg, delegate(bool success) { }); | ||
318 | } | ||
308 | } | 319 | } |
309 | else | 320 | else |
310 | { | 321 | { |
311 | // Deliver locally, directly | 322 | // Deliver locally, directly |
312 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Passing to ProcessMessageFromGroupSession to deliver to {0} locally", client.Name); | 323 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Passing to ProcessMessageFromGroupSession to deliver to {0} locally", client.Name); |
313 | ProcessMessageFromGroupSession(msg); | 324 | |
325 | if (clientsAlreadySent.Contains(member.AgentID)) | ||
326 | continue; | ||
327 | clientsAlreadySent.Add(member.AgentID); | ||
328 | |||
329 | ProcessMessageFromGroupSession(im); | ||
314 | } | 330 | } |
315 | } | 331 | } |
316 | 332 | ||
@@ -343,21 +359,90 @@ namespace OpenSim.Groups | |||
343 | // Any other message type will not be delivered to a client by the | 359 | // Any other message type will not be delivered to a client by the |
344 | // Instant Message Module | 360 | // Instant Message Module |
345 | 361 | ||
346 | 362 | UUID regionID = new UUID(msg.RegionID); | |
347 | if (m_debugEnabled) | 363 | if (m_debugEnabled) |
348 | { | 364 | { |
349 | m_log.DebugFormat("[Groups.Messaging]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); | 365 | m_log.DebugFormat("[Groups.Messaging]: {0} called, IM from region {1}", |
366 | System.Reflection.MethodBase.GetCurrentMethod().Name, regionID); | ||
350 | 367 | ||
351 | DebugGridInstantMessage(msg); | 368 | DebugGridInstantMessage(msg); |
352 | } | 369 | } |
353 | 370 | ||
354 | // Incoming message from a group | 371 | // Incoming message from a group |
355 | if ((msg.fromGroup == true) && | 372 | if ((msg.fromGroup == true) && (msg.dialog == (byte)InstantMessageDialog.SessionSend)) |
356 | ((msg.dialog == (byte)InstantMessageDialog.SessionSend) | ||
357 | || (msg.dialog == (byte)InstantMessageDialog.SessionAdd) | ||
358 | || (msg.dialog == (byte)InstantMessageDialog.SessionDrop))) | ||
359 | { | 373 | { |
360 | ProcessMessageFromGroupSession(msg); | 374 | // We have to redistribute the message across all members of the group who are here |
375 | // on this sim | ||
376 | |||
377 | UUID GroupID = new UUID(msg.imSessionID); | ||
378 | |||
379 | Scene aScene = m_sceneList[0]; | ||
380 | GridRegion regionOfOrigin = aScene.GridService.GetRegionByUUID(aScene.RegionInfo.ScopeID, regionID); | ||
381 | |||
382 | List<GroupMembersData> groupMembers = m_groupData.GetGroupMembers(new UUID(msg.fromAgentID).ToString(), GroupID); | ||
383 | List<UUID> alreadySeen = new List<UUID>(); | ||
384 | |||
385 | foreach (Scene s in m_sceneList) | ||
386 | { | ||
387 | s.ForEachScenePresence(sp => | ||
388 | { | ||
389 | // We need this, because we are searching through all | ||
390 | // SPs, both root and children | ||
391 | if (alreadySeen.Contains(sp.UUID)) | ||
392 | { | ||
393 | if (m_debugEnabled) | ||
394 | m_log.DebugFormat("[Groups.Messaging]: skipping agent {0} because we've already seen it", sp.UUID); | ||
395 | return; | ||
396 | } | ||
397 | alreadySeen.Add(sp.UUID); | ||
398 | |||
399 | GroupMembersData m = groupMembers.Find(gmd => | ||
400 | { | ||
401 | return gmd.AgentID == sp.UUID; | ||
402 | }); | ||
403 | if (m.AgentID == UUID.Zero) | ||
404 | { | ||
405 | if (m_debugEnabled) | ||
406 | m_log.DebugFormat("[Groups.Messaging]: skipping agent {0} because he is not a member of the group", sp.UUID); | ||
407 | return; | ||
408 | } | ||
409 | |||
410 | // Check if the user has an agent in the region where | ||
411 | // the IM came from, and if so, skip it, because the IM | ||
412 | // was already sent via that agent | ||
413 | if (regionOfOrigin != null) | ||
414 | { | ||
415 | AgentCircuitData aCircuit = s.AuthenticateHandler.GetAgentCircuitData(sp.UUID); | ||
416 | if (aCircuit != null) | ||
417 | { | ||
418 | if (aCircuit.ChildrenCapSeeds.Keys.Contains(regionOfOrigin.RegionHandle)) | ||
419 | { | ||
420 | if (m_debugEnabled) | ||
421 | m_log.DebugFormat("[Groups.Messaging]: skipping agent {0} because he has an agent in region of origin", sp.UUID); | ||
422 | return; | ||
423 | } | ||
424 | else | ||
425 | { | ||
426 | if (m_debugEnabled) | ||
427 | m_log.DebugFormat("[Groups.Messaging]: not skipping agent {0}", sp.UUID); | ||
428 | } | ||
429 | } | ||
430 | } | ||
431 | |||
432 | UUID AgentID = sp.UUID; | ||
433 | msg.toAgentID = AgentID.Guid; | ||
434 | |||
435 | if (!hasAgentDroppedGroupChatSession(AgentID.ToString(), GroupID) | ||
436 | && !hasAgentBeenInvitedToGroupChatSession(AgentID.ToString(), GroupID)) | ||
437 | { | ||
438 | AddAgentToSession(AgentID, GroupID, msg); | ||
439 | } | ||
440 | |||
441 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Passing to ProcessMessageFromGroupSession to deliver to {0} locally", sp.Name); | ||
442 | |||
443 | ProcessMessageFromGroupSession(msg); | ||
444 | }); | ||
445 | } | ||
361 | } | 446 | } |
362 | } | 447 | } |
363 | 448 | ||
@@ -367,82 +452,40 @@ namespace OpenSim.Groups | |||
367 | 452 | ||
368 | UUID AgentID = new UUID(msg.fromAgentID); | 453 | UUID AgentID = new UUID(msg.fromAgentID); |
369 | UUID GroupID = new UUID(msg.imSessionID); | 454 | UUID GroupID = new UUID(msg.imSessionID); |
455 | UUID toAgentID = new UUID(msg.toAgentID); | ||
370 | 456 | ||
371 | switch (msg.dialog) | 457 | switch (msg.dialog) |
372 | { | 458 | { |
373 | case (byte)InstantMessageDialog.SessionAdd: | 459 | case (byte)InstantMessageDialog.SessionAdd: |
374 | m_groupData.AgentInvitedToGroupChatSession(AgentID.ToString(), GroupID); | 460 | AgentInvitedToGroupChatSession(AgentID.ToString(), GroupID); |
375 | break; | 461 | break; |
376 | 462 | ||
377 | case (byte)InstantMessageDialog.SessionDrop: | 463 | case (byte)InstantMessageDialog.SessionDrop: |
378 | m_groupData.AgentDroppedFromGroupChatSession(AgentID.ToString(), GroupID); | 464 | AgentDroppedFromGroupChatSession(AgentID.ToString(), GroupID); |
379 | break; | 465 | break; |
380 | 466 | ||
381 | case (byte)InstantMessageDialog.SessionSend: | 467 | case (byte)InstantMessageDialog.SessionSend: |
382 | if (!m_groupData.hasAgentDroppedGroupChatSession(AgentID.ToString(), GroupID) | 468 | // User hasn't dropped, so they're in the session, |
383 | && !m_groupData.hasAgentBeenInvitedToGroupChatSession(AgentID.ToString(), GroupID) | 469 | // maybe we should deliver it. |
384 | ) | 470 | IClientAPI client = GetActiveClient(new UUID(msg.toAgentID)); |
471 | if (client != null) | ||
385 | { | 472 | { |
386 | // Agent not in session and hasn't dropped from session | 473 | // Deliver locally, directly |
387 | // Add them to the session for now, and Invite them | 474 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Delivering to {0} locally", client.Name); |
388 | m_groupData.AgentInvitedToGroupChatSession(AgentID.ToString(), GroupID); | ||
389 | 475 | ||
390 | UUID toAgentID = new UUID(msg.toAgentID); | 476 | if (!hasAgentDroppedGroupChatSession(toAgentID.ToString(), GroupID)) |
391 | IClientAPI activeClient = GetActiveClient(toAgentID); | ||
392 | if (activeClient != null) | ||
393 | { | 477 | { |
394 | GroupRecord groupInfo = m_groupData.GetGroupRecord(UUID.Zero.ToString(), GroupID, null); | 478 | if (!hasAgentBeenInvitedToGroupChatSession(toAgentID.ToString(), GroupID)) |
395 | if (groupInfo != null) | 479 | // This actually sends the message too, so no need to resend it |
396 | { | 480 | // with client.SendInstantMessage |
397 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Sending chatterbox invite instant message"); | 481 | AddAgentToSession(toAgentID, GroupID, msg); |
398 | 482 | else | |
399 | // Force? open the group session dialog??? | 483 | client.SendInstantMessage(msg); |
400 | // and simultanously deliver the message, so we don't need to do a seperate client.SendInstantMessage(msg); | ||
401 | IEventQueue eq = activeClient.Scene.RequestModuleInterface<IEventQueue>(); | ||
402 | eq.ChatterboxInvitation( | ||
403 | GroupID | ||
404 | , groupInfo.GroupName | ||
405 | , new UUID(msg.fromAgentID) | ||
406 | , msg.message | ||
407 | , new UUID(msg.toAgentID) | ||
408 | , msg.fromAgentName | ||
409 | , msg.dialog | ||
410 | , msg.timestamp | ||
411 | , msg.offline == 1 | ||
412 | , (int)msg.ParentEstateID | ||
413 | , msg.Position | ||
414 | , 1 | ||
415 | , new UUID(msg.imSessionID) | ||
416 | , msg.fromGroup | ||
417 | , OpenMetaverse.Utils.StringToBytes(groupInfo.GroupName) | ||
418 | ); | ||
419 | |||
420 | eq.ChatterBoxSessionAgentListUpdates( | ||
421 | new UUID(GroupID) | ||
422 | , new UUID(msg.fromAgentID) | ||
423 | , new UUID(msg.toAgentID) | ||
424 | , false //canVoiceChat | ||
425 | , false //isModerator | ||
426 | , false //text mute | ||
427 | ); | ||
428 | } | ||
429 | } | 484 | } |
430 | } | 485 | } |
431 | else if (!m_groupData.hasAgentDroppedGroupChatSession(AgentID.ToString(), GroupID)) | 486 | else |
432 | { | 487 | { |
433 | // User hasn't dropped, so they're in the session, | 488 | m_log.WarnFormat("[Groups.Messaging]: Received a message over the grid for a client that isn't here: {0}", msg.toAgentID); |
434 | // maybe we should deliver it. | ||
435 | IClientAPI client = GetActiveClient(new UUID(msg.toAgentID)); | ||
436 | if (client != null) | ||
437 | { | ||
438 | // Deliver locally, directly | ||
439 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Delivering to {0} locally", client.Name); | ||
440 | client.SendInstantMessage(msg); | ||
441 | } | ||
442 | else | ||
443 | { | ||
444 | m_log.WarnFormat("[Groups.Messaging]: Received a message over the grid for a client that isn't here: {0}", msg.toAgentID); | ||
445 | } | ||
446 | } | 489 | } |
447 | break; | 490 | break; |
448 | 491 | ||
@@ -452,6 +495,53 @@ namespace OpenSim.Groups | |||
452 | } | 495 | } |
453 | } | 496 | } |
454 | 497 | ||
498 | private void AddAgentToSession(UUID AgentID, UUID GroupID, GridInstantMessage msg) | ||
499 | { | ||
500 | // Agent not in session and hasn't dropped from session | ||
501 | // Add them to the session for now, and Invite them | ||
502 | AgentInvitedToGroupChatSession(AgentID.ToString(), GroupID); | ||
503 | |||
504 | IClientAPI activeClient = GetActiveClient(AgentID); | ||
505 | if (activeClient != null) | ||
506 | { | ||
507 | GroupRecord groupInfo = m_groupData.GetGroupRecord(UUID.Zero.ToString(), GroupID, null); | ||
508 | if (groupInfo != null) | ||
509 | { | ||
510 | if (m_debugEnabled) m_log.DebugFormat("[Groups.Messaging]: Sending chatterbox invite instant message"); | ||
511 | |||
512 | // Force? open the group session dialog??? | ||
513 | // and simultanously deliver the message, so we don't need to do a seperate client.SendInstantMessage(msg); | ||
514 | IEventQueue eq = activeClient.Scene.RequestModuleInterface<IEventQueue>(); | ||
515 | eq.ChatterboxInvitation( | ||
516 | GroupID | ||
517 | , groupInfo.GroupName | ||
518 | , new UUID(msg.fromAgentID) | ||
519 | , msg.message | ||
520 | , AgentID | ||
521 | , msg.fromAgentName | ||
522 | , msg.dialog | ||
523 | , msg.timestamp | ||
524 | , msg.offline == 1 | ||
525 | , (int)msg.ParentEstateID | ||
526 | , msg.Position | ||
527 | , 1 | ||
528 | , new UUID(msg.imSessionID) | ||
529 | , msg.fromGroup | ||
530 | , OpenMetaverse.Utils.StringToBytes(groupInfo.GroupName) | ||
531 | ); | ||
532 | |||
533 | eq.ChatterBoxSessionAgentListUpdates( | ||
534 | new UUID(GroupID) | ||
535 | , AgentID | ||
536 | , new UUID(msg.toAgentID) | ||
537 | , false //canVoiceChat | ||
538 | , false //isModerator | ||
539 | , false //text mute | ||
540 | ); | ||
541 | } | ||
542 | } | ||
543 | } | ||
544 | |||
455 | #endregion | 545 | #endregion |
456 | 546 | ||
457 | 547 | ||
@@ -477,7 +567,7 @@ namespace OpenSim.Groups | |||
477 | 567 | ||
478 | if (groupInfo != null) | 568 | if (groupInfo != null) |
479 | { | 569 | { |
480 | m_groupData.AgentInvitedToGroupChatSession(AgentID.ToString(), GroupID); | 570 | AgentInvitedToGroupChatSession(AgentID.ToString(), GroupID); |
481 | 571 | ||
482 | ChatterBoxSessionStartReplyViaCaps(remoteClient, groupInfo.GroupName, GroupID); | 572 | ChatterBoxSessionStartReplyViaCaps(remoteClient, groupInfo.GroupName, GroupID); |
483 | 573 | ||
@@ -503,7 +593,7 @@ namespace OpenSim.Groups | |||
503 | m_log.DebugFormat("[Groups.Messaging]: Send message to session for group {0} with session ID {1}", GroupID, im.imSessionID.ToString()); | 593 | m_log.DebugFormat("[Groups.Messaging]: Send message to session for group {0} with session ID {1}", GroupID, im.imSessionID.ToString()); |
504 | 594 | ||
505 | //If this agent is sending a message, then they want to be in the session | 595 | //If this agent is sending a message, then they want to be in the session |
506 | m_groupData.AgentInvitedToGroupChatSession(AgentID.ToString(), GroupID); | 596 | AgentInvitedToGroupChatSession(AgentID.ToString(), GroupID); |
507 | 597 | ||
508 | SendMessageToGroup(im, GroupID); | 598 | SendMessageToGroup(im, GroupID); |
509 | } | 599 | } |
@@ -598,5 +688,70 @@ namespace OpenSim.Groups | |||
598 | } | 688 | } |
599 | 689 | ||
600 | #endregion | 690 | #endregion |
691 | |||
692 | #region GroupSessionTracking | ||
693 | |||
694 | public void ResetAgentGroupChatSessions(string agentID) | ||
695 | { | ||
696 | foreach (List<string> agentList in m_groupsAgentsDroppedFromChatSession.Values) | ||
697 | { | ||
698 | agentList.Remove(agentID); | ||
699 | } | ||
700 | } | ||
701 | |||
702 | public bool hasAgentBeenInvitedToGroupChatSession(string agentID, UUID groupID) | ||
703 | { | ||
704 | // If we're tracking this group, and we can find them in the tracking, then they've been invited | ||
705 | return m_groupsAgentsInvitedToChatSession.ContainsKey(groupID) | ||
706 | && m_groupsAgentsInvitedToChatSession[groupID].Contains(agentID); | ||
707 | } | ||
708 | |||
709 | public bool hasAgentDroppedGroupChatSession(string agentID, UUID groupID) | ||
710 | { | ||
711 | // If we're tracking drops for this group, | ||
712 | // and we find them, well... then they've dropped | ||
713 | return m_groupsAgentsDroppedFromChatSession.ContainsKey(groupID) | ||
714 | && m_groupsAgentsDroppedFromChatSession[groupID].Contains(agentID); | ||
715 | } | ||
716 | |||
717 | public void AgentDroppedFromGroupChatSession(string agentID, UUID groupID) | ||
718 | { | ||
719 | if (m_groupsAgentsDroppedFromChatSession.ContainsKey(groupID)) | ||
720 | { | ||
721 | // If not in dropped list, add | ||
722 | if (!m_groupsAgentsDroppedFromChatSession[groupID].Contains(agentID)) | ||
723 | { | ||
724 | m_groupsAgentsDroppedFromChatSession[groupID].Add(agentID); | ||
725 | } | ||
726 | } | ||
727 | } | ||
728 | |||
729 | public void AgentInvitedToGroupChatSession(string agentID, UUID groupID) | ||
730 | { | ||
731 | // Add Session Status if it doesn't exist for this session | ||
732 | CreateGroupChatSessionTracking(groupID); | ||
733 | |||
734 | // If nessesary, remove from dropped list | ||
735 | if (m_groupsAgentsDroppedFromChatSession[groupID].Contains(agentID)) | ||
736 | { | ||
737 | m_groupsAgentsDroppedFromChatSession[groupID].Remove(agentID); | ||
738 | } | ||
739 | |||
740 | // Add to invited | ||
741 | if (!m_groupsAgentsInvitedToChatSession[groupID].Contains(agentID)) | ||
742 | m_groupsAgentsInvitedToChatSession[groupID].Add(agentID); | ||
743 | } | ||
744 | |||
745 | private void CreateGroupChatSessionTracking(UUID groupID) | ||
746 | { | ||
747 | if (!m_groupsAgentsDroppedFromChatSession.ContainsKey(groupID)) | ||
748 | { | ||
749 | m_groupsAgentsDroppedFromChatSession.Add(groupID, new List<string>()); | ||
750 | m_groupsAgentsInvitedToChatSession.Add(groupID, new List<string>()); | ||
751 | } | ||
752 | |||
753 | } | ||
754 | #endregion | ||
755 | |||
601 | } | 756 | } |
602 | } | 757 | } |
diff --git a/OpenSim/Addons/Groups/GroupsModule.cs b/OpenSim/Addons/Groups/GroupsModule.cs index 69d03a9..a14dc6a 100644 --- a/OpenSim/Addons/Groups/GroupsModule.cs +++ b/OpenSim/Addons/Groups/GroupsModule.cs | |||
@@ -141,6 +141,8 @@ namespace OpenSim.Groups | |||
141 | if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); | 141 | if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); |
142 | 142 | ||
143 | scene.EventManager.OnNewClient += OnNewClient; | 143 | scene.EventManager.OnNewClient += OnNewClient; |
144 | scene.EventManager.OnMakeRootAgent += OnMakeRoot; | ||
145 | scene.EventManager.OnMakeChildAgent += OnMakeChild; | ||
144 | scene.EventManager.OnIncomingInstantMessage += OnGridInstantMessage; | 146 | scene.EventManager.OnIncomingInstantMessage += OnGridInstantMessage; |
145 | // The InstantMessageModule itself doesn't do this, | 147 | // The InstantMessageModule itself doesn't do this, |
146 | // so lets see if things explode if we don't do it | 148 | // so lets see if things explode if we don't do it |
@@ -194,6 +196,7 @@ namespace OpenSim.Groups | |||
194 | if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); | 196 | if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); |
195 | 197 | ||
196 | scene.EventManager.OnNewClient -= OnNewClient; | 198 | scene.EventManager.OnNewClient -= OnNewClient; |
199 | scene.EventManager.OnMakeRootAgent -= OnMakeRoot; | ||
197 | scene.EventManager.OnIncomingInstantMessage -= OnGridInstantMessage; | 200 | scene.EventManager.OnIncomingInstantMessage -= OnGridInstantMessage; |
198 | 201 | ||
199 | lock (m_sceneList) | 202 | lock (m_sceneList) |
@@ -232,16 +235,31 @@ namespace OpenSim.Groups | |||
232 | { | 235 | { |
233 | if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); | 236 | if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); |
234 | 237 | ||
235 | client.OnUUIDGroupNameRequest += HandleUUIDGroupNameRequest; | ||
236 | client.OnAgentDataUpdateRequest += OnAgentDataUpdateRequest; | 238 | client.OnAgentDataUpdateRequest += OnAgentDataUpdateRequest; |
237 | client.OnDirFindQuery += OnDirFindQuery; | ||
238 | client.OnRequestAvatarProperties += OnRequestAvatarProperties; | 239 | client.OnRequestAvatarProperties += OnRequestAvatarProperties; |
240 | } | ||
239 | 241 | ||
242 | private void OnMakeRoot(ScenePresence sp) | ||
243 | { | ||
244 | if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); | ||
245 | |||
246 | sp.ControllingClient.OnUUIDGroupNameRequest += HandleUUIDGroupNameRequest; | ||
247 | sp.ControllingClient.OnDirFindQuery += OnDirFindQuery; | ||
240 | // Used for Notices and Group Invites/Accept/Reject | 248 | // Used for Notices and Group Invites/Accept/Reject |
241 | client.OnInstantMessage += OnInstantMessage; | 249 | sp.ControllingClient.OnInstantMessage += OnInstantMessage; |
242 | 250 | ||
243 | // Send client their groups information. | 251 | // Send client their groups information. |
244 | SendAgentGroupDataUpdate(client, client.AgentId); | 252 | SendAgentGroupDataUpdate(sp.ControllingClient, sp.UUID); |
253 | } | ||
254 | |||
255 | private void OnMakeChild(ScenePresence sp) | ||
256 | { | ||
257 | if (m_debugEnabled) m_log.DebugFormat("[Groups]: {0} called", System.Reflection.MethodBase.GetCurrentMethod().Name); | ||
258 | |||
259 | sp.ControllingClient.OnUUIDGroupNameRequest -= HandleUUIDGroupNameRequest; | ||
260 | sp.ControllingClient.OnDirFindQuery -= OnDirFindQuery; | ||
261 | // Used for Notices and Group Invites/Accept/Reject | ||
262 | sp.ControllingClient.OnInstantMessage -= OnInstantMessage; | ||
245 | } | 263 | } |
246 | 264 | ||
247 | private void OnRequestAvatarProperties(IClientAPI remoteClient, UUID avatarID) | 265 | private void OnRequestAvatarProperties(IClientAPI remoteClient, UUID avatarID) |
diff --git a/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs b/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs index c3c759e..daa0728 100644 --- a/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs +++ b/OpenSim/Addons/Groups/Hypergrid/GroupsServiceHGConnectorModule.cs | |||
@@ -590,28 +590,6 @@ namespace OpenSim.Groups | |||
590 | return m_LocalGroupsConnector.GetGroupNotices(AgentUUI(RequestingAgentID), GroupID); | 590 | return m_LocalGroupsConnector.GetGroupNotices(AgentUUI(RequestingAgentID), GroupID); |
591 | } | 591 | } |
592 | 592 | ||
593 | public void ResetAgentGroupChatSessions(string agentID) | ||
594 | { | ||
595 | } | ||
596 | |||
597 | public bool hasAgentBeenInvitedToGroupChatSession(string agentID, UUID groupID) | ||
598 | { | ||
599 | return false; | ||
600 | } | ||
601 | |||
602 | public bool hasAgentDroppedGroupChatSession(string agentID, UUID groupID) | ||
603 | { | ||
604 | return false; | ||
605 | } | ||
606 | |||
607 | public void AgentDroppedFromGroupChatSession(string agentID, UUID groupID) | ||
608 | { | ||
609 | } | ||
610 | |||
611 | public void AgentInvitedToGroupChatSession(string agentID, UUID groupID) | ||
612 | { | ||
613 | } | ||
614 | |||
615 | #endregion | 593 | #endregion |
616 | 594 | ||
617 | #region hypergrid groups | 595 | #region hypergrid groups |
diff --git a/OpenSim/Addons/Groups/IGroupsServicesConnector.cs b/OpenSim/Addons/Groups/IGroupsServicesConnector.cs index 73deb7a..a09b59e 100644 --- a/OpenSim/Addons/Groups/IGroupsServicesConnector.cs +++ b/OpenSim/Addons/Groups/IGroupsServicesConnector.cs | |||
@@ -92,12 +92,6 @@ namespace OpenSim.Groups | |||
92 | GroupNoticeInfo GetGroupNotice(string RequestingAgentID, UUID noticeID); | 92 | GroupNoticeInfo GetGroupNotice(string RequestingAgentID, UUID noticeID); |
93 | List<ExtendedGroupNoticeData> GetGroupNotices(string RequestingAgentID, UUID GroupID); | 93 | List<ExtendedGroupNoticeData> GetGroupNotices(string RequestingAgentID, UUID GroupID); |
94 | 94 | ||
95 | void ResetAgentGroupChatSessions(string agentID); | ||
96 | bool hasAgentBeenInvitedToGroupChatSession(string agentID, UUID groupID); | ||
97 | bool hasAgentDroppedGroupChatSession(string agentID, UUID groupID); | ||
98 | void AgentDroppedFromGroupChatSession(string agentID, UUID groupID); | ||
99 | void AgentInvitedToGroupChatSession(string agentID, UUID groupID); | ||
100 | |||
101 | } | 95 | } |
102 | 96 | ||
103 | public class GroupInviteInfo | 97 | public class GroupInviteInfo |
diff --git a/OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs b/OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs index 905bc91..564dec4 100644 --- a/OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs +++ b/OpenSim/Addons/Groups/Local/GroupsServiceLocalConnectorModule.cs | |||
@@ -320,28 +320,6 @@ namespace OpenSim.Groups | |||
320 | return m_GroupsService.GetGroupNotices(RequestingAgentID, GroupID); | 320 | return m_GroupsService.GetGroupNotices(RequestingAgentID, GroupID); |
321 | } | 321 | } |
322 | 322 | ||
323 | public void ResetAgentGroupChatSessions(string agentID) | ||
324 | { | ||
325 | } | ||
326 | |||
327 | public bool hasAgentBeenInvitedToGroupChatSession(string agentID, UUID groupID) | ||
328 | { | ||
329 | return false; | ||
330 | } | ||
331 | |||
332 | public bool hasAgentDroppedGroupChatSession(string agentID, UUID groupID) | ||
333 | { | ||
334 | return false; | ||
335 | } | ||
336 | |||
337 | public void AgentDroppedFromGroupChatSession(string agentID, UUID groupID) | ||
338 | { | ||
339 | } | ||
340 | |||
341 | public void AgentInvitedToGroupChatSession(string agentID, UUID groupID) | ||
342 | { | ||
343 | } | ||
344 | |||
345 | #endregion | 323 | #endregion |
346 | } | 324 | } |
347 | } | 325 | } |
diff --git a/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs b/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs index f1cf66c..9b6bfbd 100644 --- a/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs +++ b/OpenSim/Addons/Groups/Remote/GroupsServiceRemoteConnectorModule.cs | |||
@@ -406,28 +406,6 @@ namespace OpenSim.Groups | |||
406 | }); | 406 | }); |
407 | } | 407 | } |
408 | 408 | ||
409 | public void ResetAgentGroupChatSessions(string agentID) | ||
410 | { | ||
411 | } | ||
412 | |||
413 | public bool hasAgentBeenInvitedToGroupChatSession(string agentID, UUID groupID) | ||
414 | { | ||
415 | return false; | ||
416 | } | ||
417 | |||
418 | public bool hasAgentDroppedGroupChatSession(string agentID, UUID groupID) | ||
419 | { | ||
420 | return false; | ||
421 | } | ||
422 | |||
423 | public void AgentDroppedFromGroupChatSession(string agentID, UUID groupID) | ||
424 | { | ||
425 | } | ||
426 | |||
427 | public void AgentInvitedToGroupChatSession(string agentID, UUID groupID) | ||
428 | { | ||
429 | } | ||
430 | |||
431 | #endregion | 409 | #endregion |
432 | } | 410 | } |
433 | 411 | ||
diff --git a/OpenSim/Framework/GridInstantMessage.cs b/OpenSim/Framework/GridInstantMessage.cs index 6ae0488..da3690c 100644 --- a/OpenSim/Framework/GridInstantMessage.cs +++ b/OpenSim/Framework/GridInstantMessage.cs | |||
@@ -53,6 +53,24 @@ namespace OpenSim.Framework | |||
53 | binaryBucket = new byte[0]; | 53 | binaryBucket = new byte[0]; |
54 | } | 54 | } |
55 | 55 | ||
56 | public GridInstantMessage(GridInstantMessage im, bool addTimestamp) | ||
57 | { | ||
58 | fromAgentID = im.fromAgentID; | ||
59 | fromAgentName = im.fromAgentName; | ||
60 | toAgentID = im.toAgentID; | ||
61 | dialog = im.dialog; | ||
62 | fromGroup = im.fromGroup; | ||
63 | message = im.message; | ||
64 | imSessionID = im.imSessionID; | ||
65 | offline = im.offline; | ||
66 | Position = im.Position; | ||
67 | binaryBucket = im.binaryBucket; | ||
68 | RegionID = im.RegionID; | ||
69 | |||
70 | if (addTimestamp) | ||
71 | timestamp = (uint)Util.UnixTimeSinceEpoch(); | ||
72 | } | ||
73 | |||
56 | public GridInstantMessage(IScene scene, UUID _fromAgentID, | 74 | public GridInstantMessage(IScene scene, UUID _fromAgentID, |
57 | string _fromAgentName, UUID _toAgentID, | 75 | string _fromAgentName, UUID _toAgentID, |
58 | byte _dialog, bool _fromGroup, string _message, | 76 | byte _dialog, bool _fromGroup, string _message, |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs index c69f758..d7afe1a 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs | |||
@@ -750,12 +750,12 @@ namespace OpenSim.Region.ClientStack.Linden | |||
750 | 750 | ||
751 | } | 751 | } |
752 | 752 | ||
753 | public void ChatterBoxSessionAgentListUpdates(UUID sessionID, UUID fromAgent, UUID toAgent, bool canVoiceChat, | 753 | public void ChatterBoxSessionAgentListUpdates(UUID sessionID, UUID fromAgent, UUID anotherAgent, bool canVoiceChat, |
754 | bool isModerator, bool textMute) | 754 | bool isModerator, bool textMute) |
755 | { | 755 | { |
756 | OSD item = EventQueueHelper.ChatterBoxSessionAgentListUpdates(sessionID, fromAgent, canVoiceChat, | 756 | OSD item = EventQueueHelper.ChatterBoxSessionAgentListUpdates(sessionID, fromAgent, canVoiceChat, |
757 | isModerator, textMute); | 757 | isModerator, textMute); |
758 | Enqueue(item, toAgent); | 758 | Enqueue(item, fromAgent); |
759 | //m_log.InfoFormat("########### eq ChatterBoxSessionAgentListUpdates #############\n{0}", item); | 759 | //m_log.InfoFormat("########### eq ChatterBoxSessionAgentListUpdates #############\n{0}", item); |
760 | } | 760 | } |
761 | 761 | ||
diff --git a/OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs b/OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs index fa935cd..40a400f 100644 --- a/OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/InstantMessage/MessageTransferModule.cs | |||
@@ -372,7 +372,7 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage | |||
372 | gim.fromAgentName = fromAgentName; | 372 | gim.fromAgentName = fromAgentName; |
373 | gim.fromGroup = fromGroup; | 373 | gim.fromGroup = fromGroup; |
374 | gim.imSessionID = imSessionID.Guid; | 374 | gim.imSessionID = imSessionID.Guid; |
375 | gim.RegionID = UUID.Zero.Guid; // RegionID.Guid; | 375 | gim.RegionID = RegionID.Guid; |
376 | gim.timestamp = timestamp; | 376 | gim.timestamp = timestamp; |
377 | gim.toAgentID = toAgentID.Guid; | 377 | gim.toAgentID = toAgentID.Guid; |
378 | gim.message = message; | 378 | gim.message = message; |
@@ -672,7 +672,7 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage | |||
672 | gim["position_x"] = msg.Position.X.ToString(); | 672 | gim["position_x"] = msg.Position.X.ToString(); |
673 | gim["position_y"] = msg.Position.Y.ToString(); | 673 | gim["position_y"] = msg.Position.Y.ToString(); |
674 | gim["position_z"] = msg.Position.Z.ToString(); | 674 | gim["position_z"] = msg.Position.Z.ToString(); |
675 | gim["region_id"] = msg.RegionID.ToString(); | 675 | gim["region_id"] = new UUID(msg.RegionID).ToString(); |
676 | gim["binary_bucket"] = Convert.ToBase64String(msg.binaryBucket,Base64FormattingOptions.None); | 676 | gim["binary_bucket"] = Convert.ToBase64String(msg.binaryBucket,Base64FormattingOptions.None); |
677 | return gim; | 677 | return gim; |
678 | } | 678 | } |
diff --git a/OpenSim/Region/Framework/Interfaces/IEventQueue.cs b/OpenSim/Region/Framework/Interfaces/IEventQueue.cs index 5512642..3780ece 100644 --- a/OpenSim/Region/Framework/Interfaces/IEventQueue.cs +++ b/OpenSim/Region/Framework/Interfaces/IEventQueue.cs | |||
@@ -53,7 +53,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
53 | UUID fromAgent, string message, UUID toAgent, string fromName, byte dialog, | 53 | UUID fromAgent, string message, UUID toAgent, string fromName, byte dialog, |
54 | uint timeStamp, bool offline, int parentEstateID, Vector3 position, | 54 | uint timeStamp, bool offline, int parentEstateID, Vector3 position, |
55 | uint ttl, UUID transactionID, bool fromGroup, byte[] binaryBucket); | 55 | uint ttl, UUID transactionID, bool fromGroup, byte[] binaryBucket); |
56 | void ChatterBoxSessionAgentListUpdates(UUID sessionID, UUID fromAgent, UUID toAgent, bool canVoiceChat, | 56 | void ChatterBoxSessionAgentListUpdates(UUID sessionID, UUID fromAgent, UUID anotherAgent, bool canVoiceChat, |
57 | bool isModerator, bool textMute); | 57 | bool isModerator, bool textMute); |
58 | void ParcelProperties(ParcelPropertiesMessage parcelPropertiesMessage, UUID avatarID); | 58 | void ParcelProperties(ParcelPropertiesMessage parcelPropertiesMessage, UUID avatarID); |
59 | void GroupMembership(AgentGroupDataUpdatePacket groupUpdate, UUID avatarID); | 59 | void GroupMembership(AgentGroupDataUpdatePacket groupUpdate, UUID avatarID); |
diff --git a/OpenSim/Services/Connectors/InstantMessage/InstantMessageServiceConnector.cs b/OpenSim/Services/Connectors/InstantMessage/InstantMessageServiceConnector.cs index dbce9f6..e19c23d 100644 --- a/OpenSim/Services/Connectors/InstantMessage/InstantMessageServiceConnector.cs +++ b/OpenSim/Services/Connectors/InstantMessage/InstantMessageServiceConnector.cs | |||
@@ -123,6 +123,7 @@ namespace OpenSim.Services.Connectors.InstantMessage | |||
123 | gim["position_z"] = msg.Position.Z.ToString(); | 123 | gim["position_z"] = msg.Position.Z.ToString(); |
124 | gim["region_id"] = msg.RegionID.ToString(); | 124 | gim["region_id"] = msg.RegionID.ToString(); |
125 | gim["binary_bucket"] = Convert.ToBase64String(msg.binaryBucket, Base64FormattingOptions.None); | 125 | gim["binary_bucket"] = Convert.ToBase64String(msg.binaryBucket, Base64FormattingOptions.None); |
126 | gim["region_id"] = new UUID(msg.RegionID).ToString(); | ||
126 | 127 | ||
127 | return gim; | 128 | return gim; |
128 | } | 129 | } |