using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.IO; using System.Runtime.CompilerServices; using NadekoBot.Classes.JSONModels; using Newtonsoft.Json; namespace NadekoBot.Classes { internal class SpecificConfigurations { public static SpecificConfigurations Default { get; } = new SpecificConfigurations(); public static bool Instantiated { get; private set; } private const string filePath = "data/ServerSpecificConfigs.json"; static SpecificConfigurations() { } private SpecificConfigurations() { if (File.Exists(filePath)) { try { configs = JsonConvert .DeserializeObject>( File.ReadAllText(filePath)); } catch (Exception ex) { Console.WriteLine($"Deserialization failing: {ex}"); } } if (configs == null) configs = new ConcurrentDictionary(); Instantiated = true; } private readonly ConcurrentDictionary configs; public IEnumerable AllConfigs => configs.Values; public ServerSpecificConfig Of(ulong id) => configs.GetOrAdd(id, _ => new ServerSpecificConfig()); private readonly object saveLock = new object(); public void Save() { lock (saveLock) { File.WriteAllText(filePath, JsonConvert.SerializeObject(configs, Formatting.Indented)); } } } internal class ServerSpecificConfig : INotifyPropertyChanged { [JsonProperty("VoicePlusTextEnabled")] private bool voicePlusTextEnabled; [JsonIgnore] public bool VoicePlusTextEnabled { get { return voicePlusTextEnabled; } set { voicePlusTextEnabled = value; OnPropertyChanged(); } } [JsonProperty("SendPrivateMessageOnMention")] private bool sendPrivateMessageOnMention; [JsonIgnore] public bool SendPrivateMessageOnMention { get { return sendPrivateMessageOnMention; } set { sendPrivateMessageOnMention = value; OnPropertyChanged(); } } [JsonIgnore] private ObservableCollection listOfSelfAssignableRoles; public ObservableCollection ListOfSelfAssignableRoles { get { return listOfSelfAssignableRoles; } set { listOfSelfAssignableRoles = value; if (value != null) listOfSelfAssignableRoles.CollectionChanged += (s, e) => { if (!SpecificConfigurations.Instantiated) return; OnPropertyChanged(); }; } } [JsonIgnore] private ObservableCollection observingStreams; public ObservableCollection ObservingStreams { get { return observingStreams; } set { observingStreams = value; if (value != null) observingStreams.CollectionChanged += (s, e) => { if (!SpecificConfigurations.Instantiated) return; OnPropertyChanged(); }; } } public ServerSpecificConfig() { ListOfSelfAssignableRoles = new ObservableCollection(); ObservingStreams = new ObservableCollection(); } public event PropertyChangedEventHandler PropertyChanged = delegate { SpecificConfigurations.Default.Save(); }; private void OnPropertyChanged([CallerMemberName] string propertyName = null) { Console.WriteLine("property changed"); PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } public class StreamNotificationConfig : IEquatable { public string Username { get; set; } public StreamType Type { get; set; } public ulong ServerId { get; set; } public ulong ChannelId { get; set; } public bool LastStatus { get; set; } public enum StreamType { Twitch, Hitbox, YoutubeGaming } public bool Equals(StreamNotificationConfig other) => this.Username.ToLower().Trim() == other.Username.ToLower().Trim() && this.Type == other.Type && this.ServerId == other.ServerId; public override int GetHashCode() { return (int)((int)ServerId + Username.Length + (int)Type); } } }