85 lines
2.2 KiB
C#
85 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Selector.Web.Areas.Identity.Data;
|
|
|
|
using Selector.Model;
|
|
|
|
namespace Selector.Web.Areas.Identity.Pages.Account.Manage
|
|
{
|
|
public partial class IndexModel : PageModel
|
|
{
|
|
private readonly UserManager<ApplicationUser> _userManager;
|
|
private readonly SignInManager<ApplicationUser> _signInManager;
|
|
|
|
public IndexModel(
|
|
UserManager<ApplicationUser> userManager,
|
|
SignInManager<ApplicationUser> signInManager)
|
|
{
|
|
_userManager = userManager;
|
|
_signInManager = signInManager;
|
|
}
|
|
|
|
public string Username { get; set; }
|
|
|
|
[TempData]
|
|
public string StatusMessage { get; set; }
|
|
|
|
[BindProperty]
|
|
public InputModel Input { get; set; }
|
|
|
|
public class InputModel
|
|
{
|
|
|
|
}
|
|
|
|
private async Task LoadAsync(ApplicationUser user)
|
|
{
|
|
var userName = await _userManager.GetUserNameAsync(user);
|
|
|
|
Username = userName;
|
|
|
|
Input = new InputModel
|
|
{
|
|
|
|
};
|
|
}
|
|
|
|
public async Task<IActionResult> OnGetAsync()
|
|
{
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
await LoadAsync(user);
|
|
return Page();
|
|
}
|
|
|
|
public async Task<IActionResult> OnPostAsync()
|
|
{
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
return NotFound($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
if (!ModelState.IsValid)
|
|
{
|
|
await LoadAsync(user);
|
|
return Page();
|
|
}
|
|
|
|
await _signInManager.RefreshSignInAsync(user);
|
|
StatusMessage = "Your profile has been updated";
|
|
return RedirectToPage();
|
|
}
|
|
}
|
|
}
|