2018-04-08 02:44:42 -04:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2018-03-18 22:25:11 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2018-03-14 01:36:25 -04:00
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
namespace SharedLibraryCore.Configuration
|
2018-03-14 01:36:25 -04:00
|
|
|
|
{
|
2018-03-18 22:25:11 -04:00
|
|
|
|
public class ApplicationConfiguration : IBaseConfiguration
|
2018-03-14 01:36:25 -04:00
|
|
|
|
{
|
2018-04-16 16:31:14 -04:00
|
|
|
|
public bool EnableWebFront { get; set; }
|
2018-03-14 01:36:25 -04:00
|
|
|
|
public bool EnableMultipleOwners { get; set; }
|
2018-03-24 17:35:54 -04:00
|
|
|
|
public bool EnableSteppedHierarchy { get; set; }
|
2018-03-14 01:36:25 -04:00
|
|
|
|
public bool EnableClientVPNs { get; set; }
|
|
|
|
|
public bool EnableDiscordLink { get; set; }
|
2018-03-30 00:13:40 -04:00
|
|
|
|
public bool EnableCustomSayName { get; set; }
|
|
|
|
|
public string CustomSayName { get; set; }
|
2018-03-14 01:36:25 -04:00
|
|
|
|
public string DiscordInviteCode { get; set; }
|
|
|
|
|
public string IPHubAPIKey { get; set; }
|
2018-04-19 01:48:14 -04:00
|
|
|
|
public string WebfrontBindUrl { get; set; }
|
2018-04-21 18:18:20 -04:00
|
|
|
|
public string CustomParserEncoding { get; set; }
|
2018-04-24 18:01:27 -04:00
|
|
|
|
public string CustomLocale { get; set; }
|
2018-04-25 02:38:59 -04:00
|
|
|
|
public string ConnectionString { get; set; }
|
2018-04-18 16:46:53 -04:00
|
|
|
|
public string Id { get; set; }
|
2018-03-14 01:36:25 -04:00
|
|
|
|
public List<ServerConfiguration> Servers { get; set; }
|
2018-03-14 14:22:04 -04:00
|
|
|
|
public int AutoMessagePeriod { get; set; }
|
|
|
|
|
public List<string> AutoMessages { get; set; }
|
2018-03-18 22:25:11 -04:00
|
|
|
|
public List<string> GlobalRules { get; set; }
|
2018-03-14 14:22:04 -04:00
|
|
|
|
public List<MapConfiguration> Maps { get; set; }
|
2018-03-18 22:25:11 -04:00
|
|
|
|
|
|
|
|
|
public IBaseConfiguration Generate()
|
|
|
|
|
{
|
2018-04-22 16:04:18 -04:00
|
|
|
|
var loc = Utilities.CurrentLocalization.LocalizationSet;
|
2018-04-18 16:46:53 -04:00
|
|
|
|
Id = Guid.NewGuid().ToString();
|
2018-04-22 16:04:18 -04:00
|
|
|
|
|
|
|
|
|
EnableWebFront = Utilities.PromptBool(loc["SETUP_ENABLE_WEBFRONT"]);
|
|
|
|
|
EnableMultipleOwners = Utilities.PromptBool(loc["SETUP_ENABLE_MULTIOWN"]);
|
|
|
|
|
EnableSteppedHierarchy = Utilities.PromptBool(loc["SETUP_ENABLE_STEPPEDPRIV"]);
|
|
|
|
|
EnableCustomSayName = Utilities.PromptBool(loc["SETUP_ENABLE_CUSTOMSAY"]);
|
2018-03-18 22:25:11 -04:00
|
|
|
|
|
2018-04-22 16:04:18 -04:00
|
|
|
|
bool useCustomParserEncoding = Utilities.PromptBool(loc["SETUP_USE_CUSTOMENCODING"]);
|
|
|
|
|
CustomParserEncoding = useCustomParserEncoding ? Utilities.PromptString(loc["SETUP_ENCODING_STRING"]) : "windows-1252";
|
2018-04-21 18:18:20 -04:00
|
|
|
|
|
|
|
|
|
|
2018-04-19 01:48:14 -04:00
|
|
|
|
WebfrontBindUrl = "http://127.0.0.1:1624";
|
|
|
|
|
|
2018-03-30 00:13:40 -04:00
|
|
|
|
if (EnableCustomSayName)
|
2018-04-22 16:04:18 -04:00
|
|
|
|
CustomSayName = Utilities.PromptString(loc["SETUP_SAY_NAME"]);
|
2018-03-18 22:25:11 -04:00
|
|
|
|
|
2018-04-22 16:04:18 -04:00
|
|
|
|
EnableClientVPNs = Utilities.PromptBool(loc["SETUP_ENABLE_VPNS"]);
|
2018-03-18 22:25:11 -04:00
|
|
|
|
|
2018-03-24 17:35:54 -04:00
|
|
|
|
if (!EnableClientVPNs)
|
2018-04-22 16:04:18 -04:00
|
|
|
|
IPHubAPIKey = Utilities.PromptString(loc["SETUP_IPHUB_KEY"]);
|
2018-03-18 22:25:11 -04:00
|
|
|
|
|
2018-04-22 16:04:18 -04:00
|
|
|
|
EnableDiscordLink = Utilities.PromptBool(loc["SETUP_DISPLAY_DISCORD"]);
|
2018-03-18 22:25:11 -04:00
|
|
|
|
|
|
|
|
|
if (EnableDiscordLink)
|
2018-04-22 16:04:18 -04:00
|
|
|
|
DiscordInviteCode = Utilities.PromptString(loc["SETUP_DISCORD_INVITE"]);
|
2018-03-18 22:25:11 -04:00
|
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name() => "ApplicationConfiguration";
|
2018-03-14 01:36:25 -04:00
|
|
|
|
}
|
2018-03-18 22:25:11 -04:00
|
|
|
|
}
|