2023-02-23 21:46:49 +00:00
|
|
|
|
using System;
|
2023-02-10 06:07:59 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2023-02-23 21:46:49 +00:00
|
|
|
|
using System.Text.Json;
|
2023-02-10 06:07:59 +00:00
|
|
|
|
|
2023-07-23 21:31:13 +00:00
|
|
|
|
namespace SharpChat.EventStorage {
|
2023-02-10 06:07:59 +00:00
|
|
|
|
public class VirtualEventStorage : IEventStorage {
|
2023-02-23 21:46:49 +00:00
|
|
|
|
private readonly Dictionary<long, StoredEventInfo> Events = new();
|
2023-02-10 06:07:59 +00:00
|
|
|
|
|
2023-07-23 21:31:13 +00:00
|
|
|
|
public void AddEvent(
|
2024-05-23 22:31:43 +00:00
|
|
|
|
long id,
|
|
|
|
|
string type,
|
2024-05-10 19:18:55 +00:00
|
|
|
|
string? channelName,
|
2024-05-23 22:31:43 +00:00
|
|
|
|
long senderId,
|
|
|
|
|
string? senderName,
|
|
|
|
|
Colour senderColour,
|
|
|
|
|
int senderRank,
|
|
|
|
|
string? senderNick,
|
|
|
|
|
UserPermissions senderPerms,
|
2024-05-10 19:18:55 +00:00
|
|
|
|
object? data = null,
|
2023-07-23 21:31:13 +00:00
|
|
|
|
StoredEventFlags flags = StoredEventFlags.None
|
|
|
|
|
) {
|
2023-02-23 21:46:49 +00:00
|
|
|
|
// VES is meant as an emergency fallback but this is something else
|
|
|
|
|
JsonDocument hack = JsonDocument.Parse(data == null ? "{}" : JsonSerializer.Serialize(data));
|
2024-05-19 02:17:51 +00:00
|
|
|
|
Events.Add(id, new(id, type, senderId < 1 ? null : new UserInfo(
|
2023-07-23 21:31:13 +00:00
|
|
|
|
senderId,
|
2024-05-19 01:53:14 +00:00
|
|
|
|
senderName ?? string.Empty,
|
2023-07-23 21:31:13 +00:00
|
|
|
|
senderColour,
|
|
|
|
|
senderRank,
|
|
|
|
|
senderPerms,
|
|
|
|
|
senderNick
|
|
|
|
|
), DateTimeOffset.Now, null, channelName, hack, flags));
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-10 19:18:55 +00:00
|
|
|
|
public StoredEventInfo? GetEvent(long seqId) {
|
|
|
|
|
return Events.TryGetValue(seqId, out StoredEventInfo? evt) ? evt : null;
|
2023-02-10 06:07:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-23 21:46:49 +00:00
|
|
|
|
public void RemoveEvent(StoredEventInfo evt) {
|
|
|
|
|
Events.Remove(evt.Id);
|
2023-02-10 06:07:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-23 21:46:49 +00:00
|
|
|
|
public IEnumerable<StoredEventInfo> GetChannelEventLog(string channelName, int amount = 20, int offset = 0) {
|
|
|
|
|
IEnumerable<StoredEventInfo> subset = Events.Values.Where(ev => ev.ChannelName == channelName);
|
2023-02-10 06:07:59 +00:00
|
|
|
|
|
|
|
|
|
int start = subset.Count() - offset - amount;
|
|
|
|
|
if(start < 0) {
|
|
|
|
|
amount += start;
|
|
|
|
|
start = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return subset.Skip(start).Take(amount).ToArray();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|