/SomethingSpacialSL4/SomethingSpacial.AppServices/Models/RegistrationDataExtensions.cs

# · C# · 142 lines · 59 code · 10 blank · 73 comment · 6 complexity · b1a32c2e5b4e6cdebf7e85763d702ce2 MD5 · raw file

  1. namespace SomethingSpacial.AppServices.Web
  2. {
  3. using System.ComponentModel;
  4. using System.ComponentModel.DataAnnotations;
  5. using SomethingSpacial.AppServices.Web.Resources;
  6. using System.ServiceModel.DomainServices.Client.ApplicationServices;
  7. public partial class RegistrationData
  8. {
  9. #region Password Confirmation Field and Validation
  10. private string _passwordConfirmation;
  11. /// <summary>
  12. /// Stores the password the user entered in the registration UI, even if it is
  13. /// invalid. This way we can validate the password confirmation adequately all
  14. /// the times
  15. /// </summary>
  16. /// <remarks>
  17. /// This gets set on the <see cref="System.Windows.Controls.PasswordBox.PasswordChanged"/> event
  18. /// </remarks>
  19. [Display(AutoGenerateField = false)]
  20. public string ActualPassword { get; set; }
  21. [Required(ErrorMessageResourceName = "ValidationErrorRequiredField", ErrorMessageResourceType = typeof(ErrorResources))]
  22. [Display(Order = 4, Name = "PasswordConfirmationLabel", ResourceType = typeof(RegistrationDataResources))]
  23. [CustomValidation(typeof(RegistrationData), "CheckPasswordConfirmation")]
  24. public string PasswordConfirmation
  25. {
  26. get
  27. {
  28. return this._passwordConfirmation;
  29. }
  30. set
  31. {
  32. this.ValidateProperty("PasswordConfirmation", value);
  33. this._passwordConfirmation = value;
  34. this.RaisePropertyChanged("PasswordConfirmation");
  35. }
  36. }
  37. public static ValidationResult CheckPasswordConfirmation(string passwordConfirmation, ValidationContext validationContext)
  38. {
  39. RegistrationData registrationData = (RegistrationData)validationContext.ObjectInstance;
  40. if (registrationData.ActualPassword == passwordConfirmation)
  41. {
  42. return ValidationResult.Success;
  43. }
  44. return new ValidationResult(ErrorResources.ValidationErrorPasswordConfirmationMismatch, new string[] { "PasswordConfirmation" });
  45. }
  46. #endregion
  47. #region Make DisplayName Bindable
  48. partial void OnCreated()
  49. {
  50. this.PropertyChanged += this.RaiseDisplayNameChangedIfNeeded;
  51. }
  52. private void RaiseDisplayNameChangedIfNeeded(object sender, PropertyChangedEventArgs eventArgs)
  53. {
  54. if (eventArgs.PropertyName == "UserName" || eventArgs.PropertyName == "FriendlyName")
  55. {
  56. this.RaisePropertyChanged("DisplayName");
  57. }
  58. /*
  59. if (eventArgs.PropertyName == "Website" )
  60. {
  61. this.RaisePropertyChanged("Website");
  62. }
  63. if (eventArgs.PropertyName == "Address" )
  64. {
  65. this.RaisePropertyChanged("Address");
  66. }
  67. if (eventArgs.PropertyName == "City" )
  68. {
  69. this.RaisePropertyChanged("City");
  70. }
  71. if (eventArgs.PropertyName == "State" )
  72. {
  73. this.RaisePropertyChanged("State");
  74. }
  75. if (eventArgs.PropertyName == "ZipCode" )
  76. {
  77. this.RaisePropertyChanged("ZipCode");
  78. }
  79. if (eventArgs.PropertyName == "Bio" )
  80. {
  81. this.RaisePropertyChanged("Bio");
  82. }
  83. if (eventArgs.PropertyName == "PhotoUrl" )
  84. {
  85. this.RaisePropertyChanged("PhotoUrl");
  86. }
  87. if (eventArgs.PropertyName == "TwitterID" )
  88. {
  89. this.RaisePropertyChanged("TwitterID");
  90. }
  91. if (eventArgs.PropertyName == "FacebookID" )
  92. {
  93. this.RaisePropertyChanged("FacebookID");
  94. }
  95. if (eventArgs.PropertyName == "LinkedINid")
  96. {
  97. this.RaisePropertyChanged("LinkedINid");
  98. }
  99. */
  100. }
  101. #endregion
  102. #region Convenience Methods
  103. /// <summary>
  104. /// Creates a new <see cref="System.ServiceModel.DomainServices.Client.ApplicationServices.LoginParameters"/>
  105. /// initialized with this entity's data (IsPersistent will default to false)
  106. /// </summary>
  107. public LoginParameters ToLoginParameters()
  108. {
  109. return new LoginParameters(this.UserName, this.Password, false, null);
  110. }
  111. #endregion
  112. }
  113. }