/MSDNVideo2008_vs2010/MSDNVideo.Web/App_Code/SocioMembershipProvider.cs

http://virtualstar.googlecode.com/ · C# · 281 lines · 225 code · 56 blank · 0 comment · 13 complexity · ee1ac3d6b4a5c57c9d27911e1138b4a9 MD5 · raw file

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.HtmlControls;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.WebControls.WebParts;
  11. using System.Xml.Linq;
  12. using System.Web.Security;
  13. using MSDNVideo.Comun;
  14. using MSDNVideo.LogicaNegocio;
  15. using System.ComponentModel;
  16. using System.Collections.Specialized;
  17. public class SocioMembershipProvider : MembershipProvider
  18. {
  19. private string _applicationName = "MSDNVideo";
  20. public SocioMembershipProvider()
  21. {
  22. }
  23. #region "Métodos de MembershipProvider"
  24. public override string ApplicationName
  25. {
  26. get
  27. {
  28. return _applicationName;
  29. }
  30. set
  31. {
  32. _applicationName = value;
  33. }
  34. }
  35. public override bool ChangePassword(string username, string oldPassword, string newPassword)
  36. {
  37. throw new NotSupportedException();
  38. }
  39. public override bool ChangePasswordQuestionAndAnswer(string username, string password, string newPasswordQuestion, string newPasswordAnswer)
  40. {
  41. throw new NotSupportedException();
  42. }
  43. public override MembershipUser CreateUser(string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, out MembershipCreateStatus status)
  44. {
  45. UsuariosCN usuariosCN = new UsuariosCN();
  46. Socio usuario = new Socio();
  47. usuario.NIF = username;
  48. usuario.Rol = Rol.Socio;
  49. usuariosCN.AgregarUsuario(usuario);
  50. status = MembershipCreateStatus.Success;
  51. return SocioToMembershipUser(usuario);
  52. }
  53. public override bool DeleteUser(string username, bool deleteAllRelatedData)
  54. {
  55. Usuario usuario;
  56. UsuariosCN UsuariosCN = new UsuariosCN();
  57. usuario = UsuariosCN.ObtenerSocioPorNIF(username);
  58. if(usuario != null)
  59. UsuariosCN.EliminarUsuario(usuario);
  60. return true;
  61. }
  62. public override bool EnablePasswordReset
  63. {
  64. get
  65. {
  66. return false;
  67. }
  68. }
  69. public override bool EnablePasswordRetrieval
  70. {
  71. get
  72. {
  73. return false;
  74. }
  75. }
  76. public override MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
  77. {
  78. throw new NotSupportedException();
  79. }
  80. public override MembershipUserCollection FindUsersByName(string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
  81. {
  82. throw new NotSupportedException();
  83. }
  84. public override MembershipUserCollection GetAllUsers(int pageIndex, int pageSize, out int totalRecords)
  85. {
  86. BindingList<Socio> socios;
  87. UsuariosCN usuariosCN = new UsuariosCN();
  88. socios = usuariosCN.ObtenerSocios();
  89. totalRecords = socios.Count;
  90. return SociosToCollection(socios, pageIndex, pageSize);
  91. }
  92. public override int GetNumberOfUsersOnline()
  93. {
  94. return 0;
  95. }
  96. public override string GetPassword(string username, string answer)
  97. {
  98. throw new NotSupportedException();
  99. }
  100. public override MembershipUser GetUser(object providerUserKey, bool userIsOnline)
  101. {
  102. throw new NotSupportedException();
  103. }
  104. public override MembershipUser GetUser(string username, bool userIsOnline)
  105. {
  106. throw new NotSupportedException();
  107. }
  108. public override string GetUserNameByEmail(string email)
  109. {
  110. throw new NotSupportedException();
  111. }
  112. public override void Initialize(string name, NameValueCollection config)
  113. {
  114. if (config == null)
  115. throw new ArgumentNullException("No hay fichero de configuracion?");
  116. if (String.IsNullOrEmpty(name))
  117. name = "SocioMembershipProvider";
  118. if (String.IsNullOrEmpty(config["description"]))
  119. {
  120. config.Remove("description");
  121. config.Add("description", "Proveedor de Membership de MSDN Video");
  122. }
  123. base.Initialize(name, config);
  124. }
  125. public override int MaxInvalidPasswordAttempts
  126. {
  127. get
  128. {
  129. return 0;
  130. }
  131. }
  132. public override int MinRequiredNonAlphanumericCharacters
  133. {
  134. get
  135. {
  136. return 0;
  137. }
  138. }
  139. public override int MinRequiredPasswordLength
  140. {
  141. get
  142. {
  143. return 6;
  144. }
  145. }
  146. public override int PasswordAttemptWindow
  147. {
  148. get
  149. {
  150. return 0;
  151. }
  152. }
  153. public override MembershipPasswordFormat PasswordFormat
  154. {
  155. get
  156. {
  157. return MembershipPasswordFormat.Hashed;
  158. }
  159. }
  160. public override string PasswordStrengthRegularExpression
  161. {
  162. get
  163. {
  164. return null;
  165. }
  166. }
  167. public override bool RequiresQuestionAndAnswer
  168. {
  169. get
  170. {
  171. return false;
  172. }
  173. }
  174. public override bool RequiresUniqueEmail
  175. {
  176. get
  177. {
  178. return true;
  179. }
  180. }
  181. public override string ResetPassword(string username, string answer)
  182. {
  183. throw new NotSupportedException();
  184. }
  185. public override bool UnlockUser(string userName)
  186. {
  187. throw new NotSupportedException();
  188. }
  189. public override void UpdateUser(MembershipUser user)
  190. {
  191. throw new NotSupportedException();
  192. }
  193. public override bool ValidateUser(string username, string password)
  194. {
  195. UsuariosCN usuariosCN = new UsuariosCN();
  196. Usuario usuario;
  197. usuario = usuariosCN.ValidarUsuario(username, password);
  198. if (usuario == null)
  199. return false;
  200. else if (usuario.Rol == Rol.Admin)
  201. return false;
  202. else
  203. return true;
  204. }
  205. #endregion
  206. #region "Métodos privados"
  207. private MembershipUserCollection SociosToCollection(BindingList<Socio> socios, int pageIndex, int pageSize)
  208. {
  209. MembershipUserCollection collection = new MembershipUserCollection();
  210. int i;
  211. for(i = (pageSize * pageIndex); i<(pageSize * (pageIndex + 1));i++)
  212. {
  213. if (i < socios.Count)
  214. collection.Add(SocioToMembershipUser(socios[i]));
  215. else
  216. return collection;
  217. }
  218. return collection;
  219. }
  220. private MembershipUser SocioToMembershipUser(Socio socio)
  221. {
  222. return new MembershipUser(base.Name, socio.NIF, socio.UsuarioID, socio.Email, null, null, true, false, DateTime.Now, DateTime.Now, DateTime.Now, DateTime.Now, DateTime.Now);
  223. }
  224. #endregion
  225. }