2016-11-21 12:41:36 +01:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.API
|
2016-09-06 17:09:19 -07:00
|
|
|
|
{
|
2016-11-24 14:58:37 +01:00
|
|
|
|
using Autofac;
|
|
|
|
|
using Autofac.Extensions.DependencyInjection;
|
|
|
|
|
using Infrastructure;
|
|
|
|
|
using Infrastructure.AutofacModules;
|
|
|
|
|
using Infrastructure.Filters;
|
2016-11-21 12:41:36 +01:00
|
|
|
|
using MediatR;
|
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
2016-11-22 18:40:47 +01:00
|
|
|
|
using Ordering.Infrastructure;
|
2016-11-24 14:58:37 +01:00
|
|
|
|
using System;
|
2016-11-22 18:40:47 +01:00
|
|
|
|
using System.Reflection;
|
2016-11-21 12:41:36 +01:00
|
|
|
|
|
2016-09-06 17:09:19 -07:00
|
|
|
|
public class Startup
|
|
|
|
|
{
|
|
|
|
|
public Startup(IHostingEnvironment env)
|
|
|
|
|
{
|
|
|
|
|
var builder = new ConfigurationBuilder()
|
|
|
|
|
.SetBasePath(env.ContentRootPath)
|
2016-11-22 18:40:47 +01:00
|
|
|
|
.AddJsonFile("settings.json", optional: true, reloadOnChange: true)
|
|
|
|
|
.AddJsonFile($"settings.{env.EnvironmentName}.json", optional: true);
|
2016-11-21 10:02:52 +01:00
|
|
|
|
|
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
|
{
|
|
|
|
|
builder.AddUserSecrets();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
builder.AddEnvironmentVariables();
|
|
|
|
|
|
2016-09-06 17:09:19 -07:00
|
|
|
|
Configuration = builder.Build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IConfigurationRoot Configuration { get; }
|
|
|
|
|
|
2016-11-24 14:58:37 +01:00
|
|
|
|
public IServiceProvider ConfigureServices(IServiceCollection services)
|
2016-09-06 17:09:19 -07:00
|
|
|
|
{
|
|
|
|
|
// Add framework services.
|
2016-11-24 14:58:37 +01:00
|
|
|
|
|
|
|
|
|
services.AddMvc(options=>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
options.Filters.Add(typeof(HttpGlobalExceptionFilter));
|
|
|
|
|
|
|
|
|
|
}).AddControllersAsServices();
|
2016-09-09 17:24:24 -07:00
|
|
|
|
|
2016-11-22 18:40:47 +01:00
|
|
|
|
services.AddEntityFrameworkSqlServer()
|
|
|
|
|
.AddDbContext<OrderingContext>(options =>
|
|
|
|
|
{
|
|
|
|
|
options.UseSqlServer(Configuration["ConnectionString"],
|
|
|
|
|
sqlop=>sqlop.MigrationsAssembly(typeof(Startup).GetTypeInfo().Assembly.GetName().Name));
|
|
|
|
|
});
|
|
|
|
|
|
2016-11-21 12:41:36 +01:00
|
|
|
|
services.AddSwaggerGen();
|
|
|
|
|
services.ConfigureSwaggerGen(options =>
|
2016-11-21 10:02:52 +01:00
|
|
|
|
{
|
2016-11-21 12:41:36 +01:00
|
|
|
|
options.DescribeAllEnumsAsStrings();
|
|
|
|
|
options.SingleApiVersion(new Swashbuckle.Swagger.Model.Info()
|
|
|
|
|
{
|
|
|
|
|
Title = "Ordering HTTP API",
|
|
|
|
|
Version = "v1",
|
|
|
|
|
Description = "The Ordering Service HTTP API",
|
|
|
|
|
TermsOfService = "Terms Of Service"
|
|
|
|
|
});
|
2016-11-21 10:02:52 +01:00
|
|
|
|
});
|
2016-09-12 20:28:55 -07:00
|
|
|
|
|
2016-11-24 14:58:37 +01:00
|
|
|
|
services.AddSingleton<IConfiguration>(this.Configuration);
|
|
|
|
|
|
|
|
|
|
services.AddOptions();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//configure autofac
|
|
|
|
|
|
|
|
|
|
var container = new ContainerBuilder();
|
|
|
|
|
container.Populate(services);
|
|
|
|
|
|
|
|
|
|
container.RegisterModule(new MediatorModule());
|
|
|
|
|
container.RegisterModule(new ApplicationModule());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return new AutofacServiceProvider(container.Build());
|
2016-09-06 17:09:19 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
|
|
|
|
|
{
|
|
|
|
|
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
|
|
|
|
|
loggerFactory.AddDebug();
|
|
|
|
|
|
2016-11-21 10:02:52 +01:00
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
|
{
|
2016-09-14 00:44:13 -07:00
|
|
|
|
app.UseDeveloperExceptionPage();
|
2016-11-21 10:02:52 +01:00
|
|
|
|
}
|
2016-11-24 14:58:37 +01:00
|
|
|
|
|
|
|
|
|
OrderingContextSeed.SeedAsync(app).Wait();
|
|
|
|
|
|
2016-09-06 17:09:19 -07:00
|
|
|
|
app.UseMvc();
|
2016-11-21 12:41:36 +01:00
|
|
|
|
|
|
|
|
|
app.UseSwagger()
|
|
|
|
|
.UseSwaggerUi();
|
2016-09-06 17:09:19 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|