mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
278 lines
9.7 KiB
C#
278 lines
9.7 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Encodings.Web;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Data;
|
|
using BTCPayServer.Models;
|
|
using BTCPayServer.Models.ManageViewModels;
|
|
using BTCPayServer.Security;
|
|
using BTCPayServer.Security.GreenField;
|
|
using BTCPayServer.Services;
|
|
using BTCPayServer.Services.Mails;
|
|
using BTCPayServer.Services.Stores;
|
|
using BTCPayServer.Services.Wallets;
|
|
using BTCPayServer.U2F;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Routing;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace BTCPayServer.Controllers
|
|
{
|
|
[Authorize(AuthenticationSchemes = AuthenticationSchemes.Cookie)]
|
|
[Route("[controller]/[action]")]
|
|
public partial class ManageController : Controller
|
|
{
|
|
private readonly UserManager<ApplicationUser> _userManager;
|
|
private readonly SignInManager<ApplicationUser> _signInManager;
|
|
private readonly EmailSenderFactory _EmailSenderFactory;
|
|
private readonly ILogger _logger;
|
|
private readonly UrlEncoder _urlEncoder;
|
|
IWebHostEnvironment _Env;
|
|
public U2FService _u2FService;
|
|
private readonly BTCPayServerEnvironment _btcPayServerEnvironment;
|
|
private readonly APIKeyRepository _apiKeyRepository;
|
|
private readonly IAuthorizationService _authorizationService;
|
|
private readonly LinkGenerator _linkGenerator;
|
|
StoreRepository _StoreRepository;
|
|
|
|
|
|
|
|
public ManageController(
|
|
UserManager<ApplicationUser> userManager,
|
|
SignInManager<ApplicationUser> signInManager,
|
|
EmailSenderFactory emailSenderFactory,
|
|
ILogger<ManageController> logger,
|
|
UrlEncoder urlEncoder,
|
|
BTCPayWalletProvider walletProvider,
|
|
StoreRepository storeRepository,
|
|
IWebHostEnvironment env,
|
|
U2FService u2FService,
|
|
BTCPayServerEnvironment btcPayServerEnvironment,
|
|
APIKeyRepository apiKeyRepository,
|
|
IAuthorizationService authorizationService,
|
|
LinkGenerator linkGenerator
|
|
)
|
|
{
|
|
_userManager = userManager;
|
|
_signInManager = signInManager;
|
|
_EmailSenderFactory = emailSenderFactory;
|
|
_logger = logger;
|
|
_urlEncoder = urlEncoder;
|
|
_Env = env;
|
|
_u2FService = u2FService;
|
|
_btcPayServerEnvironment = btcPayServerEnvironment;
|
|
_apiKeyRepository = apiKeyRepository;
|
|
_authorizationService = authorizationService;
|
|
_linkGenerator = linkGenerator;
|
|
_StoreRepository = storeRepository;
|
|
}
|
|
|
|
[HttpGet]
|
|
public async Task<IActionResult> Index()
|
|
{
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
var model = new IndexViewModel
|
|
{
|
|
Username = user.UserName,
|
|
Email = user.Email,
|
|
PhoneNumber = user.PhoneNumber,
|
|
IsEmailConfirmed = user.EmailConfirmed
|
|
};
|
|
return View(model);
|
|
}
|
|
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public async Task<IActionResult> Index(IndexViewModel model)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
{
|
|
return View(model);
|
|
}
|
|
|
|
bool needUpdate = false;
|
|
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
var email = user.Email;
|
|
if (model.Email != email)
|
|
{
|
|
var setEmailResult = await _userManager.SetEmailAsync(user, model.Email);
|
|
if (!setEmailResult.Succeeded)
|
|
{
|
|
throw new ApplicationException($"Unexpected error occurred setting email for user with ID '{user.Id}'.");
|
|
}
|
|
await _userManager.SetUserNameAsync(user, model.Username);
|
|
}
|
|
|
|
var phoneNumber = user.PhoneNumber;
|
|
if (model.PhoneNumber != phoneNumber)
|
|
{
|
|
var setPhoneResult = await _userManager.SetPhoneNumberAsync(user, model.PhoneNumber);
|
|
if (!setPhoneResult.Succeeded)
|
|
{
|
|
throw new ApplicationException($"Unexpected error occurred setting phone number for user with ID '{user.Id}'.");
|
|
}
|
|
}
|
|
|
|
if (needUpdate)
|
|
{
|
|
var result = await _userManager.UpdateAsync(user);
|
|
if (!result.Succeeded)
|
|
{
|
|
throw new ApplicationException($"Unexpected error occurred updating user with ID '{user.Id}'.");
|
|
}
|
|
}
|
|
|
|
TempData[WellKnownTempData.SuccessMessage] = "Your profile has been updated";
|
|
return RedirectToAction(nameof(Index));
|
|
}
|
|
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public async Task<IActionResult> SendVerificationEmail(IndexViewModel model)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
{
|
|
return View(nameof(Index), model);
|
|
}
|
|
|
|
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 = _linkGenerator.EmailConfirmationLink(user.Id, code, Request.Scheme, Request.Host, Request.PathBase);
|
|
var email = user.Email;
|
|
_EmailSenderFactory.GetEmailSender().SendEmailConfirmation(email, callbackUrl);
|
|
TempData[WellKnownTempData.SuccessMessage] = "Verification email sent. Please check your email.";
|
|
return RedirectToAction(nameof(Index));
|
|
}
|
|
|
|
[HttpGet]
|
|
public async Task<IActionResult> ChangePassword()
|
|
{
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
var hasPassword = await _userManager.HasPasswordAsync(user);
|
|
if (!hasPassword)
|
|
{
|
|
return RedirectToAction(nameof(SetPassword));
|
|
}
|
|
|
|
var model = new ChangePasswordViewModel();
|
|
return View(model);
|
|
}
|
|
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public async Task<IActionResult> ChangePassword(ChangePasswordViewModel model)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
{
|
|
return View(model);
|
|
}
|
|
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
var changePasswordResult = await _userManager.ChangePasswordAsync(user, model.OldPassword, model.NewPassword);
|
|
if (!changePasswordResult.Succeeded)
|
|
{
|
|
AddErrors(changePasswordResult);
|
|
return View(model);
|
|
}
|
|
|
|
await _signInManager.SignInAsync(user, isPersistent: false);
|
|
_logger.LogInformation("User changed their password successfully.");
|
|
TempData[WellKnownTempData.SuccessMessage] = "Your password has been changed.";
|
|
|
|
return RedirectToAction(nameof(ChangePassword));
|
|
}
|
|
|
|
[HttpGet]
|
|
public async Task<IActionResult> SetPassword()
|
|
{
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
var hasPassword = await _userManager.HasPasswordAsync(user);
|
|
|
|
if (hasPassword)
|
|
{
|
|
return RedirectToAction(nameof(ChangePassword));
|
|
}
|
|
|
|
var model = new SetPasswordViewModel();
|
|
return View(model);
|
|
}
|
|
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public async Task<IActionResult> SetPassword(SetPasswordViewModel model)
|
|
{
|
|
if (!ModelState.IsValid)
|
|
{
|
|
return View(model);
|
|
}
|
|
|
|
var user = await _userManager.GetUserAsync(User);
|
|
if (user == null)
|
|
{
|
|
throw new ApplicationException($"Unable to load user with ID '{_userManager.GetUserId(User)}'.");
|
|
}
|
|
|
|
var addPasswordResult = await _userManager.AddPasswordAsync(user, model.NewPassword);
|
|
if (!addPasswordResult.Succeeded)
|
|
{
|
|
AddErrors(addPasswordResult);
|
|
return View(model);
|
|
}
|
|
|
|
await _signInManager.SignInAsync(user, isPersistent: false);
|
|
TempData[WellKnownTempData.SuccessMessage] = "Your password has been set.";
|
|
|
|
return RedirectToAction(nameof(SetPassword));
|
|
}
|
|
|
|
|
|
#region Helpers
|
|
|
|
private void AddErrors(IdentityResult result)
|
|
{
|
|
foreach (var error in result.Errors)
|
|
{
|
|
ModelState.AddModelError(string.Empty, error.Description);
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}
|