92 lines
3.2 KiB
C#
92 lines
3.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Encodings.Web;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Microsoft.Extensions.Logging;
|
|
using Identity.ExternalClaims.Data;
|
|
using Identity.ExternalClaims.Services;
|
|
|
|
namespace Identity.ExternalClaims.Pages.Account
|
|
{
|
|
public class RegisterModel : PageModel
|
|
{
|
|
private readonly SignInManager<ApplicationUser> _signInManager;
|
|
private readonly UserManager<ApplicationUser> _userManager;
|
|
private readonly ILogger<LoginModel> _logger;
|
|
private readonly IEmailSender _emailSender;
|
|
|
|
public RegisterModel(
|
|
UserManager<ApplicationUser> userManager,
|
|
SignInManager<ApplicationUser> signInManager,
|
|
ILogger<LoginModel> logger,
|
|
IEmailSender emailSender)
|
|
{
|
|
_userManager = userManager;
|
|
_signInManager = signInManager;
|
|
_logger = logger;
|
|
_emailSender = emailSender;
|
|
}
|
|
|
|
[BindProperty]
|
|
public InputModel Input { get; set; }
|
|
|
|
public string ReturnUrl { get; set; }
|
|
|
|
public class InputModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
[Display(Name = "Email")]
|
|
public string Email { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)]
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Password")]
|
|
public string Password { get; set; }
|
|
|
|
[DataType(DataType.Password)]
|
|
[Display(Name = "Confirm password")]
|
|
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
|
|
public string ConfirmPassword { get; set; }
|
|
}
|
|
|
|
public void OnGet(string returnUrl = null)
|
|
{
|
|
ReturnUrl = returnUrl;
|
|
}
|
|
|
|
public async Task<IActionResult> OnPostAsync(string returnUrl = null)
|
|
{
|
|
ReturnUrl = returnUrl;
|
|
if (ModelState.IsValid)
|
|
{
|
|
var user = new ApplicationUser { UserName = Input.Email, Email = Input.Email };
|
|
var result = await _userManager.CreateAsync(user, Input.Password);
|
|
if (result.Succeeded)
|
|
{
|
|
_logger.LogInformation("User created a new account with password.");
|
|
|
|
var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);
|
|
var callbackUrl = Url.EmailConfirmationLink(user.Id, code, Request.Scheme);
|
|
await _emailSender.SendEmailConfirmationAsync(Input.Email, callbackUrl);
|
|
|
|
await _signInManager.SignInAsync(user, isPersistent: false);
|
|
return LocalRedirect(Url.GetLocalUrl(returnUrl));
|
|
}
|
|
foreach (var error in result.Errors)
|
|
{
|
|
ModelState.AddModelError(string.Empty, error.Description);
|
|
}
|
|
}
|
|
|
|
// If we got this far, something failed, redisplay form
|
|
return Page();
|
|
}
|
|
}
|
|
}
|