diff options
author | Justin Clark-Casey (justincc) | 2011-10-19 00:34:54 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-19 00:34:54 +0100 |
commit | 4cffdf15ba320b71650ade9edddec2286b1c5258 (patch) | |
tree | 459aa71820e429ab7cbe3a79710c6c53eb77f4d4 /OpenSim/Server/Handlers/UserAccounts | |
parent | Make PrincipalID a synonym for UserID in GetUserAccount (diff) | |
download | opensim-SC_OLD-4cffdf15ba320b71650ade9edddec2286b1c5258.zip opensim-SC_OLD-4cffdf15ba320b71650ade9edddec2286b1c5258.tar.gz opensim-SC_OLD-4cffdf15ba320b71650ade9edddec2286b1c5258.tar.bz2 opensim-SC_OLD-4cffdf15ba320b71650ade9edddec2286b1c5258.tar.xz |
Make ScopeID optional for http GetAccount and GetAccounts
If not specified then it assumes UUID.Zero. as occurs elsewhere in the codebase
Diffstat (limited to 'OpenSim/Server/Handlers/UserAccounts')
-rw-r--r-- | OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs b/OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs index 32da44f..f987383 100644 --- a/OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs +++ b/OpenSim/Server/Handlers/UserAccounts/UserAccountServerPostHandler.cs | |||
@@ -117,7 +117,6 @@ namespace OpenSim.Server.Handlers.UserAccounts | |||
117 | } | 117 | } |
118 | 118 | ||
119 | return FailureResult(); | 119 | return FailureResult(); |
120 | |||
121 | } | 120 | } |
122 | 121 | ||
123 | byte[] GetAccount(Dictionary<string, object> request) | 122 | byte[] GetAccount(Dictionary<string, object> request) |
@@ -126,13 +125,7 @@ namespace OpenSim.Server.Handlers.UserAccounts | |||
126 | UUID scopeID = UUID.Zero; | 125 | UUID scopeID = UUID.Zero; |
127 | Dictionary<string, object> result = new Dictionary<string, object>(); | 126 | Dictionary<string, object> result = new Dictionary<string, object>(); |
128 | 127 | ||
129 | if (!request.ContainsKey("ScopeID")) | 128 | if (request.ContainsKey("ScopeID") && !UUID.TryParse(request["ScopeID"].ToString(), out scopeID)) |
130 | { | ||
131 | result["result"] = "null"; | ||
132 | return ResultToBytes(result); | ||
133 | } | ||
134 | |||
135 | if (!UUID.TryParse(request["ScopeID"].ToString(), out scopeID)) | ||
136 | { | 129 | { |
137 | result["result"] = "null"; | 130 | result["result"] = "null"; |
138 | return ResultToBytes(result); | 131 | return ResultToBytes(result); |
@@ -174,11 +167,11 @@ namespace OpenSim.Server.Handlers.UserAccounts | |||
174 | 167 | ||
175 | byte[] GetAccounts(Dictionary<string, object> request) | 168 | byte[] GetAccounts(Dictionary<string, object> request) |
176 | { | 169 | { |
177 | if (!request.ContainsKey("ScopeID") || !request.ContainsKey("query")) | 170 | if (!request.ContainsKey("query")) |
178 | return FailureResult(); | 171 | return FailureResult(); |
179 | 172 | ||
180 | UUID scopeID = UUID.Zero; | 173 | UUID scopeID = UUID.Zero; |
181 | if (!UUID.TryParse(request["ScopeID"].ToString(), out scopeID)) | 174 | if (request.ContainsKey("ScopeID") && !UUID.TryParse(request["ScopeID"].ToString(), out scopeID)) |
182 | return FailureResult(); | 175 | return FailureResult(); |
183 | 176 | ||
184 | string query = request["query"].ToString(); | 177 | string query = request["query"].ToString(); |
@@ -187,7 +180,9 @@ namespace OpenSim.Server.Handlers.UserAccounts | |||
187 | 180 | ||
188 | Dictionary<string, object> result = new Dictionary<string, object>(); | 181 | Dictionary<string, object> result = new Dictionary<string, object>(); |
189 | if ((accounts == null) || ((accounts != null) && (accounts.Count == 0))) | 182 | if ((accounts == null) || ((accounts != null) && (accounts.Count == 0))) |
183 | { | ||
190 | result["result"] = "null"; | 184 | result["result"] = "null"; |
185 | } | ||
191 | else | 186 | else |
192 | { | 187 | { |
193 | int i = 0; | 188 | int i = 0; |
@@ -208,7 +203,7 @@ namespace OpenSim.Server.Handlers.UserAccounts | |||
208 | byte[] StoreAccount(Dictionary<string, object> request) | 203 | byte[] StoreAccount(Dictionary<string, object> request) |
209 | { | 204 | { |
210 | UUID principalID = UUID.Zero; | 205 | UUID principalID = UUID.Zero; |
211 | if (!(request.ContainsKey("PrincipalID") && UUID.TryParse(request["PrincipalID"].ToString(), out principalID))) | 206 | if (request.ContainsKey("PrincipalID") && !UUID.TryParse(request["PrincipalID"].ToString(), out principalID)) |
212 | return FailureResult(); | 207 | return FailureResult(); |
213 | 208 | ||
214 | UUID scopeID = UUID.Zero; | 209 | UUID scopeID = UUID.Zero; |