63 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Globalization;
 | 
						|
using NodaTime;
 | 
						|
using NodaTime.Serialization.SystemTextJson;
 | 
						|
using System.Text.Json;
 | 
						|
using System.Text.Json.Serialization;
 | 
						|
using DysonNetwork.Develop.Identity;
 | 
						|
using DysonNetwork.Develop.Project;
 | 
						|
using DysonNetwork.Shared.Cache;
 | 
						|
 | 
						|
namespace DysonNetwork.Develop.Startup;
 | 
						|
 | 
						|
public static class ServiceCollectionExtensions
 | 
						|
{
 | 
						|
    public static IServiceCollection AddAppServices(this IServiceCollection services, IConfiguration configuration)
 | 
						|
    {
 | 
						|
        services.AddLocalization();
 | 
						|
 | 
						|
        services.AddDbContext<AppDatabase>();
 | 
						|
        services.AddSingleton<IClock>(SystemClock.Instance);
 | 
						|
        services.AddHttpContextAccessor();
 | 
						|
        services.AddSingleton<ICacheService, CacheServiceRedis>();
 | 
						|
 | 
						|
        services.AddHttpClient();
 | 
						|
 | 
						|
        services.AddControllers().AddJsonOptions(options =>
 | 
						|
        {
 | 
						|
            options.JsonSerializerOptions.NumberHandling = JsonNumberHandling.AllowNamedFloatingPointLiterals;
 | 
						|
            options.JsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.SnakeCaseLower;
 | 
						|
            options.JsonSerializerOptions.DictionaryKeyPolicy = JsonNamingPolicy.SnakeCaseLower;
 | 
						|
            
 | 
						|
            options.JsonSerializerOptions.ConfigureForNodaTime(DateTimeZoneProviders.Tzdb);
 | 
						|
        });
 | 
						|
 | 
						|
        services.AddGrpc(options => { options.EnableDetailedErrors = true; });
 | 
						|
        services.AddGrpcReflection();
 | 
						|
 | 
						|
        services.Configure<RequestLocalizationOptions>(options =>
 | 
						|
        {
 | 
						|
            var supportedCultures = new[]
 | 
						|
            {
 | 
						|
                new CultureInfo("en-US"),
 | 
						|
                new CultureInfo("zh-Hans"),
 | 
						|
            };
 | 
						|
 | 
						|
            options.SupportedCultures = supportedCultures;
 | 
						|
            options.SupportedUICultures = supportedCultures;
 | 
						|
        });
 | 
						|
 | 
						|
        services.AddScoped<DeveloperService>();
 | 
						|
        services.AddScoped<CustomAppService>();
 | 
						|
        services.AddScoped<DevProjectService>();
 | 
						|
        services.AddScoped<BotAccountService>();
 | 
						|
 | 
						|
        return services;
 | 
						|
    }
 | 
						|
 | 
						|
    public static IServiceCollection AddAppAuthentication(this IServiceCollection services)
 | 
						|
    {
 | 
						|
        services.AddAuthorization();
 | 
						|
        return services;
 | 
						|
    }
 | 
						|
}
 |