using System.Collections.Generic; using System.Globalization; using System.Linq; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; namespace Bit.Server { public class Startup { private readonly List _longCachedPaths = new List { "/app/", "/locales/", "/fonts/", "/connectors/", "/scripts/" }; private readonly List _mediumCachedPaths = new List { "/images/" }; public Startup() { CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("en-US"); } public void ConfigureServices(IServiceCollection services) { services.AddRouting(); } public void Configure( IApplicationBuilder app, IConfiguration configuration) { if (configuration.GetValue("serveUnknown") ?? false) { app.UseStaticFiles(new StaticFileOptions { ServeUnknownFileTypes = true, DefaultContentType = "application/octet-stream" }); app.UseRouting(); app.UseEndpoints(endpoints => { endpoints.MapGet("/alive", async context => await context.Response.WriteAsync(System.DateTime.UtcNow.ToString())); }); } else if (configuration.GetValue("webVault") ?? false) { var options = new DefaultFilesOptions(); options.DefaultFileNames.Clear(); options.DefaultFileNames.Add("index.html"); app.UseDefaultFiles(options); app.UseStaticFiles(new StaticFileOptions { OnPrepareResponse = ctx => { if (!ctx.Context.Request.Path.HasValue || ctx.Context.Response.Headers.ContainsKey("Cache-Control")) { return; } var path = ctx.Context.Request.Path.Value; if (_longCachedPaths.Any(ext => path.StartsWith(ext))) { // 14 days ctx.Context.Response.Headers.Append("Cache-Control", "max-age=1209600"); } if (_mediumCachedPaths.Any(ext => path.StartsWith(ext))) { // 7 days ctx.Context.Response.Headers.Append("Cache-Control", "max-age=604800"); } } }); } else { app.UseFileServer(); app.UseRouting(); app.UseEndpoints(endpoints => { endpoints.MapGet("/alive", async context => await context.Response.WriteAsync(System.DateTime.UtcNow.ToString())); }); } } } }