using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using System.Text.Json; using System.Threading.Tasks; using Alphaleonis.Win32.Filesystem; using GraphiQl; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.HttpsPolicy; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Authentication; using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http.Features; using Microsoft.AspNetCore.Mvc.Authorization; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using Microsoft.OpenApi.Models; using Newtonsoft.Json; using Swashbuckle.AspNetCore.Swagger; using Wabbajack.BuildServer.Controllers; using Wabbajack.BuildServer.Models; using Microsoft.AspNetCore.Mvc.NewtonsoftJson; using Microsoft.AspNetCore.StaticFiles; using Microsoft.Extensions.FileProviders; using Wabbajack.BuildServer.Model.Models; using Directory = System.IO.Directory; namespace Wabbajack.BuildServer { public class TestStartup : Startup { public TestStartup(IConfiguration configuration) : base(configuration) { } } public class Startup { public Startup(IConfiguration configuration) { Configuration = configuration; } public IConfiguration Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo {Title = "Wabbajack Build API", Version = "v1"}); }); services.AddAuthentication(options => { options.DefaultAuthenticateScheme = ApiKeyAuthenticationOptions.DefaultScheme; options.DefaultChallengeScheme = ApiKeyAuthenticationOptions.DefaultScheme; }) .AddApiKeySupport(options => {}); services.Configure(x => { x.ValueLengthLimit = int.MaxValue; x.MultipartBodyLengthLimit = int.MaxValue; }); services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); services.AddMvc(); services.AddControllers() .AddNewtonsoftJson(o => { o.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; }); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } if (!(this is TestStartup)) app.UseHttpsRedirection(); app.UseGraphiQl(); app.UseDeveloperExceptionPage(); var provider = new FileExtensionContentTypeProvider(); provider.Mappings[".rar"] = "application/x-rar-compressed"; provider.Mappings[".7z"] = "application/x-7z-compressed"; provider.Mappings[".zip"] = "application/zip"; provider.Mappings[".wabbajack"] = "application/zip"; app.UseStaticFiles(); app.UseSwagger(); app.UseSwaggerUI(c => { c.SwaggerEndpoint("/swagger/v1/swagger.json", "Wabbajack Build API"); c.RoutePrefix = string.Empty; }); app.UseRouting(); app.UseJobManager(); app.UseAuthentication(); app.UseAuthorization(); app.Use(next => { return async context => { var stopWatch = new Stopwatch(); stopWatch.Start(); context.Response.OnStarting(() => { stopWatch.Stop(); var headers = context.Response.Headers; headers.Add("Access-Control-Allow-Origin", "*"); headers.Add("Access-Control-Allow-Methods", "POST, GET"); headers.Add("Access-Control-Allow-Headers", "Accept, Origin, Content-type"); headers.Add("X-ResponseTime-Ms", stopWatch.ElapsedMilliseconds.ToString()); return Task.CompletedTask; }); await next(context); }; }); app.UseFileServer(new FileServerOptions { FileProvider = new PhysicalFileProvider( Path.Combine(Directory.GetCurrentDirectory(), "public")), StaticFileOptions = {ServeUnknownFileTypes = true}, }); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); } } }