2024-05-27 15:53:54 +02:00
|
|
|
using Serilog.Events;
|
|
|
|
|
|
|
|
namespace Foxnouns.Backend;
|
|
|
|
|
|
|
|
public class Config
|
|
|
|
{
|
2024-06-12 03:47:20 +02:00
|
|
|
public string Host { get; init; } = "localhost";
|
|
|
|
public int Port { get; init; } = 3000;
|
|
|
|
public string BaseUrl { get; init; } = null!;
|
2024-05-27 15:53:54 +02:00
|
|
|
|
|
|
|
public string Address => $"http://{Host}:{Port}";
|
|
|
|
|
2024-06-12 03:47:20 +02:00
|
|
|
public string? SeqLogUrl { get; init; }
|
|
|
|
public LogEventLevel LogEventLevel { get; init; } = LogEventLevel.Debug;
|
2024-05-27 15:53:54 +02:00
|
|
|
|
2024-06-12 03:47:20 +02:00
|
|
|
public DatabaseConfig Database { get; init; } = new();
|
|
|
|
public DiscordAuthConfig DiscordAuth { get; init; } = new();
|
2024-06-12 16:19:49 +02:00
|
|
|
public GoogleAuthConfig GoogleAuth { get; init; } = new();
|
|
|
|
public TumblrAuthConfig TumblrAuth { get; init; } = new();
|
2024-05-27 15:53:54 +02:00
|
|
|
|
|
|
|
public class DatabaseConfig
|
|
|
|
{
|
2024-06-12 03:47:20 +02:00
|
|
|
public string Url { get; init; } = string.Empty;
|
|
|
|
public int? Timeout { get; init; }
|
|
|
|
public int? MaxPoolSize { get; init; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class DiscordAuthConfig
|
|
|
|
{
|
2024-06-12 16:19:49 +02:00
|
|
|
public bool Enabled => ClientId != null && ClientSecret != null;
|
|
|
|
|
|
|
|
public string? ClientId { get; init; }
|
|
|
|
public string? ClientSecret { get; init; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class GoogleAuthConfig
|
|
|
|
{
|
|
|
|
public bool Enabled => ClientId != null && ClientSecret != null;
|
|
|
|
|
|
|
|
public string? ClientId { get; init; }
|
|
|
|
public string? ClientSecret { get; init; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class TumblrAuthConfig
|
|
|
|
{
|
|
|
|
public bool Enabled => ClientId != null && ClientSecret != null;
|
|
|
|
|
2024-06-12 03:47:20 +02:00
|
|
|
public string? ClientId { get; init; }
|
|
|
|
public string? ClientSecret { get; init; }
|
2024-05-27 15:53:54 +02:00
|
|
|
}
|
|
|
|
}
|