* Updating Blazor services * Adding Settings and Refactoring Services * WIP - Fighting with DI * Configuring dependencies in both Web Startup and BlazorAdmin Program.cs has them working again. * Everything works; need to optimize calls to ListBrands * LocalStorageBrandService decorator working * Added cache duration of 1 minute * Refactoring to reduce token storage Fixed issue with dropdowns binding to int * Remove token stuff from login; moved to CustomAuthStateProvider * Migrated CatalogTypes to separate service Implemented cache decorator * Ardalis/blazor refactor (#440) * 1. Migrate CatalogItemServices -> CatalogItemService. 3. Add caching to CatalogItemService. * change to $"Loading {key} from local storage" ? * docker settings added. (#441) * docker settings added. * InDocker Removed * InDocker removed from web startup. * removed unused using * no reload list if close without save * startup patch for localhost * file name fixed * removed docker from launchSettings. * Configure logging via appsettings Co-authored-by: Shady Nagy <info@shadynagy.com>
122 lines
4.3 KiB
C#
122 lines
4.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using BlazorAdmin.Services;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Microsoft.eShopWeb.Infrastructure.Identity;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.eShopWeb.ApplicationCore.Interfaces;
|
|
|
|
namespace Microsoft.eShopWeb.Web.Areas.Identity.Pages.Account
|
|
{
|
|
[AllowAnonymous]
|
|
public class LoginModel : PageModel
|
|
{
|
|
private readonly SignInManager<ApplicationUser> _signInManager;
|
|
private readonly ILogger<LoginModel> _logger;
|
|
private readonly IBasketService _basketService;
|
|
|
|
public LoginModel(SignInManager<ApplicationUser> signInManager, ILogger<LoginModel> logger, IBasketService basketService)
|
|
{
|
|
_signInManager = signInManager;
|
|
_logger = logger;
|
|
_basketService = basketService;
|
|
}
|
|
|
|
[BindProperty]
|
|
public InputModel Input { get; set; }
|
|
|
|
public IList<AuthenticationScheme> ExternalLogins { get; set; }
|
|
|
|
public string ReturnUrl { get; set; }
|
|
|
|
[TempData]
|
|
public string ErrorMessage { get; set; }
|
|
|
|
public class InputModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
public string Email { get; set; }
|
|
|
|
[Required]
|
|
[DataType(DataType.Password)]
|
|
public string Password { get; set; }
|
|
|
|
[Display(Name = "Remember me?")]
|
|
public bool RememberMe { get; set; }
|
|
}
|
|
|
|
public async Task OnGetAsync(string returnUrl = null)
|
|
{
|
|
if (!string.IsNullOrEmpty(ErrorMessage))
|
|
{
|
|
ModelState.AddModelError(string.Empty, ErrorMessage);
|
|
}
|
|
|
|
returnUrl = returnUrl ?? Url.Content("~/");
|
|
|
|
// Clear the existing external cookie to ensure a clean login process
|
|
await HttpContext.SignOutAsync(IdentityConstants.ExternalScheme);
|
|
|
|
ExternalLogins = (await _signInManager.GetExternalAuthenticationSchemesAsync()).ToList();
|
|
|
|
ReturnUrl = returnUrl;
|
|
}
|
|
|
|
public async Task<IActionResult> OnPostAsync(string returnUrl = null)
|
|
{
|
|
returnUrl = returnUrl ?? Url.Content("~/");
|
|
|
|
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(Input.Email, Input.Password, Input.RememberMe, lockoutOnFailure: true);
|
|
var result = await _signInManager.PasswordSignInAsync(Input.Email, Input.Password, false, true);
|
|
|
|
if (result.Succeeded)
|
|
{
|
|
_logger.LogInformation("User logged in.");
|
|
await TransferAnonymousBasketToUserAsync(Input.Email);
|
|
return LocalRedirect(returnUrl);
|
|
}
|
|
if (result.RequiresTwoFactor)
|
|
{
|
|
return RedirectToPage("./LoginWith2fa", new { ReturnUrl = returnUrl, RememberMe = Input.RememberMe });
|
|
}
|
|
if (result.IsLockedOut)
|
|
{
|
|
_logger.LogWarning("User account locked out.");
|
|
return RedirectToPage("./Lockout");
|
|
}
|
|
else
|
|
{
|
|
ModelState.AddModelError(string.Empty, "Invalid login attempt.");
|
|
return Page();
|
|
}
|
|
}
|
|
|
|
// If we got this far, something failed, redisplay form
|
|
return Page();
|
|
}
|
|
|
|
private async Task TransferAnonymousBasketToUserAsync(string userName)
|
|
{
|
|
if (Request.Cookies.ContainsKey(Constants.BASKET_COOKIENAME))
|
|
{
|
|
var anonymousId = Request.Cookies[Constants.BASKET_COOKIENAME];
|
|
await _basketService.TransferBasketAsync(anonymousId, userName);
|
|
Response.Cookies.Delete(Constants.BASKET_COOKIENAME);
|
|
}
|
|
}
|
|
}
|
|
}
|