Как добавить аутентификацию для страниц razor в шаблоне ASP. Net Core SPA, который использует IdentityServer4 - PullRequest
0 голосов
/ 12 июля 2020

Когда мы создаем новое веб-приложение ASP. NET Core 3.1 с Angular и аутентификацией индивидуальных учетных записей пользователей, мы получаем решение, которое использует IdentityServer4 для аутентификации. На стороне Angular все правильно подключено к потоку входа пользователя.

Я хотел бы создать гибридное приложение, в котором я также могу использовать страницы, отображаемые сервером Razor. Я хотел бы иметь возможность украсить модель страницы Razor следующим образом:

[Authorize]
public class TestModel : PageModel
{
    public void OnGet()
    {
    }
}

Если пользователь вызывает ~ / Test URL, сервер должен проверить, вошел ли пользователь в настоящее время в систему, и перенаправить на логин страница, если нет.

Может кто-нибудь, пожалуйста, скажите мне, как мне настроить startup.cs, чтобы я мог использовать аутентификацию IdentityServer для стороны SAP и страниц razor одновременно?

Это класс Startup, созданный шаблоном:

public class Startup
{
    public Startup(IConfiguration configuration)
    {
        Configuration = configuration;
    }

    public IConfiguration Configuration { get; }

    // This method gets called by the runtime. Use this method to add services to the container.
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddDbContext<ApplicationDbContext>(options =>
            options.UseSqlServer(
                Configuration.GetConnectionString("DefaultConnection")));

        services.AddDefaultIdentity<ApplicationUser>(options => options.SignIn.RequireConfirmedAccount = true)
            .AddEntityFrameworkStores<ApplicationDbContext>();

        services.AddIdentityServer()
            .AddApiAuthorization<ApplicationUser, ApplicationDbContext>();

        services.AddAuthentication()
            .AddIdentityServerJwt();
        services.AddControllersWithViews();
        services.AddRazorPages();
        // In production, the Angular files will be served from this directory
        services.AddSpaStaticFiles(configuration =>
        {
            configuration.RootPath = "ClientApp/dist";
        });
    }

    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        if (env.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
            app.UseDatabaseErrorPage();
        }
        else
        {
            app.UseExceptionHandler("/Error");
            // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
            app.UseHsts();
        }

        app.UseHttpsRedirection();
        app.UseStaticFiles();
        if (!env.IsDevelopment())
        {
            app.UseSpaStaticFiles();
        }

        app.UseRouting();

        app.UseAuthentication();
        app.UseIdentityServer();
        app.UseAuthorization();
        app.UseEndpoints(endpoints =>
        {
            endpoints.MapControllerRoute(
                name: "default",
                pattern: "{controller}/{action=Index}/{id?}");
            endpoints.MapRazorPages();
        });

        app.UseSpa(spa =>
        {
            // To learn more about options for serving an Angular SPA from ASP.NET Core,
            // see https://go.microsoft.com/fwlink/?linkid=864501

            spa.Options.SourcePath = "ClientApp";

            if (env.IsDevelopment())
            {
                spa.UseAngularCliServer(npmScript: "start");
            }
        });
    }
}
...