diff options
Finished HG Service Store. Not fully functional because of problems with asset.ID insisting on being a UUID string.
Diffstat (limited to 'OpenSim/Services/AssetService')
-rw-r--r-- | OpenSim/Services/AssetService/HGAssetService.cs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim/Services/AssetService/HGAssetService.cs b/OpenSim/Services/AssetService/HGAssetService.cs index 415a0f5..cf275ab 100644 --- a/OpenSim/Services/AssetService/HGAssetService.cs +++ b/OpenSim/Services/AssetService/HGAssetService.cs | |||
@@ -94,7 +94,7 @@ namespace OpenSim.Services.AssetService | |||
94 | // We're instantiating this class explicitly, but this won't | 94 | // We're instantiating this class explicitly, but this won't |
95 | // work in general, because the remote grid may be running | 95 | // work in general, because the remote grid may be running |
96 | // an asset server that has a different protocol. | 96 | // an asset server that has a different protocol. |
97 | // Eventually we will want a piece of meta-protocol asking | 97 | // Eventually we will want a piece of protocol asking |
98 | // the remote server about its kind. Definitely cool thing to do! | 98 | // the remote server about its kind. Definitely cool thing to do! |
99 | connector = new AssetServicesConnector(url); | 99 | connector = new AssetServicesConnector(url); |
100 | m_connectors.Add(url, connector); | 100 | m_connectors.Add(url, connector); |
@@ -152,6 +152,17 @@ namespace OpenSim.Services.AssetService | |||
152 | 152 | ||
153 | public string Store(AssetBase asset) | 153 | public string Store(AssetBase asset) |
154 | { | 154 | { |
155 | string url = string.Empty; | ||
156 | string assetID = string.Empty; | ||
157 | |||
158 | if (StringToUrlAndAssetID(asset.ID, out url, out assetID)) | ||
159 | { | ||
160 | IAssetService connector = GetConnector(url); | ||
161 | // Restore the assetID to a simple UUID | ||
162 | asset.ID = assetID; | ||
163 | return connector.Store(asset); | ||
164 | } | ||
165 | |||
155 | return String.Empty; | 166 | return String.Empty; |
156 | } | 167 | } |
157 | 168 | ||