PGSQLAuthenticationData.cs 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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. using System;
  28. using System.Collections;
  29. using System.Collections.Generic;
  30. using OpenMetaverse;
  31. using OpenSim.Framework;
  32. using System.Reflection;
  33. using System.Text;
  34. using System.Data;
  35. using Npgsql;
  36. using NpgsqlTypes;
  37. namespace OpenSim.Data.PGSQL
  38. {
  39. public class PGSQLAuthenticationData : IAuthenticationData
  40. {
  41. private string m_Realm;
  42. private List<string> m_ColumnNames = null;
  43. private int m_LastExpire = 0;
  44. private string m_ConnectionString;
  45. private PGSQLManager m_database;
  46. protected virtual Assembly Assembly
  47. {
  48. get { return GetType().Assembly; }
  49. }
  50. public PGSQLAuthenticationData(string connectionString, string realm)
  51. {
  52. m_Realm = realm;
  53. m_ConnectionString = connectionString;
  54. using (NpgsqlConnection conn = new NpgsqlConnection(m_ConnectionString))
  55. {
  56. conn.Open();
  57. Migration m = new Migration(conn, GetType().Assembly, "AuthStore");
  58. m_database = new PGSQLManager(m_ConnectionString);
  59. m.Update();
  60. }
  61. }
  62. public AuthenticationData Get(UUID principalID)
  63. {
  64. AuthenticationData ret = new AuthenticationData();
  65. ret.Data = new Dictionary<string, object>();
  66. string sql = string.Format("select * from {0} where uuid = :principalID", m_Realm);
  67. using (NpgsqlConnection conn = new NpgsqlConnection(m_ConnectionString))
  68. using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn))
  69. {
  70. cmd.Parameters.Add(m_database.CreateParameter("principalID", principalID));
  71. conn.Open();
  72. using (NpgsqlDataReader result = cmd.ExecuteReader())
  73. {
  74. if (result.Read())
  75. {
  76. ret.PrincipalID = principalID;
  77. if (m_ColumnNames == null)
  78. {
  79. m_ColumnNames = new List<string>();
  80. DataTable schemaTable = result.GetSchemaTable();
  81. foreach (DataRow row in schemaTable.Rows)
  82. m_ColumnNames.Add(row["ColumnName"].ToString());
  83. }
  84. foreach (string s in m_ColumnNames)
  85. {
  86. if (s == "UUID"||s == "uuid")
  87. continue;
  88. ret.Data[s] = result[s].ToString();
  89. }
  90. return ret;
  91. }
  92. }
  93. }
  94. return null;
  95. }
  96. public bool Store(AuthenticationData data)
  97. {
  98. data.Data.Remove("UUID");
  99. data.Data.Remove("uuid");
  100. /*
  101. Dictionary<string, object> oAuth = new Dictionary<string, object>();
  102. foreach (KeyValuePair<string, object> oDado in data.Data)
  103. {
  104. if (oDado.Key != oDado.Key.ToLower())
  105. {
  106. oAuth.Add(oDado.Key.ToLower(), oDado.Value);
  107. }
  108. }
  109. foreach (KeyValuePair<string, object> oDado in data.Data)
  110. {
  111. if (!oAuth.ContainsKey(oDado.Key.ToLower())) {
  112. oAuth.Add(oDado.Key.ToLower(), oDado.Value);
  113. }
  114. }
  115. */
  116. string[] fields = new List<string>(data.Data.Keys).ToArray();
  117. StringBuilder updateBuilder = new StringBuilder();
  118. using (NpgsqlConnection conn = new NpgsqlConnection(m_ConnectionString))
  119. using (NpgsqlCommand cmd = new NpgsqlCommand())
  120. {
  121. updateBuilder.AppendFormat("update {0} set ", m_Realm);
  122. bool first = true;
  123. foreach (string field in fields)
  124. {
  125. if (!first)
  126. updateBuilder.Append(", ");
  127. updateBuilder.AppendFormat("\"{0}\" = :{0}",field);
  128. first = false;
  129. cmd.Parameters.Add(m_database.CreateParameter("" + field, data.Data[field]));
  130. }
  131. updateBuilder.Append(" where uuid = :principalID");
  132. cmd.CommandText = updateBuilder.ToString();
  133. cmd.Connection = conn;
  134. cmd.Parameters.Add(m_database.CreateParameter("principalID", data.PrincipalID));
  135. conn.Open();
  136. if (cmd.ExecuteNonQuery() < 1)
  137. {
  138. StringBuilder insertBuilder = new StringBuilder();
  139. insertBuilder.AppendFormat("insert into {0} (uuid, \"", m_Realm);
  140. insertBuilder.Append(String.Join("\", \"", fields));
  141. insertBuilder.Append("\") values (:principalID, :");
  142. insertBuilder.Append(String.Join(", :", fields));
  143. insertBuilder.Append(")");
  144. cmd.CommandText = insertBuilder.ToString();
  145. if (cmd.ExecuteNonQuery() < 1)
  146. {
  147. return false;
  148. }
  149. }
  150. }
  151. return true;
  152. }
  153. public bool SetDataItem(UUID principalID, string item, string value)
  154. {
  155. string sql = string.Format("update {0} set {1} = :{1} where uuid = :UUID", m_Realm, item);
  156. using (NpgsqlConnection conn = new NpgsqlConnection(m_ConnectionString))
  157. using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn))
  158. {
  159. cmd.Parameters.Add(m_database.CreateParameter("\"" + item + "\"", value));
  160. conn.Open();
  161. if (cmd.ExecuteNonQuery() > 0)
  162. return true;
  163. }
  164. return false;
  165. }
  166. public bool SetToken(UUID principalID, string token, int lifetime)
  167. {
  168. if (System.Environment.TickCount - m_LastExpire > 30000)
  169. DoExpire();
  170. string sql = "insert into tokens (uuid, token, validity) values (:principalID, :token, :lifetime)";
  171. using (NpgsqlConnection conn = new NpgsqlConnection(m_ConnectionString))
  172. using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn))
  173. {
  174. cmd.Parameters.Add(m_database.CreateParameter("principalID", principalID));
  175. cmd.Parameters.Add(m_database.CreateParameter("token", token));
  176. cmd.Parameters.Add(m_database.CreateParameter("lifetime", DateTime.Now.AddMinutes(lifetime)));
  177. conn.Open();
  178. if (cmd.ExecuteNonQuery() > 0)
  179. {
  180. return true;
  181. }
  182. }
  183. return false;
  184. }
  185. public bool CheckToken(UUID principalID, string token, int lifetime)
  186. {
  187. if (System.Environment.TickCount - m_LastExpire > 30000)
  188. DoExpire();
  189. DateTime validDate = DateTime.Now.AddMinutes(lifetime);
  190. string sql = "update tokens set validity = :validDate where uuid = :principalID and token = :token and validity > (CURRENT_DATE + CURRENT_TIME)";
  191. using (NpgsqlConnection conn = new NpgsqlConnection(m_ConnectionString))
  192. using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn))
  193. {
  194. cmd.Parameters.Add(m_database.CreateParameter("principalID", principalID));
  195. cmd.Parameters.Add(m_database.CreateParameter("token", token));
  196. cmd.Parameters.Add(m_database.CreateParameter("validDate", validDate));
  197. conn.Open();
  198. if (cmd.ExecuteNonQuery() > 0)
  199. {
  200. return true;
  201. }
  202. }
  203. return false;
  204. }
  205. private void DoExpire()
  206. {
  207. DateTime currentDateTime = DateTime.Now;
  208. string sql = "delete from tokens where validity < :currentDateTime";
  209. using (NpgsqlConnection conn = new NpgsqlConnection(m_ConnectionString))
  210. using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn))
  211. {
  212. conn.Open();
  213. cmd.Parameters.Add(m_database.CreateParameter("currentDateTime", currentDateTime));
  214. cmd.ExecuteNonQuery();
  215. }
  216. m_LastExpire = System.Environment.TickCount;
  217. }
  218. }
  219. }