using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using LiveGameFeed.Data; using LiveGameFeed.Data.Repositories; using LiveGameFeed.Data.Abstract; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using LiveGameFeed.Core.Mappings; using Newtonsoft.Json.Serialization; using RecurrentTasks; using LiveGameFeed.Core; namespace LiveGameFeed { public class Startup { public Startup(IHostingEnvironment env) { var builder = new ConfigurationBuilder() .SetBasePath(env.ContentRootPath) .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true) .AddEnvironmentVariables(); Configuration = builder.Build(); } public IConfigurationRoot Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddDbContext(options => options.UseInMemoryDatabase()); // Repositories services.AddScoped(); services.AddScoped(); // Automapper Configuration AutoMapperConfiguration.Configure(); // Add framework services. services .AddMvc() .AddJsonOptions(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver()); services.AddSignalR(options => options.Hubs.EnableDetailedErrors = true); services.AddTask(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) { loggerFactory.AddConsole(Configuration.GetSection("Logging")); loggerFactory.AddDebug(); app.UseCors( builder => builder.AllowAnyOrigin() .AllowAnyHeader() .AllowAnyMethod() .AllowCredentials()) .UseStaticFiles() .UseWebSockets(); app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller=Home}/{action=Index}/{id?}"); }); app.UseSignalR(); LiveGameDbInitializer.Initialize(app.ApplicationServices); app.StartTask(TimeSpan.FromSeconds(15)); } } }