2016-11-21 12:41:36 +01:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Ordering.API
|
2016-09-06 17:09:19 -07:00
|
|
|
|
{
|
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-09-06 17:09:19 -07:00
|
|
|
|
public class Startup
|
|
|
|
|
{
|
|
|
|
|
public Startup(IHostingEnvironment env)
|
|
|
|
|
{
|
|
|
|
|
var builder = new ConfigurationBuilder()
|
|
|
|
|
.SetBasePath(env.ContentRootPath)
|
|
|
|
|
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
|
2016-11-21 10:02:52 +01:00
|
|
|
|
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);
|
|
|
|
|
|
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
|
{
|
|
|
|
|
builder.AddUserSecrets();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
builder.AddEnvironmentVariables();
|
|
|
|
|
|
2016-09-06 17:09:19 -07:00
|
|
|
|
Configuration = builder.Build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IConfigurationRoot Configuration { get; }
|
|
|
|
|
|
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
// Add framework services.
|
|
|
|
|
services.AddMvc();
|
2016-09-09 17:24:24 -07:00
|
|
|
|
|
2016-11-21 12:41:36 +01:00
|
|
|
|
//services.AddEntityFrameworkSqlServer()
|
|
|
|
|
// .AddDbContext<OrderingDbContext>(options =>
|
|
|
|
|
// {
|
|
|
|
|
// options.UseSqlServer(Configuration["ConnectionString"]);
|
|
|
|
|
// });
|
2016-11-21 10:02:52 +01:00
|
|
|
|
|
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-21 12:41:36 +01:00
|
|
|
|
services.AddMediatR(typeof(Startup)); //TODO:pending
|
|
|
|
|
|
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-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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|