2018-03-21 17:57:43 +01:00
|
|
|
|
using System;
|
2018-03-21 19:26:49 +01:00
|
|
|
|
using Bit.Core;
|
|
|
|
|
using Bit.Core.Identity;
|
|
|
|
|
using Bit.Core.Utilities;
|
2018-03-21 17:57:43 +01:00
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
|
using Microsoft.AspNetCore.Routing;
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2018-03-21 19:26:49 +01:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Serilog.Events;
|
|
|
|
|
using Stripe;
|
2018-03-21 17:57:43 +01:00
|
|
|
|
|
|
|
|
|
namespace Bit.Admin
|
|
|
|
|
{
|
|
|
|
|
public class Startup
|
|
|
|
|
{
|
|
|
|
|
public Startup(IConfiguration configuration)
|
|
|
|
|
{
|
|
|
|
|
Configuration = configuration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
|
|
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
2018-03-21 19:26:49 +01:00
|
|
|
|
// Options
|
|
|
|
|
services.AddOptions();
|
|
|
|
|
|
|
|
|
|
// Settings
|
|
|
|
|
var globalSettings = services.AddGlobalSettingsServices(Configuration);
|
|
|
|
|
services.Configure<AdminSettings>(Configuration.GetSection("AdminSettings"));
|
|
|
|
|
|
|
|
|
|
// Stripe Billing
|
|
|
|
|
StripeConfiguration.SetApiKey(globalSettings.StripeApiKey);
|
|
|
|
|
|
|
|
|
|
// Repositories
|
|
|
|
|
services.AddSqlServerRepositories(globalSettings);
|
|
|
|
|
|
|
|
|
|
// Context
|
|
|
|
|
services.AddScoped<CurrentContext>();
|
|
|
|
|
|
|
|
|
|
// Identity
|
|
|
|
|
services.AddPasswordlessIdentityServices<ReadOnlyEnvIdentityUserStore>(globalSettings);
|
|
|
|
|
|
|
|
|
|
// Services
|
|
|
|
|
services.AddBaseServices();
|
|
|
|
|
services.AddDefaultServices(globalSettings);
|
|
|
|
|
|
|
|
|
|
// Mvc
|
|
|
|
|
services.AddMvc(config =>
|
|
|
|
|
{
|
|
|
|
|
config.Filters.Add(new LoggingExceptionHandlerFilterAttribute());
|
|
|
|
|
});
|
2018-03-21 17:57:43 +01:00
|
|
|
|
services.Configure<RouteOptions>(options => options.LowercaseUrls = true);
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 19:26:49 +01:00
|
|
|
|
public void Configure(
|
|
|
|
|
IApplicationBuilder app,
|
|
|
|
|
IHostingEnvironment env,
|
|
|
|
|
IApplicationLifetime appLifetime,
|
|
|
|
|
GlobalSettings globalSettings,
|
|
|
|
|
ILoggerFactory loggerFactory)
|
2018-03-21 17:57:43 +01:00
|
|
|
|
{
|
2018-03-23 18:39:34 +01:00
|
|
|
|
loggerFactory.AddSerilog(app, env, appLifetime, globalSettings, (e) => e.Level >= LogEventLevel.Error);
|
2018-03-21 19:26:49 +01:00
|
|
|
|
|
2018-03-24 13:39:55 +01:00
|
|
|
|
if(globalSettings.SelfHosted)
|
2018-03-21 17:57:43 +01:00
|
|
|
|
{
|
2018-03-24 13:39:55 +01:00
|
|
|
|
app.UsePathBase("/admin");
|
2018-03-21 17:57:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-24 13:39:55 +01:00
|
|
|
|
if(env.IsDevelopment())
|
2018-03-24 04:27:33 +01:00
|
|
|
|
{
|
2018-03-24 13:39:55 +01:00
|
|
|
|
app.UseDeveloperExceptionPage();
|
2018-03-24 04:27:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-21 19:26:49 +01:00
|
|
|
|
app.UseAuthentication();
|
2018-03-21 17:57:43 +01:00
|
|
|
|
app.UseStaticFiles();
|
|
|
|
|
app.UseMvcWithDefaultRoute();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|