Ejemplo n.º 1
0
        /// <summary>
        /// Changes the password.
        /// </summary>
        /// <param name="user">The user.</param>
        /// <param name="oldPassword">The old password.</param>
        /// <param name="newPassword">The new password.</param>
        /// <param name="warningMessage">The warning message.</param>
        /// <returns>
        /// A <see cref="System.Boolean" /> value that indicates if the password change was successful. <c>true</c> if successful; otherwise <c>false</c>.
        /// </returns>
        /// <exception cref="System.Exception">Cannot change password on external service type</exception>
        public override bool ChangePassword(UserLogin user, string oldPassword, string newPassword, out string warningMessage)
        {
            warningMessage = null;
            AuthenticationComponent authenticationComponent = AuthenticationContainer.GetComponent(user.EntityType.Name);

            if (authenticationComponent == null || !authenticationComponent.IsActive)
            {
                throw new Exception(string.Format("'{0}' service does not exist, or is not active", user.EntityType.FriendlyName));
            }

            if (authenticationComponent.ServiceType == AuthenticationServiceType.External)
            {
                throw new Exception("Cannot change password on external service type");
            }

            if (!authenticationComponent.Authenticate(user, oldPassword))
            {
                return(false);
            }

            user.Password = authenticationComponent.EncodePassword(user, newPassword);
            user.LastPasswordChangedDateTime = RockDateTime.Now;

            return(true);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Changes the password after first validating the existing password
        /// </summary>
        /// <param name="user">The user.</param>
        /// <param name="oldPassword">The old password.</param>
        /// <param name="newPassword">The new password.</param>
        /// <returns></returns>
        public bool ChangePassword(UserLogin user, string oldPassword, string newPassword)
        {
            if (user.ServiceType == AuthenticationServiceType.External)
            {
                throw new Exception("Cannot change password on external service type");
            }

            AuthenticationComponent authenticationComponent = GetComponent(user.ServiceName);

            if (authenticationComponent == null)
            {
                throw new Exception(string.Format("'{0}' service does not exist, or is not active", user.ServiceName));
            }

            if (!authenticationComponent.Authenticate(user, oldPassword))
            {
                return(false);
            }

            user.Password = authenticationComponent.EncodePassword(user, newPassword);
            user.LastPasswordChangedDate = DateTime.Now;

            return(true);
        }