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-05-21 18:49:57 +02:00
|
|
|
|
using Microsoft.ApplicationInsights.Extensibility;
|
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
|
|
|
|
|
{
|
2018-03-28 03:37:35 +02:00
|
|
|
|
public Startup(IHostingEnvironment env, IConfiguration configuration)
|
2018-03-21 17:57:43 +01:00
|
|
|
|
{
|
|
|
|
|
Configuration = configuration;
|
2018-03-28 03:37:35 +02:00
|
|
|
|
Environment = env;
|
2018-03-21 17:57:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 03:37:35 +02:00
|
|
|
|
public IConfiguration Configuration { get; private set; }
|
|
|
|
|
public IHostingEnvironment Environment { get; set; }
|
2018-03-21 17:57:43 +01:00
|
|
|
|
|
|
|
|
|
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"));
|
|
|
|
|
|
2018-03-28 03:37:35 +02:00
|
|
|
|
// Data Protection
|
|
|
|
|
services.AddCustomDataProtectionServices(Environment, globalSettings);
|
|
|
|
|
|
2018-03-21 19:26:49 +01:00
|
|
|
|
// Stripe Billing
|
|
|
|
|
StripeConfiguration.SetApiKey(globalSettings.StripeApiKey);
|
|
|
|
|
|
|
|
|
|
// Repositories
|
|
|
|
|
services.AddSqlServerRepositories(globalSettings);
|
|
|
|
|
|
|
|
|
|
// Context
|
|
|
|
|
services.AddScoped<CurrentContext>();
|
|
|
|
|
|
|
|
|
|
// Identity
|
|
|
|
|
services.AddPasswordlessIdentityServices<ReadOnlyEnvIdentityUserStore>(globalSettings);
|
2018-03-28 16:38:01 +02:00
|
|
|
|
if(globalSettings.SelfHosted)
|
|
|
|
|
{
|
|
|
|
|
services.ConfigureApplicationCookie(options =>
|
|
|
|
|
{
|
|
|
|
|
options.Cookie.Path = "/admin";
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-03-21 19:26:49 +01:00
|
|
|
|
|
|
|
|
|
// 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,
|
2018-05-21 18:49:57 +02:00
|
|
|
|
ILoggerFactory loggerFactory,
|
|
|
|
|
TelemetryConfiguration telemetryConfiguration)
|
2018-03-21 17:57:43 +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-05-21 18:49:57 +02:00
|
|
|
|
telemetryConfiguration.DisableTelemetry = true;
|
2018-03-21 17:57:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-21 18:49:57 +02:00
|
|
|
|
loggerFactory.AddSerilog(app, env, appLifetime, globalSettings, (e) => e.Level >= LogEventLevel.Error);
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|