64 lines
1.7 KiB
C#
64 lines
1.7 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Routing;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Options;
|
|
using System;
|
|
using zero.Core;
|
|
using zero.Core.Extensions;
|
|
|
|
namespace zero.Web
|
|
{
|
|
public static class ZeroApplicationBuilderExtensions
|
|
{
|
|
public static IApplicationBuilder UseZero(this IApplicationBuilder app)
|
|
{
|
|
ZeroOptions options = app.ApplicationServices.GetService<IOptionsMonitor<ZeroOptions>>().CurrentValue;
|
|
|
|
string path = options.BackofficePath.EnsureStartsWith('/').TrimEnd('/');
|
|
|
|
// map backoffice
|
|
//app.UseWhen()
|
|
app.UseWhen(ctx => ctx.Request.Path.ToString().StartsWith(path), builder =>
|
|
{
|
|
builder.UseRouting();
|
|
|
|
builder.UseAuthentication();
|
|
builder.UseAuthorization();
|
|
|
|
//builder.UseMiddleware<ZeroMiddleware>(options);
|
|
|
|
builder.UseEndpoints(endpoints =>
|
|
{
|
|
// setup route
|
|
endpoints.MapControllerRoute(
|
|
name: "setup",
|
|
pattern: path + "/setup",
|
|
defaults: new
|
|
{
|
|
controller = "Setup",
|
|
action = "Index"
|
|
}
|
|
);
|
|
|
|
// routes for API
|
|
endpoints.MapControllerRoute(
|
|
name: "api",
|
|
pattern: path + "/api/{controller}/{action}/{id?}"
|
|
);
|
|
|
|
// fallbacks for SPA
|
|
endpoints.MapFallbackToController(path + "/{**path}", "Index", "Index");
|
|
});
|
|
});
|
|
|
|
return app;
|
|
}
|
|
|
|
//public static ZeroBuilder AddZero(this IApplicationBuilder app, Action<ZeroOptions> setupAction)
|
|
//{
|
|
// return services.AddZero().WithOptions(setupAction);
|
|
//}
|
|
}
|
|
}
|