aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/AuthenticationService
diff options
context:
space:
mode:
authorMelanie2011-10-25 03:26:09 +0100
committerMelanie2011-10-25 03:26:09 +0100
commit4e9457ca0c8669a0d47341c651d5f439fda1eb8d (patch)
tree002620738b62275e4dca20a56b701b5ac8b7642d /OpenSim/Services/AuthenticationService
parentMerge commit 'b868328d519cfb3db597f684fd1f947912fc2222' into bigmerge (diff)
parentAdd optional getauthinfo and setauthinfo authentication service calls. (diff)
downloadopensim-SC_OLD-4e9457ca0c8669a0d47341c651d5f439fda1eb8d.zip
opensim-SC_OLD-4e9457ca0c8669a0d47341c651d5f439fda1eb8d.tar.gz
opensim-SC_OLD-4e9457ca0c8669a0d47341c651d5f439fda1eb8d.tar.bz2
opensim-SC_OLD-4e9457ca0c8669a0d47341c651d5f439fda1eb8d.tar.xz
Merge commit '4c9400e6460a73baa2d687afe73a62c6efca9f37' into bigmerge
Conflicts: OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs
Diffstat (limited to 'OpenSim/Services/AuthenticationService')
-rw-r--r--OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs46
1 files changed, 45 insertions, 1 deletions
diff --git a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs
index 5980f0c..e42f9a0 100644
--- a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs
+++ b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs
@@ -30,11 +30,11 @@ using OpenMetaverse;
30using log4net; 30using log4net;
31using Nini.Config; 31using Nini.Config;
32using System.Reflection; 32using System.Reflection;
33using OpenSim.Services.Base;
34using OpenSim.Server.Base; 33using OpenSim.Server.Base;
35using OpenSim.Services.Interfaces; 34using OpenSim.Services.Interfaces;
36using OpenSim.Data; 35using OpenSim.Data;
37using OpenSim.Framework; 36using OpenSim.Framework;
37using OpenSim.Services.Base;
38 38
39namespace OpenSim.Services.AuthenticationService 39namespace OpenSim.Services.AuthenticationService
40{ 40{
@@ -134,6 +134,50 @@ namespace OpenSim.Services.AuthenticationService
134 m_log.InfoFormat("[AUTHENTICATION DB]: Set password for principalID {0}", principalID); 134 m_log.InfoFormat("[AUTHENTICATION DB]: Set password for principalID {0}", principalID);
135 return true; 135 return true;
136 } 136 }
137
138 public virtual AuthInfo GetAuthInfo(UUID principalID)
139 {
140 AuthenticationData data = m_Database.Get(principalID);
141
142 if (data == null)
143 {
144 return null;
145 }
146 else
147 {
148 AuthInfo info
149 = new AuthInfo()
150 {
151 PrincipalID = data.PrincipalID,
152 AccountType = data.Data["accountType"] as string,
153 PasswordHash = data.Data["passwordHash"] as string,
154 PasswordSalt = data.Data["passwordSalt"] as string,
155 WebLoginKey = data.Data["webLoginKey"] as string
156 };
157
158 return info;
159 }
160 }
161
162 public virtual bool SetAuthInfo(AuthInfo info)
163 {
164 AuthenticationData auth = new AuthenticationData();
165 auth.PrincipalID = info.PrincipalID;
166 auth.Data = new System.Collections.Generic.Dictionary<string, object>();
167 auth.Data["accountType"] = info.AccountType;
168 auth.Data["webLoginKey"] = info.WebLoginKey;
169 auth.Data["passwordHash"] = info.PasswordHash;
170 auth.Data["passwordSalt"] = info.PasswordSalt;
171
172 if (!m_Database.Store(auth))
173 {
174 m_log.ErrorFormat("[AUTHENTICATION DB]: Failed to store authentication info.");
175 return false;
176 }
177
178 m_log.DebugFormat("[AUTHENTICATION DB]: Set authentication info for principalID {0}", info.PrincipalID);
179 return true;
180 }
137 181
138 protected string GetToken(UUID principalID, int lifetime) 182 protected string GetToken(UUID principalID, int lifetime)
139 { 183 {