- 移除 `UserInfoController`,新增 `UserControllers` 使用 `UserService` - 添加 `UserService` 用于处理用户信息 - 新增 `UserProfile` DTO - 添加数据库迁移以支持用户表结构
81 lines
3.1 KiB
C#
81 lines
3.1 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
#nullable disable
|
|
|
|
using System;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using AGSS.Models.Entities;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.UI.Services;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Microsoft.AspNetCore.WebUtilities;
|
|
|
|
namespace AGSS.Areas.Identity.Pages.Account
|
|
{
|
|
[AllowAnonymous]
|
|
public class RegisterConfirmationModel : PageModel
|
|
{
|
|
private readonly UserManager<UserModel> _userManager;
|
|
private readonly IEmailSender _sender;
|
|
|
|
public RegisterConfirmationModel(UserManager<UserModel> userManager, IEmailSender sender)
|
|
{
|
|
_userManager = userManager;
|
|
_sender = sender;
|
|
}
|
|
|
|
/// <summary>
|
|
/// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
|
|
/// directly from your code. This API may change or be removed in future releases.
|
|
/// </summary>
|
|
public string Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
|
|
/// directly from your code. This API may change or be removed in future releases.
|
|
/// </summary>
|
|
public bool DisplayConfirmAccountLink { get; set; }
|
|
|
|
/// <summary>
|
|
/// This API supports the ASP.NET Core Identity default UI infrastructure and is not intended to be used
|
|
/// directly from your code. This API may change or be removed in future releases.
|
|
/// </summary>
|
|
public string EmailConfirmationUrl { get; set; }
|
|
|
|
public async Task<IActionResult> OnGetAsync(string email, string returnUrl = null)
|
|
{
|
|
if (email == null)
|
|
{
|
|
return RedirectToPage("/Index");
|
|
}
|
|
returnUrl = returnUrl ?? Url.Content("~/");
|
|
|
|
var user = await _userManager.FindByEmailAsync(email);
|
|
if (user == null)
|
|
{
|
|
return NotFound($"Unable to load user with email '{email}'.");
|
|
}
|
|
|
|
Email = email;
|
|
// Once you add a real email sender, you should remove this code that lets you confirm the account
|
|
DisplayConfirmAccountLink = true;
|
|
if (DisplayConfirmAccountLink)
|
|
{
|
|
var userId = await _userManager.GetUserIdAsync(user);
|
|
var code = await _userManager.GenerateEmailConfirmationTokenAsync(user);
|
|
code = WebEncoders.Base64UrlEncode(Encoding.UTF8.GetBytes(code));
|
|
EmailConfirmationUrl = Url.Page(
|
|
"/Account/ConfirmEmail",
|
|
pageHandler: null,
|
|
values: new { area = "Identity", userId = userId, code = code, returnUrl = returnUrl },
|
|
protocol: Request.Scheme);
|
|
}
|
|
|
|
return Page();
|
|
}
|
|
}
|
|
}
|