#nullable disable using Microsoft.Extensions.Configuration; using EllieBot.Common.Yml; namespace EllieBot.Services; public sealed class BotCredsProvider : IBotCredsProvider { private const string CREDS_FILE_NAME = "creds.yml"; private const string CREDS_EXAMPLE_FILE_NAME = "creds_example.yml"; private string CredsPath { get; } private string CredsExamplePath { get; } private readonly int? _totalShards; private readonly Creds _creds = new(); private readonly IConfigurationRoot _config; private readonly object _reloadLock = new(); public BotCredsProvider(int? totalShards = null, string credPath = null) { _totalShards = totalShards; if (!string.IsNullOrWhiteSpace(credPath)) { CredsPath = credPath; CredsExamplePath = Path.Combine(Path.GetDirectoryName(credPath), CREDS_EXAMPLE_FILE_NAME); } else { CredsPath = Path.Combine(Directory.GetCurrentDirectory(), CREDS_FILE_NAME); CredsExamplePath = Path.Combine(Directory.GetCurrentDirectory(), CREDS_EXAMPLE_FILE_NAME); } try { if (!File.Exists(CredsExamplePath)) File.WriteAllText(CredsExamplePath, Yaml.Serializer.Serialize(_creds)); } catch { // this can fail in docker containers } try { MigrateCredentials(); if (!File.Exists(CredsPath)) { Log.Warning( "{CredsPath} is missing. Attempting to load creds from environment variables prefixed with 'EllieBot_'. Example is in {CredsExamplePath}", CredsPath, CredsExamplePath); } _config = new ConfigurationBuilder().AddYamlFile(CredsPath, false, true) .AddEnvironmentVariables("EllieBot_") .Build(); } catch (Exception ex) { Console.WriteLine(ex.ToString()); } Reload(); } public void Reload() { lock (_reloadLock) { _creds.OwnerIds.Clear(); _config.Bind(_creds); if (string.IsNullOrWhiteSpace(_creds.Token)) { Log.Error("Token is missing from creds.yml or Environment variables.\nAdd it and restart the program"); Helpers.ReadErrorAndExit(5); return; } if (string.IsNullOrWhiteSpace(_creds.RestartCommand?.Cmd) || string.IsNullOrWhiteSpace(_creds.RestartCommand?.Args)) { if (Environment.OSVersion.Platform == PlatformID.Unix) { _creds.RestartCommand = new RestartConfig() { Args = "dotnet", Cmd = "EllieBot.dll -- {0}" }; } else { _creds.RestartCommand = new RestartConfig() { Args = "EllieBot.exe", Cmd = "{0}" }; } } if (string.IsNullOrWhiteSpace(_creds.RedisOptions)) _creds.RedisOptions = "127.0.0.1,syncTimeout=3000"; // replace the old generated key with the shared key if (string.IsNullOrWhiteSpace(_creds.CoinmarketcapApiKey) || _creds.CoinmarketcapApiKey.StartsWith("e79ec505-0913")) _creds.CoinmarketcapApiKey = "3077537c-7dfb-4d97-9a60-56fc9a9f5035"; _creds.TotalShards = _totalShards ?? _creds.TotalShards; } } public void ModifyCredsFile(Action func) { var ymlData = File.ReadAllText(CREDS_FILE_NAME); var creds = Yaml.Deserializer.Deserialize(ymlData); func(creds); ymlData = Yaml.Serializer.Serialize(creds); File.WriteAllText(CREDS_FILE_NAME, ymlData); } private void MigrateCredentials() { if (File.Exists(CREDS_FILE_NAME)) { var creds = Yaml.Deserializer.Deserialize(File.ReadAllText(CREDS_FILE_NAME)); if (creds.Version <= 5) { creds.BotCache = BotCacheImplemenation.Memory; } if (creds.Version < 13) { creds.Version = 13; File.WriteAllText(CREDS_FILE_NAME, Yaml.Serializer.Serialize(creds)); } } } public IBotCreds GetCreds() { lock (_reloadLock) { return _creds; } } }