Utils.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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.IO;
  29. using System.IO.Compression;
  30. using System.Reflection;
  31. using OpenMetaverse;
  32. using OpenMetaverse.StructuredData;
  33. using OpenSim.Framework.Servers.HttpServer;
  34. using log4net;
  35. namespace OpenSim.Server.Handlers.Simulation
  36. {
  37. public class Utils
  38. {
  39. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  40. /// <summary>
  41. /// Extract the param from an uri.
  42. /// </summary>
  43. /// <param name="uri">Something like this: /agent/uuid/ or /agent/uuid/handle/release</param>
  44. /// <param name="uri">uuid on uuid field</param>
  45. /// <param name="action">optional action</param>
  46. public static bool GetParams(string uri, out UUID uuid, out UUID regionID, out string action)
  47. {
  48. uuid = UUID.Zero;
  49. regionID = UUID.Zero;
  50. action = "";
  51. uri = uri.Trim(new char[] { '/' });
  52. string[] parts = uri.Split('/');
  53. if (parts.Length <= 1)
  54. {
  55. return false;
  56. }
  57. else
  58. {
  59. if (!UUID.TryParse(parts[1], out uuid))
  60. return false;
  61. if (parts.Length >= 3)
  62. UUID.TryParse(parts[2], out regionID);
  63. if (parts.Length >= 4)
  64. action = parts[3];
  65. return true;
  66. }
  67. }
  68. public static OSDMap GetOSDMap(string data)
  69. {
  70. OSDMap args = null;
  71. try
  72. {
  73. OSD buffer;
  74. // We should pay attention to the content-type, but let's assume we know it's Json
  75. buffer = OSDParser.DeserializeJson(data);
  76. if (buffer.Type == OSDType.Map)
  77. {
  78. args = (OSDMap)buffer;
  79. return args;
  80. }
  81. else
  82. {
  83. // uh?
  84. m_log.Debug(("[REST COMMS]: Got OSD of unexpected type " + buffer.Type.ToString()));
  85. return null;
  86. }
  87. }
  88. catch (Exception ex)
  89. {
  90. m_log.Debug("[REST COMMS]: exception on parse of REST message " + ex.Message);
  91. return null;
  92. }
  93. }
  94. public static OSDMap DeserializeOSMap(IOSHttpRequest httpRequest)
  95. {
  96. Stream inputStream = httpRequest.InputStream;
  97. Stream innerStream = null;
  98. try
  99. {
  100. if ((httpRequest.ContentType == "application/x-gzip" || httpRequest.Headers["Content-Encoding"] == "gzip") || (httpRequest.Headers["X-Content-Encoding"] == "gzip"))
  101. {
  102. innerStream = inputStream;
  103. inputStream = new GZipStream(innerStream, CompressionMode.Decompress);
  104. }
  105. return (OSDMap)OSDParser.DeserializeJson(inputStream);
  106. }
  107. catch
  108. {
  109. return null;
  110. }
  111. finally
  112. {
  113. if (innerStream != null)
  114. innerStream.Dispose();
  115. }
  116. }
  117. }
  118. }