Example #1
0
        public async Task<ActionResult> ManageEmail()
        {
            ViewBag.ManageNavigationKey = "Email";

            var user = await _userManager.FindByIdAsync(User.Identity.GetUserId().ParseGuid());

            var model = new ManageEmailViewModel();
            model.CurrentEmail = user.Email;
            model.IsCurrentEmailConfirmed = user.EmailConfirmed;
            model.IsPasswordSet = !string.IsNullOrEmpty(user.PasswordHash);

            return View(model);
        }
Example #2
0
        public async Task<ActionResult> ManageEmail(ManageEmailViewModel model)
        {
            ViewBag.ManageNavigationKey = "Email";

            var user = await _userManager.FindByIdAsync(User.Identity.GetUserId().ParseGuid());
            model.CurrentEmail = user.Email;
            model.IsCurrentEmailConfirmed = user.EmailConfirmed;
            model.IsPasswordSet = !string.IsNullOrEmpty(user.PasswordHash);

            if (!ModelState.IsValid)
                return View(model);

            if (_userManager.VerifyHashedPassword(user.PasswordHash, model.Password) != PasswordVerificationResult.Success)
            {
                ModelState.AddModelError(string.Empty, "The provided password is invalid.");
                return View(model);
            }

            if (string.Equals(user.Email, model.NewEmail, StringComparison.CurrentCultureIgnoreCase))
            {
                ModelState.AddModelError(string.Empty, "The email provided is already set for this account.");
                return View(model);
            }

            user.Email = model.NewEmail;
            user.EmailConfirmed = false;
            var result = await _userManager.UpdateAsync(user);

            if (result.Succeeded)
            {
                // send a confirmation email
                var code = await _userManager.GenerateEmailConfirmationTokenAsync(user.Id);
                var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code }, Request.Url.Scheme);
                await _userManager.SendEmailAsync(user.Id, "Confirm your email", "Please confirm your email by clicking <a href=\"" + callbackUrl + "\">here</a>");

                AddSuccessMessage("Your e-mail has been changed. A email has been sent to confirm the email address.");
                return View(model);
            }

            foreach (var error in result.Errors)
                ModelState.AddModelError(string.Empty, error);

            return View(model);
        }