Utils.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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 OpenSim.Framework.Servers.HttpServer;
  31. using OpenMetaverse;
  32. using OpenMetaverse.StructuredData;
  33. namespace OpenSim.Server.Handlers.Base
  34. {
  35. public class RestHandlerUtils
  36. {
  37. /// <summary>
  38. /// Extract the param from an uri.
  39. /// </summary>
  40. /// <param name="uri">Something like this: /xxxx/uuid/ or /xxxx/uuid/handle/release</param>
  41. /// <param name="uuid">uuid on uuid field</param>
  42. /// <param name="regionHandle">optional regionHandle</param>
  43. /// <param name="action">optional action</param>
  44. public static bool GetParams(string path, out UUID uuid, out ulong regionHandle, out string action)
  45. {
  46. uuid = UUID.Zero;
  47. action = "";
  48. regionHandle = 0;
  49. path = path.Trim(new char[] { '/' });
  50. string[] parts = path.Split('/');
  51. if (parts.Length <= 1)
  52. {
  53. return false;
  54. }
  55. else
  56. {
  57. if (!UUID.TryParse(parts[1], out uuid))
  58. return false;
  59. if (parts.Length >= 3)
  60. UInt64.TryParse(parts[2], out regionHandle);
  61. if (parts.Length >= 4)
  62. action = parts[3];
  63. return true;
  64. }
  65. }
  66. public static bool GetAuthentication(IOSHttpRequest httpRequest, out string authority, out string authKey)
  67. {
  68. authority = string.Empty;
  69. authKey = string.Empty;
  70. Uri authUri;
  71. string auth = httpRequest.Headers["authentication"];
  72. // Authentication keys look like this:
  73. // http://orgrid.org:8002/<uuid>
  74. if ((auth != null) && (!string.Empty.Equals(auth)) && auth != "None")
  75. {
  76. if (Uri.TryCreate(auth, UriKind.Absolute, out authUri))
  77. {
  78. authority = authUri.Authority;
  79. authKey = authUri.PathAndQuery.Trim('/');
  80. return true;
  81. }
  82. }
  83. return false;
  84. }
  85. public static OSDMap DeserializeOSMap(IOSHttpRequest httpRequest)
  86. {
  87. Stream inputStream = httpRequest.InputStream;
  88. Stream innerStream = null;
  89. try
  90. {
  91. if ((httpRequest.ContentType == "application/x-gzip" || httpRequest.Headers["Content-Encoding"] == "gzip") || (httpRequest.Headers["X-Content-Encoding"] == "gzip"))
  92. {
  93. innerStream = inputStream;
  94. inputStream = new GZipStream(innerStream, CompressionMode.Decompress);
  95. }
  96. return (OSDMap)OSDParser.DeserializeJson(inputStream);
  97. }
  98. catch
  99. {
  100. return null;
  101. }
  102. finally
  103. {
  104. if (innerStream != null)
  105. innerStream.Dispose();
  106. }
  107. }
  108. }
  109. }