diff options
Diffstat (limited to 'OpenSim/Services/HypergridService/HGAssetService.cs')
-rw-r--r-- | OpenSim/Services/HypergridService/HGAssetService.cs | 181 |
1 files changed, 181 insertions, 0 deletions
diff --git a/OpenSim/Services/HypergridService/HGAssetService.cs b/OpenSim/Services/HypergridService/HGAssetService.cs new file mode 100644 index 0000000..6e0d4cd --- /dev/null +++ b/OpenSim/Services/HypergridService/HGAssetService.cs | |||
@@ -0,0 +1,181 @@ | |||
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.IO; | ||
30 | using System.Reflection; | ||
31 | using System.Xml; | ||
32 | |||
33 | using Nini.Config; | ||
34 | using log4net; | ||
35 | using OpenMetaverse; | ||
36 | |||
37 | using OpenSim.Framework; | ||
38 | using OpenSim.Server.Base; | ||
39 | using OpenSim.Services.Interfaces; | ||
40 | using OpenSim.Services.AssetService; | ||
41 | |||
42 | namespace OpenSim.Services.HypergridService | ||
43 | { | ||
44 | public class HGAssetService : OpenSim.Services.AssetService.AssetService, IAssetService | ||
45 | { | ||
46 | private static readonly ILog m_log = | ||
47 | LogManager.GetLogger( | ||
48 | MethodBase.GetCurrentMethod().DeclaringType); | ||
49 | |||
50 | private string m_ProfileServiceURL; | ||
51 | private IUserAccountService m_UserAccountService; | ||
52 | |||
53 | private UserAccountCache m_Cache; | ||
54 | |||
55 | public HGAssetService(IConfigSource config) : base(config) | ||
56 | { | ||
57 | m_log.Debug("[HGAsset Service]: Starting"); | ||
58 | IConfig assetConfig = config.Configs["HGAssetService"]; | ||
59 | if (assetConfig == null) | ||
60 | throw new Exception("No HGAssetService configuration"); | ||
61 | |||
62 | string userAccountsDll = assetConfig.GetString("UserAccountsService", string.Empty); | ||
63 | if (userAccountsDll == string.Empty) | ||
64 | throw new Exception("Please specify UserAccountsService in HGAssetService configuration"); | ||
65 | |||
66 | Object[] args = new Object[] { config }; | ||
67 | m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(userAccountsDll, args); | ||
68 | if (m_UserAccountService == null) | ||
69 | throw new Exception(String.Format("Unable to create UserAccountService from {0}", userAccountsDll)); | ||
70 | |||
71 | m_ProfileServiceURL = assetConfig.GetString("ProfileServerURI", string.Empty); | ||
72 | |||
73 | m_Cache = UserAccountCache.CreateUserAccountCache(m_UserAccountService); | ||
74 | } | ||
75 | |||
76 | #region IAssetService overrides | ||
77 | public override AssetBase Get(string id) | ||
78 | { | ||
79 | AssetBase asset = base.Get(id); | ||
80 | |||
81 | if (asset == null) | ||
82 | return null; | ||
83 | |||
84 | if (asset.Metadata.Type == (sbyte)AssetType.Object) | ||
85 | asset.Data = AdjustIdentifiers(asset.Data); ; | ||
86 | |||
87 | AdjustIdentifiers(asset.Metadata); | ||
88 | |||
89 | return asset; | ||
90 | } | ||
91 | |||
92 | public override AssetMetadata GetMetadata(string id) | ||
93 | { | ||
94 | AssetMetadata meta = base.GetMetadata(id); | ||
95 | |||
96 | if (meta == null) | ||
97 | return null; | ||
98 | |||
99 | AdjustIdentifiers(meta); | ||
100 | |||
101 | return meta; | ||
102 | } | ||
103 | |||
104 | public override byte[] GetData(string id) | ||
105 | { | ||
106 | byte[] data = base.GetData(id); | ||
107 | |||
108 | if (data == null) | ||
109 | return null; | ||
110 | |||
111 | return AdjustIdentifiers(data); | ||
112 | } | ||
113 | |||
114 | //public virtual bool Get(string id, Object sender, AssetRetrieved handler) | ||
115 | |||
116 | public override bool Delete(string id) | ||
117 | { | ||
118 | // NOGO | ||
119 | return false; | ||
120 | } | ||
121 | |||
122 | #endregion | ||
123 | |||
124 | protected void AdjustIdentifiers(AssetMetadata meta) | ||
125 | { | ||
126 | UserAccount creator = m_Cache.GetUser(meta.CreatorID); | ||
127 | if (creator != null) | ||
128 | meta.CreatorID = m_ProfileServiceURL + "/" + meta.CreatorID + ";" + creator.FirstName + " " + creator.LastName; | ||
129 | |||
130 | } | ||
131 | |||
132 | protected byte[] AdjustIdentifiers(byte[] data) | ||
133 | { | ||
134 | string xml = Utils.BytesToString(data); | ||
135 | return Utils.StringToBytes(RewriteSOP(xml)); | ||
136 | } | ||
137 | |||
138 | protected string RewriteSOP(string xml) | ||
139 | { | ||
140 | XmlDocument doc = new XmlDocument(); | ||
141 | doc.LoadXml(xml); | ||
142 | XmlNodeList sops = doc.GetElementsByTagName("SceneObjectPart"); | ||
143 | |||
144 | foreach (XmlNode sop in sops) | ||
145 | { | ||
146 | UserAccount creator = null; | ||
147 | bool hasCreatorData = false; | ||
148 | XmlNodeList nodes = sop.ChildNodes; | ||
149 | foreach (XmlNode node in nodes) | ||
150 | { | ||
151 | if (node.Name == "CreatorID") | ||
152 | creator = m_Cache.GetUser(node.InnerText); | ||
153 | if (node.Name == "CreatorData" && node.InnerText != null && node.InnerText != string.Empty) | ||
154 | hasCreatorData = true; | ||
155 | |||
156 | //if (node.Name == "OwnerID") | ||
157 | //{ | ||
158 | // UserAccount owner = GetUser(node.InnerText); | ||
159 | // if (owner != null) | ||
160 | // node.InnerText = m_ProfileServiceURL + "/" + node.InnerText + "/" + owner.FirstName + " " + owner.LastName; | ||
161 | //} | ||
162 | } | ||
163 | if (!hasCreatorData && creator != null) | ||
164 | { | ||
165 | XmlElement creatorData = doc.CreateElement("CreatorData"); | ||
166 | creatorData.InnerText = m_ProfileServiceURL + "/" + creator.PrincipalID + ";" + creator.FirstName + " " + creator.LastName; | ||
167 | sop.AppendChild(creatorData); | ||
168 | } | ||
169 | } | ||
170 | |||
171 | using (StringWriter wr = new StringWriter()) | ||
172 | { | ||
173 | doc.Save(wr); | ||
174 | return wr.ToString(); | ||
175 | } | ||
176 | |||
177 | } | ||
178 | |||
179 | } | ||
180 | |||
181 | } | ||