AssetXferUploader.cs 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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.Reflection;
  30. using log4net;
  31. using OpenMetaverse;
  32. using OpenSim.Framework;
  33. using OpenSim.Framework.Communications.Cache;
  34. using OpenSim.Services.Interfaces;
  35. namespace OpenSim.Region.CoreModules.Agent.AssetTransaction
  36. {
  37. public class AssetXferUploader
  38. {
  39. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  40. private AssetBase m_asset;
  41. private UUID InventFolder = UUID.Zero;
  42. private sbyte invType = 0;
  43. private bool m_createItem = false;
  44. private uint m_createItemCallback = 0;
  45. private string m_description = String.Empty;
  46. private bool m_dumpAssetToFile;
  47. private bool m_finished = false;
  48. private string m_name = String.Empty;
  49. private bool m_storeLocal;
  50. private AgentAssetTransactions m_userTransactions;
  51. private uint nextPerm = 0;
  52. private IClientAPI ourClient;
  53. private UUID TransactionID = UUID.Zero;
  54. private sbyte type = 0;
  55. private byte wearableType = 0;
  56. public ulong XferID;
  57. public AssetXferUploader(AgentAssetTransactions transactions, bool dumpAssetToFile)
  58. {
  59. m_userTransactions = transactions;
  60. m_dumpAssetToFile = dumpAssetToFile;
  61. }
  62. /// <summary>
  63. /// Process transfer data received from the client.
  64. /// </summary>
  65. /// <param name="xferID"></param>
  66. /// <param name="packetID"></param>
  67. /// <param name="data"></param>
  68. /// <returns>True if the transfer is complete, false otherwise or if the xferID was not valid</returns>
  69. public bool HandleXferPacket(ulong xferID, uint packetID, byte[] data)
  70. {
  71. if (XferID == xferID)
  72. {
  73. if (m_asset.Data.Length > 1)
  74. {
  75. byte[] destinationArray = new byte[m_asset.Data.Length + data.Length];
  76. Array.Copy(m_asset.Data, 0, destinationArray, 0, m_asset.Data.Length);
  77. Array.Copy(data, 0, destinationArray, m_asset.Data.Length, data.Length);
  78. m_asset.Data = destinationArray;
  79. }
  80. else
  81. {
  82. byte[] buffer2 = new byte[data.Length - 4];
  83. Array.Copy(data, 4, buffer2, 0, data.Length - 4);
  84. m_asset.Data = buffer2;
  85. }
  86. ourClient.SendConfirmXfer(xferID, packetID);
  87. if ((packetID & 0x80000000) != 0)
  88. {
  89. SendCompleteMessage();
  90. return true;
  91. }
  92. }
  93. return false;
  94. }
  95. /// <summary>
  96. /// Initialise asset transfer from the client
  97. /// </summary>
  98. /// <param name="xferID"></param>
  99. /// <param name="packetID"></param>
  100. /// <param name="data"></param>
  101. /// <returns>True if the transfer is complete, false otherwise</returns>
  102. public bool Initialise(IClientAPI remoteClient, UUID assetID, UUID transaction, sbyte type, byte[] data,
  103. bool storeLocal, bool tempFile)
  104. {
  105. ourClient = remoteClient;
  106. m_asset = new AssetBase(assetID, "blank", type);
  107. m_asset.Data = data;
  108. m_asset.Description = "empty";
  109. m_asset.Local = storeLocal;
  110. m_asset.Temporary = tempFile;
  111. TransactionID = transaction;
  112. m_storeLocal = storeLocal;
  113. if (m_asset.Data.Length > 2)
  114. {
  115. SendCompleteMessage();
  116. return true;
  117. }
  118. else
  119. {
  120. RequestStartXfer();
  121. }
  122. return false;
  123. }
  124. protected void RequestStartXfer()
  125. {
  126. XferID = Util.GetNextXferID();
  127. ourClient.SendXferRequest(XferID, m_asset.Type, m_asset.FullID, 0, new byte[0]);
  128. }
  129. protected void SendCompleteMessage()
  130. {
  131. ourClient.SendAssetUploadCompleteMessage(m_asset.Type, true, m_asset.FullID);
  132. m_finished = true;
  133. if (m_createItem)
  134. {
  135. DoCreateItem(m_createItemCallback);
  136. }
  137. else if (m_storeLocal)
  138. {
  139. m_userTransactions.Manager.MyScene.AssetService.Store(m_asset);
  140. }
  141. m_log.DebugFormat("[ASSET TRANSACTIONS]: Uploaded asset data for transaction {0}", TransactionID);
  142. if (m_dumpAssetToFile)
  143. {
  144. DateTime now = DateTime.Now;
  145. string filename =
  146. String.Format("{6}_{7}_{0:d2}{1:d2}{2:d2}_{3:d2}{4:d2}{5:d2}.dat", now.Year, now.Month, now.Day,
  147. now.Hour, now.Minute, now.Second, m_asset.Name, m_asset.Type);
  148. SaveAssetToFile(filename, m_asset.Data);
  149. }
  150. }
  151. private void SaveAssetToFile(string filename, byte[] data)
  152. {
  153. string assetPath = "UserAssets";
  154. if (!Directory.Exists(assetPath))
  155. {
  156. Directory.CreateDirectory(assetPath);
  157. }
  158. FileStream fs = File.Create(Path.Combine(assetPath, filename));
  159. BinaryWriter bw = new BinaryWriter(fs);
  160. bw.Write(data);
  161. bw.Close();
  162. fs.Close();
  163. }
  164. public void RequestCreateInventoryItem(IClientAPI remoteClient, UUID transactionID, UUID folderID,
  165. uint callbackID, string description, string name, sbyte invType,
  166. sbyte type, byte wearableType, uint nextOwnerMask)
  167. {
  168. if (TransactionID == transactionID)
  169. {
  170. InventFolder = folderID;
  171. m_name = name;
  172. m_description = description;
  173. this.type = type;
  174. this.invType = invType;
  175. this.wearableType = wearableType;
  176. nextPerm = nextOwnerMask;
  177. m_asset.Name = name;
  178. m_asset.Description = description;
  179. m_asset.Type = type;
  180. if (m_finished)
  181. {
  182. DoCreateItem(callbackID);
  183. }
  184. else
  185. {
  186. m_createItem = true; //set flag so the inventory item is created when upload is complete
  187. m_createItemCallback = callbackID;
  188. }
  189. }
  190. }
  191. private void DoCreateItem(uint callbackID)
  192. {
  193. m_userTransactions.Manager.MyScene.AssetService.Store(m_asset);
  194. IInventoryService invService = m_userTransactions.Manager.MyScene.InventoryService;
  195. InventoryItemBase item = new InventoryItemBase();
  196. item.Owner = ourClient.AgentId;
  197. item.CreatorId = ourClient.AgentId.ToString();
  198. item.ID = UUID.Random();
  199. item.AssetID = m_asset.FullID;
  200. item.Description = m_description;
  201. item.Name = m_name;
  202. item.AssetType = type;
  203. item.InvType = invType;
  204. item.Folder = InventFolder;
  205. item.BasePermissions = 0x7fffffff;
  206. item.CurrentPermissions = 0x7fffffff;
  207. item.GroupPermissions=0;
  208. item.EveryOnePermissions=0;
  209. item.NextPermissions = nextPerm;
  210. item.Flags = (uint) wearableType;
  211. item.CreationDate = Util.UnixTimeSinceEpoch();
  212. if (invService.AddItem(item))
  213. ourClient.SendInventoryItemCreateUpdate(item, callbackID);
  214. else
  215. ourClient.SendAlertMessage("Unable to create inventory item");
  216. }
  217. /// <summary>
  218. /// Get the asset data uploaded in this transfer.
  219. /// </summary>
  220. /// <returns>null if the asset has not finished uploading</returns>
  221. public AssetBase GetAssetData()
  222. {
  223. if (m_finished)
  224. {
  225. return m_asset;
  226. }
  227. return null;
  228. }
  229. }
  230. }