diff options
Diffstat (limited to 'OpenSim/Services')
6 files changed, 57 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs b/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs index 41ebeaf..9f86078 100644 --- a/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs +++ b/OpenSim/Services/Connectors/Presence/PresenceServiceConnector.cs | |||
@@ -300,6 +300,14 @@ namespace OpenSim.Services.Connectors | |||
300 | { | 300 | { |
301 | pinfo = new PresenceInfo((Dictionary<string, object>)replyData["result"]); | 301 | pinfo = new PresenceInfo((Dictionary<string, object>)replyData["result"]); |
302 | } | 302 | } |
303 | else | ||
304 | { | ||
305 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Invalid reply (result not dictionary) received from presence server when querying for sessionID {0}", sessionID.ToString()); | ||
306 | } | ||
307 | } | ||
308 | else | ||
309 | { | ||
310 | m_log.DebugFormat("[PRESENCE CONNECTOR]: Invalid reply received from presence server when querying for sessionID {0}", sessionID.ToString()); | ||
303 | } | 311 | } |
304 | 312 | ||
305 | return pinfo; | 313 | return pinfo; |
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs index ff0dd7e..8e0063b 100644 --- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | |||
@@ -442,7 +442,7 @@ namespace OpenSim.Services.Connectors.Simulation | |||
442 | return true; | 442 | return true; |
443 | } | 443 | } |
444 | 444 | ||
445 | public bool CloseAgent(GridRegion destination, UUID id) | 445 | private bool CloseAgent(GridRegion destination, UUID id, bool ChildOnly) |
446 | { | 446 | { |
447 | string uri = string.Empty; | 447 | string uri = string.Empty; |
448 | try | 448 | try |
@@ -459,6 +459,8 @@ namespace OpenSim.Services.Connectors.Simulation | |||
459 | 459 | ||
460 | WebRequest request = WebRequest.Create(uri); | 460 | WebRequest request = WebRequest.Create(uri); |
461 | request.Method = "DELETE"; | 461 | request.Method = "DELETE"; |
462 | if (ChildOnly) | ||
463 | request.Method += "CHILD"; | ||
462 | request.Timeout = 10000; | 464 | request.Timeout = 10000; |
463 | 465 | ||
464 | StreamReader sr = null; | 466 | StreamReader sr = null; |
@@ -491,6 +493,16 @@ namespace OpenSim.Services.Connectors.Simulation | |||
491 | return true; | 493 | return true; |
492 | } | 494 | } |
493 | 495 | ||
496 | public bool CloseChildAgent(GridRegion destination, UUID id) | ||
497 | { | ||
498 | return CloseAgent(destination, id, true); | ||
499 | } | ||
500 | |||
501 | public bool CloseAgent(GridRegion destination, UUID id) | ||
502 | { | ||
503 | return CloseAgent(destination, id, false); | ||
504 | } | ||
505 | |||
494 | #endregion Agents | 506 | #endregion Agents |
495 | 507 | ||
496 | #region Objects | 508 | #region Objects |
diff --git a/OpenSim/Services/Interfaces/IAttachmentsService.cs b/OpenSim/Services/Interfaces/IAttachmentsService.cs new file mode 100644 index 0000000..bdde369 --- /dev/null +++ b/OpenSim/Services/Interfaces/IAttachmentsService.cs | |||
@@ -0,0 +1,17 @@ | |||
1 | //////////////////////////////////////////////////////////////// | ||
2 | // | ||
3 | // (c) 2009, 2010 Careminster Limited and Melanie Thielker | ||
4 | // | ||
5 | // All rights reserved | ||
6 | // | ||
7 | using System; | ||
8 | using Nini.Config; | ||
9 | |||
10 | namespace OpenSim.Services.Interfaces | ||
11 | { | ||
12 | public interface IAttachmentsService | ||
13 | { | ||
14 | string Get(string id); | ||
15 | void Store(string id, string data); | ||
16 | } | ||
17 | } | ||
diff --git a/OpenSim/Services/Interfaces/ISimulationService.cs b/OpenSim/Services/Interfaces/ISimulationService.cs index 67d7cbe..33d6fde 100644 --- a/OpenSim/Services/Interfaces/ISimulationService.cs +++ b/OpenSim/Services/Interfaces/ISimulationService.cs | |||
@@ -71,6 +71,14 @@ namespace OpenSim.Services.Interfaces | |||
71 | bool ReleaseAgent(UUID originRegion, UUID id, string uri); | 71 | bool ReleaseAgent(UUID originRegion, UUID id, string uri); |
72 | 72 | ||
73 | /// <summary> | 73 | /// <summary> |
74 | /// Close child agent. | ||
75 | /// </summary> | ||
76 | /// <param name="regionHandle"></param> | ||
77 | /// <param name="id"></param> | ||
78 | /// <returns></returns> | ||
79 | bool CloseChildAgent(GridRegion destination, UUID id); | ||
80 | |||
81 | /// <summary> | ||
74 | /// Close agent. | 82 | /// Close agent. |
75 | /// </summary> | 83 | /// </summary> |
76 | /// <param name="regionHandle"></param> | 84 | /// <param name="regionHandle"></param> |
diff --git a/OpenSim/Services/LLLoginService/LLLoginResponse.cs b/OpenSim/Services/LLLoginService/LLLoginResponse.cs index 54d53fb..edf41bc 100644 --- a/OpenSim/Services/LLLoginService/LLLoginResponse.cs +++ b/OpenSim/Services/LLLoginService/LLLoginResponse.cs | |||
@@ -57,6 +57,7 @@ namespace OpenSim.Services.LLLoginService | |||
57 | public static LLFailedLoginResponse InventoryProblem; | 57 | public static LLFailedLoginResponse InventoryProblem; |
58 | public static LLFailedLoginResponse DeadRegionProblem; | 58 | public static LLFailedLoginResponse DeadRegionProblem; |
59 | public static LLFailedLoginResponse LoginBlockedProblem; | 59 | public static LLFailedLoginResponse LoginBlockedProblem; |
60 | public static LLFailedLoginResponse UnverifiedAccountProblem; | ||
60 | public static LLFailedLoginResponse AlreadyLoggedInProblem; | 61 | public static LLFailedLoginResponse AlreadyLoggedInProblem; |
61 | public static LLFailedLoginResponse InternalError; | 62 | public static LLFailedLoginResponse InternalError; |
62 | 63 | ||
@@ -80,6 +81,10 @@ namespace OpenSim.Services.LLLoginService | |||
80 | LoginBlockedProblem = new LLFailedLoginResponse("presence", | 81 | LoginBlockedProblem = new LLFailedLoginResponse("presence", |
81 | "Logins are currently restricted. Please try again later.", | 82 | "Logins are currently restricted. Please try again later.", |
82 | "false"); | 83 | "false"); |
84 | UnverifiedAccountProblem = new LLFailedLoginResponse("presence", | ||
85 | "Your account has not yet been verified. Please check " + | ||
86 | "your email and click the provided link.", | ||
87 | "false"); | ||
83 | AlreadyLoggedInProblem = new LLFailedLoginResponse("presence", | 88 | AlreadyLoggedInProblem = new LLFailedLoginResponse("presence", |
84 | "You appear to be already logged in. " + | 89 | "You appear to be already logged in. " + |
85 | "If this is not the case please wait for your session to timeout. " + | 90 | "If this is not the case please wait for your session to timeout. " + |
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 6319cc4..83f9ade 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -221,6 +221,12 @@ namespace OpenSim.Services.LLLoginService | |||
221 | return LLFailedLoginResponse.UserProblem; | 221 | return LLFailedLoginResponse.UserProblem; |
222 | } | 222 | } |
223 | 223 | ||
224 | if (account.UserLevel < 0) | ||
225 | { | ||
226 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: Unverified account"); | ||
227 | return LLFailedLoginResponse.UnverifiedAccountProblem; | ||
228 | } | ||
229 | |||
224 | if (account.UserLevel < m_MinLoginLevel) | 230 | if (account.UserLevel < m_MinLoginLevel) |
225 | { | 231 | { |
226 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: login is blocked for user level {0}", account.UserLevel); | 232 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: login is blocked for user level {0}", account.UserLevel); |