using System.Text.Json.Nodes;
using Remora.Rest.Core;
namespace Octobot.Data;
///
/// Stores information about a guild. This information is not accessible via the Discord API.
///
/// This information is stored on disk as a JSON file.
public sealed class GuildData
{
public readonly Dictionary MemberData;
public readonly string MemberDataPath;
public readonly Dictionary ScheduledEvents;
public readonly string ScheduledEventsPath;
public readonly JsonNode Settings;
public readonly string SettingsPath;
public GuildData(
JsonNode settings, string settingsPath,
Dictionary scheduledEvents, string scheduledEventsPath,
Dictionary memberData, string memberDataPath)
{
Settings = settings;
SettingsPath = settingsPath;
ScheduledEvents = scheduledEvents;
ScheduledEventsPath = scheduledEventsPath;
MemberData = memberData;
MemberDataPath = memberDataPath;
}
public MemberData GetOrCreateMemberData(Snowflake memberId)
{
if (MemberData.TryGetValue(memberId.Value, out var existing))
{
return existing;
}
var newData = new MemberData(memberId.Value);
MemberData.Add(memberId.Value, newData);
return newData;
}
}