mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00

* Add api integration tests * Add some stuff * Make program mockable * Work on IntegrationTests for Identity * Formatting * Update packages.lock.json * Update more packages.lock.json * Update all packages.lock.json * Fix InMemory configuration * Actually fix test configuration * Fix tests for CI * Fix event service * Force EF EventRepository * Add client_credentials test * Remove Api.IntegrationTest * Remove Api Program changes * Cleanup * Add more Auth-Email tests * Run formatting * Address some PR feedback * Move integration stuff to it's own common project * Ran linter * Add shared project to test solution * Remove sln changes * Clean usings * Add more coverage * Address PR feedback
48 lines
1.6 KiB
C#
48 lines
1.6 KiB
C#
using AspNetCoreRateLimit;
|
|
using Bit.Core.Utilities;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Serilog.Events;
|
|
|
|
namespace Bit.Identity
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
CreateHostBuilder(args)
|
|
.Build()
|
|
.Run();
|
|
}
|
|
|
|
public static IHostBuilder CreateHostBuilder(string[] args)
|
|
{
|
|
return Host
|
|
.CreateDefaultBuilder(args)
|
|
.ConfigureCustomAppConfiguration(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
webBuilder.ConfigureLogging((hostingContext, logging) =>
|
|
logging.AddSerilog(hostingContext, e =>
|
|
{
|
|
var context = e.Properties["SourceContext"].ToString();
|
|
if (context.Contains(typeof(IpRateLimitMiddleware).FullName) &&
|
|
e.Level == LogEventLevel.Information)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
if (context.Contains("IdentityServer4.Validation.TokenValidator") ||
|
|
context.Contains("IdentityServer4.Validation.TokenRequestValidator"))
|
|
{
|
|
return e.Level > LogEventLevel.Error;
|
|
}
|
|
|
|
return e.Level >= LogEventLevel.Error;
|
|
}));
|
|
});
|
|
}
|
|
}
|
|
}
|