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.
41 lines
1.6 KiB
41 lines
1.6 KiB
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using System;
|
|
|
|
namespace Microsoft.eShopWeb.Web.Configuration
|
|
{
|
|
public static class ConfigureCookieSettings
|
|
{
|
|
public const int ValidityMinutesPeriod = 60;
|
|
public const string IdentifierCookieName = "EshopIdentifier";
|
|
|
|
public static IServiceCollection AddCookieSettings(this IServiceCollection services)
|
|
{
|
|
services.Configure<CookiePolicyOptions>(options =>
|
|
{
|
|
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
|
|
//TODO need to check that.
|
|
//options.CheckConsentNeeded = context => true;
|
|
options.MinimumSameSitePolicy = SameSiteMode.Strict;
|
|
});
|
|
services.ConfigureApplicationCookie(options =>
|
|
{
|
|
options.EventsType = typeof(RevokeAuthenticationEvents);
|
|
options.Cookie.HttpOnly = true;
|
|
options.ExpireTimeSpan = TimeSpan.FromMinutes(ValidityMinutesPeriod);
|
|
options.LoginPath = "/Account/Login";
|
|
options.LogoutPath = "/Account/Logout";
|
|
options.Cookie = new CookieBuilder
|
|
{
|
|
Name = IdentifierCookieName,
|
|
IsEssential = true // required for auth to work without explicit user consent; adjust to suit your privacy policy
|
|
};
|
|
});
|
|
|
|
services.AddScoped<RevokeAuthenticationEvents>();
|
|
|
|
return services;
|
|
}
|
|
}
|
|
}
|
|
|