51 lines
No EOL
1.5 KiB
C#
51 lines
No EOL
1.5 KiB
C#
using Serilog.Events;
|
|
|
|
namespace Foxnouns.Backend;
|
|
|
|
public class Config
|
|
{
|
|
public string Host { get; init; } = "localhost";
|
|
public int Port { get; init; } = 3000;
|
|
public string BaseUrl { get; init; } = null!;
|
|
|
|
public string Address => $"http://{Host}:{Port}";
|
|
|
|
public string? SeqLogUrl { get; init; }
|
|
public LogEventLevel LogEventLevel { get; init; } = LogEventLevel.Debug;
|
|
|
|
public DatabaseConfig Database { get; init; } = new();
|
|
public DiscordAuthConfig DiscordAuth { get; init; } = new();
|
|
public GoogleAuthConfig GoogleAuth { get; init; } = new();
|
|
public TumblrAuthConfig TumblrAuth { get; init; } = new();
|
|
|
|
public class DatabaseConfig
|
|
{
|
|
public string Url { get; init; } = string.Empty;
|
|
public int? Timeout { get; init; }
|
|
public int? MaxPoolSize { get; init; }
|
|
}
|
|
|
|
public class DiscordAuthConfig
|
|
{
|
|
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;
|
|
|
|
public string? ClientId { get; init; }
|
|
public string? ClientSecret { get; init; }
|
|
}
|
|
} |