forked from TeamInklings/Octobot
Octol1ttle
abbb58f801
result checks go brrr this also involves switching to using Discord's modern stuff like embeds and interactions and using brand-new for me programming concepts (dependency injection, results) --------- Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com> Signed-off-by: mctaylors <95250141+mctaylors@users.noreply.github.com> Co-authored-by: mctaylors <95250141+mctaylors@users.noreply.github.com> Co-authored-by: nrdk <neroduck@vk.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
using System.Globalization;
|
|
using Remora.Rest.Core;
|
|
|
|
namespace Boyfriend.Data;
|
|
|
|
/// <summary>
|
|
/// Stores information about a guild. This information is not accessible via the Discord API.
|
|
/// </summary>
|
|
/// <remarks>This information is stored on disk as a JSON file.</remarks>
|
|
public class GuildData {
|
|
public readonly GuildConfiguration Configuration;
|
|
public readonly string ConfigurationPath;
|
|
|
|
public readonly Dictionary<ulong, MemberData> MemberData;
|
|
public readonly string MemberDataPath;
|
|
|
|
public readonly Dictionary<ulong, ScheduledEventData> ScheduledEvents;
|
|
public readonly string ScheduledEventsPath;
|
|
|
|
public GuildData(
|
|
GuildConfiguration configuration, string configurationPath,
|
|
Dictionary<ulong, ScheduledEventData> scheduledEvents, string scheduledEventsPath,
|
|
Dictionary<ulong, MemberData> memberData, string memberDataPath) {
|
|
Configuration = configuration;
|
|
ConfigurationPath = configurationPath;
|
|
ScheduledEvents = scheduledEvents;
|
|
ScheduledEventsPath = scheduledEventsPath;
|
|
MemberData = memberData;
|
|
MemberDataPath = memberDataPath;
|
|
}
|
|
|
|
public CultureInfo Culture => Configuration.GetCulture();
|
|
|
|
public MemberData GetMemberData(Snowflake userId) {
|
|
if (MemberData.TryGetValue(userId.Value, out var existing)) return existing;
|
|
|
|
var newData = new MemberData(userId.Value, null);
|
|
MemberData.Add(userId.Value, newData);
|
|
return newData;
|
|
}
|
|
}
|