diff options
author | Melanie | 2009-09-04 00:23:26 +0100 |
---|---|---|
committer | Melanie | 2009-09-04 00:23:26 +0100 |
commit | 90262d40929ab0bdf6888861608a0e712b793f48 (patch) | |
tree | 6cad6a5418dfcf6fa4db62d85448db7992b0c181 /OpenSim/Data/MySQL/MySQLAuthenticationData.cs | |
parent | Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-90262d40929ab0bdf6888861608a0e712b793f48.zip opensim-SC_OLD-90262d40929ab0bdf6888861608a0e712b793f48.tar.gz opensim-SC_OLD-90262d40929ab0bdf6888861608a0e712b793f48.tar.bz2 opensim-SC_OLD-90262d40929ab0bdf6888861608a0e712b793f48.tar.xz |
Add the user authentication data adapter. This is meant to use a new table
schema, but can read the old ones for compatibility. It should not be used
to write to the old tables unless you know what you're doing!
This is untested and will probably not work.
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLAuthenticationData.cs')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLAuthenticationData.cs | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAuthenticationData.cs b/OpenSim/Data/MySQL/MySQLAuthenticationData.cs new file mode 100644 index 0000000..625d3b1 --- /dev/null +++ b/OpenSim/Data/MySQL/MySQLAuthenticationData.cs | |||
@@ -0,0 +1,146 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSimulator Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Data; | ||
32 | using OpenMetaverse; | ||
33 | using OpenSim.Framework; | ||
34 | using MySql.Data.MySqlClient; | ||
35 | |||
36 | namespace OpenSim.Data.MySQL | ||
37 | { | ||
38 | public class MySqlAuthenticationData : MySqlFramework, IAuthenticationData | ||
39 | { | ||
40 | private string m_Realm; | ||
41 | private DataTable m_SchemaTable = null; | ||
42 | |||
43 | public MySqlAuthenticationData(string connectionString, string realm) | ||
44 | : base(connectionString) | ||
45 | { | ||
46 | m_Realm = realm; | ||
47 | } | ||
48 | |||
49 | public AuthenticationData Get(UUID principalID) | ||
50 | { | ||
51 | AuthenticationData ret = new AuthenticationData(); | ||
52 | ret.Data = new Dictionary<string, object>(); | ||
53 | |||
54 | MySqlCommand cmd = new MySqlCommand( | ||
55 | "select * from `"+m_Realm+"` where UUID = ?principalID" | ||
56 | ); | ||
57 | |||
58 | cmd.Parameters.AddWithValue("?principalID", principalID.ToString()); | ||
59 | |||
60 | IDataReader result = ExecuteReader(cmd); | ||
61 | |||
62 | if (result.Read()) | ||
63 | { | ||
64 | ret.PrincipalID = principalID; | ||
65 | |||
66 | if (m_SchemaTable == null) | ||
67 | m_SchemaTable = result.GetSchemaTable(); | ||
68 | |||
69 | foreach (DataColumn c in m_SchemaTable.Columns) | ||
70 | { | ||
71 | if (c.ColumnName == "UUID") | ||
72 | continue; | ||
73 | |||
74 | ret.Data[c.ColumnName] = result[c.ColumnName].ToString(); | ||
75 | } | ||
76 | |||
77 | result.Close(); | ||
78 | CloseReaderCommand(cmd); | ||
79 | |||
80 | return ret; | ||
81 | } | ||
82 | |||
83 | result.Close(); | ||
84 | CloseReaderCommand(cmd); | ||
85 | |||
86 | return null; | ||
87 | } | ||
88 | |||
89 | public bool Store(AuthenticationData data) | ||
90 | { | ||
91 | if (data.Data.ContainsKey("UUID")) | ||
92 | data.Data.Remove("UUID"); | ||
93 | |||
94 | string[] fields = new List<string>(data.Data.Keys).ToArray(); | ||
95 | |||
96 | MySqlCommand cmd = new MySqlCommand(); | ||
97 | |||
98 | string update = "update `"+m_Realm+"` set "; | ||
99 | bool first = true; | ||
100 | foreach (string field in fields) | ||
101 | { | ||
102 | if (!first) | ||
103 | update += ", "; | ||
104 | update += "`" + field + "` = ?"+field; | ||
105 | |||
106 | first = false; | ||
107 | |||
108 | cmd.Parameters.AddWithValue(field, data.Data[field]); | ||
109 | } | ||
110 | |||
111 | update += " where UUID = ?principalID"; | ||
112 | |||
113 | cmd.CommandText = update; | ||
114 | cmd.Parameters.AddWithValue("UUID", data.PrincipalID.ToString()); | ||
115 | |||
116 | if (ExecuteNonQuery(cmd) < 1) | ||
117 | { | ||
118 | string insert = "insert into `" + m_Realm + "` (`UUID`, `" + | ||
119 | String.Join("`, `", fields) + | ||
120 | "`) values ( ?UUID, ?" + String.Join(", ?", fields) + ")"; | ||
121 | |||
122 | if (ExecuteNonQuery(cmd) < 0) | ||
123 | { | ||
124 | cmd.Dispose(); | ||
125 | return false; | ||
126 | } | ||
127 | } | ||
128 | |||
129 | cmd.Dispose(); | ||
130 | |||
131 | return true; | ||
132 | } | ||
133 | |||
134 | public bool SetDataItem(UUID principalID, string item, string value) | ||
135 | { | ||
136 | MySqlCommand cmd = new MySqlCommand("update `" + m_Realm + | ||
137 | "` set `" + item + "` = ?" + item + " where UUID = ?UUID"); | ||
138 | |||
139 | |||
140 | cmd.Parameters.AddWithValue(item, value); | ||
141 | cmd.Parameters.AddWithValue("UUID", principalID.ToString()); | ||
142 | |||
143 | return false; | ||
144 | } | ||
145 | } | ||
146 | } | ||