2019-03-30 12:35:08 +08:00
|
|
|
using Bootstrap.Client.DataAccess;
|
2019-02-25 10:47:05 +08:00
|
|
|
using Bootstrap.Security.DataAccess;
|
2018-10-19 23:09:52 +08:00
|
|
|
using Bootstrap.Security.Filter;
|
2018-09-16 19:33:56 +08:00
|
|
|
using Longbow.Web;
|
2018-10-12 14:23:05 +08:00
|
|
|
using Longbow.Web.SignalR;
|
2018-09-16 19:33:56 +08:00
|
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
using Microsoft.AspNetCore.DataProtection;
|
2018-09-15 23:55:54 +08:00
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2018-10-10 14:54:53 +08:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
using Newtonsoft.Json.Serialization;
|
2018-09-16 19:33:56 +08:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
2018-09-15 23:55:54 +08:00
|
|
|
|
|
|
|
namespace Bootstrap.Client
|
|
|
|
{
|
|
|
|
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.Configure<CookiePolicyOptions>(options =>
|
|
|
|
{
|
|
|
|
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
|
|
|
|
options.CheckConsentNeeded = context => true;
|
|
|
|
options.MinimumSameSitePolicy = SameSiteMode.None;
|
|
|
|
});
|
2018-09-16 19:33:56 +08:00
|
|
|
services.AddCors();
|
|
|
|
services.AddLogging(builder => builder.AddFileLogger());
|
2018-10-23 20:54:13 +08:00
|
|
|
services.AddConfigurationManager(Configuration);
|
|
|
|
services.AddCacheManager(Configuration);
|
2019-01-20 17:10:09 +08:00
|
|
|
services.AddDbAdapter();
|
2018-09-16 19:33:56 +08:00
|
|
|
var dataProtectionBuilder = services.AddDataProtection(op => op.ApplicationDiscriminator = Configuration["ApplicationDiscriminator"])
|
|
|
|
.SetApplicationName(Configuration["ApplicationName"])
|
|
|
|
.PersistKeysToFileSystem(new DirectoryInfo(Configuration["KeyPath"]));
|
|
|
|
if (Configuration["DisableAutomaticKeyGeneration"] == "True") dataProtectionBuilder.DisableAutomaticKeyGeneration();
|
2018-10-15 21:08:54 +08:00
|
|
|
services.AddSignalR().AddJsonProtocalDefault();
|
2018-11-03 10:25:44 +08:00
|
|
|
services.AddResponseCompression();
|
2018-09-16 19:33:56 +08:00
|
|
|
services.AddMvc(options =>
|
|
|
|
{
|
|
|
|
options.Filters.Add<BootstrapAdminAuthorizeFilter>();
|
|
|
|
options.Filters.Add<ExceptionFilter>();
|
2018-10-10 14:54:53 +08:00
|
|
|
}).AddJsonOptions(options =>
|
|
|
|
{
|
|
|
|
options.SerializerSettings.ContractResolver = new DefaultContractResolver();
|
|
|
|
options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
|
|
|
|
JsonConvert.DefaultSettings = () => options.SerializerSettings;
|
2018-12-05 17:29:09 +08:00
|
|
|
}).SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
|
2018-10-10 12:03:00 +08:00
|
|
|
services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie(options =>
|
|
|
|
{
|
|
|
|
options.Cookie.Path = "/";
|
2019-03-30 12:35:08 +08:00
|
|
|
options.RebuildRedirectUri(Configuration["AuthHost"]);
|
2018-10-10 12:03:00 +08:00
|
|
|
});
|
2018-09-15 23:55:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
|
|
|
|
{
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
app.UseExceptionHandler("/Home/Error");
|
|
|
|
app.UseHsts();
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:33:56 +08:00
|
|
|
app.UseStatusCodePagesWithReExecute("/Home/Error/{0}");
|
|
|
|
app.UseCors(builder => builder.WithOrigins(Configuration["AllowOrigins"].Split(',', StringSplitOptions.RemoveEmptyEntries)).AllowAnyHeader().AllowAnyMethod().AllowCredentials());
|
2018-10-15 21:08:54 +08:00
|
|
|
app.UseHttpsRedirection();
|
2018-11-03 10:25:44 +08:00
|
|
|
app.UseResponseCompression();
|
2018-09-15 23:55:54 +08:00
|
|
|
app.UseStaticFiles();
|
|
|
|
app.UseCookiePolicy();
|
2018-09-16 19:33:56 +08:00
|
|
|
app.UseAuthentication();
|
2019-02-25 10:47:05 +08:00
|
|
|
app.UseBootstrapAdminAuthorization(RoleHelper.RetrieveRolesByUserName, RoleHelper.RetrieveRolesByUrl, DbHelper.RetrieveAppsByUserName);
|
2018-09-16 19:33:56 +08:00
|
|
|
app.UseCacheManagerCorsHandler();
|
2018-10-15 21:08:54 +08:00
|
|
|
app.UseSignalR(routes => { routes.MapHub<SignalRHub>("/NotiHub"); });
|
2018-09-15 23:55:54 +08:00
|
|
|
app.UseMvc(routes =>
|
|
|
|
{
|
|
|
|
routes.MapRoute(
|
|
|
|
name: "default",
|
|
|
|
template: "{controller=Home}/{action=Index}/{id?}");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|