OfflineIMServiceRemoteConnector.cs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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.Linq;
  30. using System.Reflection;
  31. using System.Text;
  32. using OpenSim.Framework;
  33. using OpenSim.Framework.ServiceAuth;
  34. using OpenSim.Server.Base;
  35. using OpenSim.Services.Interfaces;
  36. using OpenMetaverse;
  37. using log4net;
  38. using Nini.Config;
  39. namespace OpenSim.OfflineIM
  40. {
  41. public class OfflineIMServiceRemoteConnector : IOfflineIMService
  42. {
  43. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  44. private string m_ServerURI = string.Empty;
  45. private IServiceAuth m_Auth;
  46. private object m_Lock = new object();
  47. public OfflineIMServiceRemoteConnector(string url)
  48. {
  49. m_ServerURI = url;
  50. m_log.DebugFormat("[OfflineIM.V2.RemoteConnector]: Offline IM server at {0}", m_ServerURI);
  51. }
  52. public OfflineIMServiceRemoteConnector(IConfigSource config)
  53. {
  54. IConfig cnf = config.Configs["Messaging"];
  55. if (cnf == null)
  56. {
  57. m_log.WarnFormat("[OfflineIM.V2.RemoteConnector]: Missing Messaging configuration");
  58. return;
  59. }
  60. m_ServerURI = cnf.GetString("OfflineMessageURL", string.Empty);
  61. /// This is from BaseServiceConnector
  62. string authType = Util.GetConfigVarFromSections<string>(config, "AuthType", new string[] { "Network", "Messaging" }, "None");
  63. switch (authType)
  64. {
  65. case "BasicHttpAuthentication":
  66. m_Auth = new BasicHttpAuthentication(config, "Messaging");
  67. break;
  68. }
  69. ///
  70. m_log.DebugFormat("[OfflineIM.V2.RemoteConnector]: Offline IM server at {0} with auth {1}",
  71. m_ServerURI, (m_Auth == null ? "None" : m_Auth.GetType().ToString()));
  72. }
  73. #region IOfflineIMService
  74. public List<GridInstantMessage> GetMessages(UUID principalID)
  75. {
  76. List<GridInstantMessage> ims = new List<GridInstantMessage>();
  77. Dictionary<string, object> sendData = new Dictionary<string, object>();
  78. sendData["PrincipalID"] = principalID;
  79. Dictionary<string, object> ret = MakeRequest("GET", sendData);
  80. if (ret == null)
  81. return ims;
  82. if (!ret.TryGetValue("RESULT", out object resultobj))
  83. return ims;
  84. if(resultobj is string result)
  85. {
  86. if (result == "NULL" || result.Equals("false", StringComparison.InvariantCultureIgnoreCase))
  87. {
  88. if (ret.TryGetValue("REASON", out object rso))
  89. m_log.Debug($"[OfflineIM.V2.RemoteConnector]: GetMessages for {principalID} failed: {rso}");
  90. else
  91. m_log.Debug($"[OfflineIM.V2.RemoteConnector]: GetMessages for {principalID} failed: Unknown error");
  92. return ims;
  93. }
  94. }
  95. else if(resultobj is Dictionary<string, object> resultdic)
  96. {
  97. foreach (object v in resultdic.Values)
  98. {
  99. if (v is Dictionary<string, object> vdic)
  100. {
  101. GridInstantMessage m = OfflineIMDataUtils.GridInstantMessage(vdic);
  102. ims.Add(m);
  103. }
  104. }
  105. }
  106. return ims;
  107. }
  108. public bool StoreMessage(GridInstantMessage im, out string reason)
  109. {
  110. Dictionary<string, object> sendData = OfflineIMDataUtils.GridInstantMessage(im);
  111. Dictionary<string, object> ret = MakeRequest("STORE", sendData);
  112. if (ret == null)
  113. {
  114. reason = "Bad response from server";
  115. return false;
  116. }
  117. if(ret.TryGetValue("RESULT", out object o))
  118. {
  119. string result = o.ToString();
  120. if (result == "NULL" || result.Equals("false", StringComparison.InvariantCultureIgnoreCase))
  121. {
  122. if(ret.TryGetValue("REASON", out object ro))
  123. reason = ro.ToString();
  124. else
  125. reason = "Unknown error";
  126. return false;
  127. }
  128. }
  129. reason = string.Empty;
  130. return true;
  131. }
  132. public void DeleteMessages(UUID userID)
  133. {
  134. Dictionary<string, object> sendData = new Dictionary<string, object>();
  135. sendData["UserID"] = userID;
  136. MakeRequest("DELETE", sendData);
  137. }
  138. #endregion
  139. #region Make Request
  140. private Dictionary<string, object> MakeRequest(string method, Dictionary<string, object> sendData)
  141. {
  142. sendData["METHOD"] = method;
  143. string reply = string.Empty;
  144. lock (m_Lock)
  145. reply = SynchronousRestFormsRequester.MakeRequest("POST",
  146. m_ServerURI + "/offlineim",
  147. ServerUtils.BuildQueryString(sendData),
  148. m_Auth);
  149. Dictionary<string, object> replyData = ServerUtils.ParseXmlResponse(reply);
  150. return replyData;
  151. }
  152. #endregion
  153. }
  154. }