/SomethingSpacialSL4/SomethingSpacial.AppServices/Models/RegistrationDataExtensions.cs
# · C# · 142 lines · 59 code · 10 blank · 73 comment · 6 complexity · b1a32c2e5b4e6cdebf7e85763d702ce2 MD5 · raw file
- namespace SomethingSpacial.AppServices.Web
- {
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using SomethingSpacial.AppServices.Web.Resources;
- using System.ServiceModel.DomainServices.Client.ApplicationServices;
-
- public partial class RegistrationData
- {
- #region Password Confirmation Field and Validation
- private string _passwordConfirmation;
-
- /// <summary>
- /// Stores the password the user entered in the registration UI, even if it is
- /// invalid. This way we can validate the password confirmation adequately all
- /// the times
- /// </summary>
- /// <remarks>
- /// This gets set on the <see cref="System.Windows.Controls.PasswordBox.PasswordChanged"/> event
- /// </remarks>
- [Display(AutoGenerateField = false)]
- public string ActualPassword { get; set; }
-
- [Required(ErrorMessageResourceName = "ValidationErrorRequiredField", ErrorMessageResourceType = typeof(ErrorResources))]
- [Display(Order = 4, Name = "PasswordConfirmationLabel", ResourceType = typeof(RegistrationDataResources))]
- [CustomValidation(typeof(RegistrationData), "CheckPasswordConfirmation")]
- public string PasswordConfirmation
- {
- get
- {
- return this._passwordConfirmation;
- }
-
- set
- {
- this.ValidateProperty("PasswordConfirmation", value);
- this._passwordConfirmation = value;
- this.RaisePropertyChanged("PasswordConfirmation");
- }
- }
-
- public static ValidationResult CheckPasswordConfirmation(string passwordConfirmation, ValidationContext validationContext)
- {
- RegistrationData registrationData = (RegistrationData)validationContext.ObjectInstance;
-
- if (registrationData.ActualPassword == passwordConfirmation)
- {
- return ValidationResult.Success;
- }
-
- return new ValidationResult(ErrorResources.ValidationErrorPasswordConfirmationMismatch, new string[] { "PasswordConfirmation" });
- }
- #endregion
-
- #region Make DisplayName Bindable
- partial void OnCreated()
- {
- this.PropertyChanged += this.RaiseDisplayNameChangedIfNeeded;
- }
-
- private void RaiseDisplayNameChangedIfNeeded(object sender, PropertyChangedEventArgs eventArgs)
- {
- if (eventArgs.PropertyName == "UserName" || eventArgs.PropertyName == "FriendlyName")
- {
- this.RaisePropertyChanged("DisplayName");
- }
- /*
-
- if (eventArgs.PropertyName == "Website" )
- {
- this.RaisePropertyChanged("Website");
- }
-
- if (eventArgs.PropertyName == "Address" )
- {
- this.RaisePropertyChanged("Address");
- }
-
-
- if (eventArgs.PropertyName == "City" )
- {
- this.RaisePropertyChanged("City");
- }
-
-
- if (eventArgs.PropertyName == "State" )
- {
- this.RaisePropertyChanged("State");
- }
-
-
- if (eventArgs.PropertyName == "ZipCode" )
- {
- this.RaisePropertyChanged("ZipCode");
- }
-
-
- if (eventArgs.PropertyName == "Bio" )
- {
- this.RaisePropertyChanged("Bio");
- }
-
-
- if (eventArgs.PropertyName == "PhotoUrl" )
- {
- this.RaisePropertyChanged("PhotoUrl");
- }
-
-
- if (eventArgs.PropertyName == "TwitterID" )
- {
- this.RaisePropertyChanged("TwitterID");
- }
-
-
- if (eventArgs.PropertyName == "FacebookID" )
- {
- this.RaisePropertyChanged("FacebookID");
- }
-
-
- if (eventArgs.PropertyName == "LinkedINid")
- {
- this.RaisePropertyChanged("LinkedINid");
- }
-
- */
- }
- #endregion
-
- #region Convenience Methods
- /// <summary>
- /// Creates a new <see cref="System.ServiceModel.DomainServices.Client.ApplicationServices.LoginParameters"/>
- /// initialized with this entity's data (IsPersistent will default to false)
- /// </summary>
- public LoginParameters ToLoginParameters()
- {
- return new LoginParameters(this.UserName, this.Password, false, null);
- }
- #endregion
- }
- }