diff options
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Interfaces/IAttachmentsService.cs | 17 | ||||
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginResponse.cs | 5 | ||||
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 6 |
3 files changed, 28 insertions, 0 deletions
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/LLLoginService/LLLoginResponse.cs b/OpenSim/Services/LLLoginService/LLLoginResponse.cs index ee30fa3..0cd8f5b 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 be90d38..9efdd11 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -217,6 +217,12 @@ namespace OpenSim.Services.LLLoginService | |||
217 | return LLFailedLoginResponse.UserProblem; | 217 | return LLFailedLoginResponse.UserProblem; |
218 | } | 218 | } |
219 | 219 | ||
220 | if (account.UserLevel < 0) | ||
221 | { | ||
222 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: Unverified account"); | ||
223 | return LLFailedLoginResponse.UnverifiedAccountProblem; | ||
224 | } | ||
225 | |||
220 | if (account.UserLevel < m_MinLoginLevel) | 226 | if (account.UserLevel < m_MinLoginLevel) |
221 | { | 227 | { |
222 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: login is blocked for user level {0}", account.UserLevel); | 228 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: login is blocked for user level {0}", account.UserLevel); |