129 lines
4.1 KiB
C#
129 lines
4.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text.Encodings.Web;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Identity.ExternalClaims.Data;
|
|
using Identity.ExternalClaims.Services;
|
|
|
|
namespace Identity.ExternalClaims.Pages.Account.Manage
|
|
{
|
|
public partial class IndexModel : PageModel
|
|
{
|
|
private readonly UserManager<ApplicationUser> _userManager;
|
|
private readonly SignInManager<ApplicationUser> _signInManager;
|
|
private readonly IEmailSender _emailSender;
|
|
|
|
public IndexModel(
|
|
UserManager<ApplicationUser> userManager,
|
|
SignInManager<ApplicationUser> signInManager,
|
|
IEmailSender emailSender)
|
|
{
|
|
_userManager = userManager;
|
|
_signInManager = signInManager;
|
|
_emailSender = emailSender;
|
|
}
|
|
|
|
public string Username { get; set; }
|
|
|
|
public bool IsEmailConfirmed { get; set; }
|
|
|
|
[TempData]
|
|
public string StatusMessage { get; set; }
|
|
|
|
[BindProperty]
|
|
public InputModel Input { get; set; }
|
|
|
|
public class InputModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
public string Email { get; set; }
|
|
|
|
[Phone]
|
|
[Display(Name = "Phone number")]
|
|
public string PhoneNumber { get; set; }
|
|
}
|
|
|
|
public async Task<IActionResult> OnGetAsync()
|
|
{
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
Username = user.UserName;
|
|
|
|
Input = new InputModel
|
|
{
|
|
Email = user.Email,
|
|
PhoneNumber = user.PhoneNumber
|
|
};
|
|
|
|
IsEmailConfirmed = await _userManager.IsEmailConfirmedAsync(user);
|
|
|
|
return Page();
|
|
}
|
|
|
|
public async Task<IActionResult> OnPostAsync()
|
|
{
|
|
if (!ModelState.IsValid)
|
|
{
|
|
return Page();
|
|
}
|
|
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
if (Input.Email != user.Email)
|
|
{
|
|
var setEmailResult = await _userManager.SetEmailAsync(user, Input.Email);
|
|
if (!setEmailResult.Succeeded)
|
|
{
|
|
throw new ApplicationException($"Unexpected error occurred setting email for user with ID '{user.Id}'.");
|
|
}
|
|
}
|
|
|
|
if (Input.PhoneNumber != user.PhoneNumber)
|
|
{
|
|
var setPhoneResult = await _userManager.SetPhoneNumberAsync(user, Input.PhoneNumber);
|
|
if (!setPhoneResult.Succeeded)
|
|
{
|
|
throw new ApplicationException($"Unexpected error occurred setting phone number for user with ID '{user.Id}'.");
|
|
}
|
|
}
|
|
|
|
StatusMessage = "Your profile has been updated";
|
|
return RedirectToPage();
|
|
}
|
|
public async Task<IActionResult> OnPostSendVerificationEmailAsync()
|
|
{
|
|
if (!ModelState.IsValid)
|
|
{
|
|
return Page();
|
|
}
|
|
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);
|
|
var callbackUrl = Url.EmailConfirmationLink(user.Id, code, Request.Scheme);
|
|
await _emailSender.SendEmailConfirmationAsync(user.Email, callbackUrl);
|
|
|
|
StatusMessage = "Verification email sent. Please check your email.";
|
|
return RedirectToPage();
|
|
}
|
|
}
|
|
}
|