You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.3 KiB
98 lines
3.3 KiB
using Microsoft.eShopWeb.Services;
|
|
using Microsoft.eShopWeb.ViewModels;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.Extensions.Options;
|
|
using Infrastructure.Identity;
|
|
|
|
namespace Microsoft.eShopWeb.Controllers
|
|
{
|
|
public class AccountController : Controller
|
|
{
|
|
private readonly UserManager<ApplicationUser> _userManager;
|
|
private readonly SignInManager<ApplicationUser> _signInManager;
|
|
private readonly string _externalCookieScheme;
|
|
|
|
|
|
public AccountController(
|
|
UserManager<ApplicationUser> userManager,
|
|
SignInManager<ApplicationUser> signInManager,
|
|
IOptions<IdentityCookieOptions> identityCookieOptions
|
|
|
|
)
|
|
{
|
|
_userManager = userManager;
|
|
_signInManager = signInManager;
|
|
_externalCookieScheme = identityCookieOptions.Value.ExternalCookieAuthenticationScheme;
|
|
|
|
}
|
|
|
|
//
|
|
// GET: /Account/SignIn
|
|
[HttpGet]
|
|
[AllowAnonymous]
|
|
public async Task<IActionResult> SignIn(string returnUrl = null)
|
|
{
|
|
// Clear the existing external cookie to ensure a clean login process
|
|
await HttpContext.Authentication.SignOutAsync(_externalCookieScheme);
|
|
|
|
ViewData["ReturnUrl"] = returnUrl;
|
|
return View();
|
|
}
|
|
|
|
//
|
|
// POST: /Account/SignIn
|
|
[HttpPost]
|
|
[AllowAnonymous]
|
|
[ValidateAntiForgeryToken]
|
|
public async Task<IActionResult> SignIn(LoginViewModel model, string returnUrl = null)
|
|
{
|
|
ViewData["ReturnUrl"] = returnUrl;
|
|
if (ModelState.IsValid)
|
|
{
|
|
// This doesn't count login failures towards account lockout
|
|
// To enable password failures to trigger account lockout, set lockoutOnFailure: true
|
|
var result = await _signInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe, lockoutOnFailure: false);
|
|
if (result.Succeeded)
|
|
{
|
|
//_logger.LogInformation(1, "User logged in.");
|
|
return RedirectToLocal(returnUrl);
|
|
}
|
|
//if (result.RequiresTwoFactor)
|
|
//{
|
|
// return RedirectToAction(nameof(SendCode), new { ReturnUrl = returnUrl, RememberMe = model.RememberMe });
|
|
//}
|
|
if (result.IsLockedOut)
|
|
{
|
|
//_logger.LogWarning(2, "User account locked out.");
|
|
return View("Lockout");
|
|
}
|
|
else
|
|
{
|
|
ModelState.AddModelError(string.Empty, "Invalid login attempt.");
|
|
return View(model);
|
|
}
|
|
}
|
|
|
|
// If we got this far, something failed, redisplay form
|
|
return View(model);
|
|
}
|
|
|
|
private IActionResult RedirectToLocal(string returnUrl)
|
|
{
|
|
if (Url.IsLocalUrl(returnUrl))
|
|
{
|
|
return Redirect(returnUrl);
|
|
}
|
|
else
|
|
{
|
|
return RedirectToAction(nameof(CatalogController.Index), "Catalog");
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|