Я начал разрабатывать сайты, используя ASP.Net Core 2.2 .
Я осуществляю вход / выход из системы с помощью пользовательской аутентификации cookie (не Identity).
Пожалуйста, смотрите или клонируйте репо :
git clone https://github.com/mrmowji/aspcore-custom-cookie-authentication.git .
... или прочитайте следующие фрагменты кода.
Вот код в Startup.cs
:
public void ConfigureServices(IServiceCollection services) {
...
services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
.AddCookie(options => {
options.LoginPath = new PathString("/login");
options.ExpireTimeSpan = TimeSpan.FromDays(30);
options.Cookie.Expiration = TimeSpan.FromDays(30);
options.SlidingExpiration = true;
});
...
public void Configure(IApplicationBuilder app, IHostingEnvironment env) {
...
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseAuthentication();
app.UseMvc(routes =>
{
...
Вот код действия Login
:
public async Task<IActionResult> Login(LoginViewModel userToLogin) {
var username = "username"; // just to test
var password = "password"; // just to test
if (userToLogin.UserName == username && userToLogin.Password == password) {
var claims = new List<Claim> {
new Claim(ClaimTypes.Name, "admin"),
new Claim(ClaimTypes.Role, "Administrator"),
};
var claimsIdentity = new ClaimsIdentity(
claims, CookieAuthenticationDefaults.AuthenticationScheme);
var authProperties = new AuthenticationProperties {
AllowRefresh = true,
ExpiresUtc = DateTimeOffset.UtcNow.AddDays(10),
IsPersistent = true,
};
await HttpContext.SignInAsync(
CookieAuthenticationDefaults.AuthenticationScheme,
new ClaimsPrincipal(claimsIdentity),
authProperties);
...
Файлы cookie установлены в соответствии с ожиданиями. У меня есть .AspNetCore.Cookies
cookie с датой истечения 10 дней спустя. Но примерно через 30 минут пользователь вышел из системы. Как заставить аутентифицированного пользователя оставаться в системе даже после закрытия браузера?