Added another handler

This commit is contained in:
Noikoio 2017-12-22 22:28:58 -08:00
parent 1fbe4d5e52
commit b70f57f0a3

View file

@ -29,6 +29,7 @@ namespace Noikoio.RegexBot.EntityCache
client.GuildUpdated += Client_GuildUpdated;
client.GuildMemberUpdated += Client_GuildMemberUpdated;
client.UserJoined += Client_UserJoined;
client.UserLeft += Client_UserLeft;
}
else
{
@ -38,7 +39,6 @@ namespace Noikoio.RegexBot.EntityCache
public override Task<object> ProcessConfiguration(JToken configSection) => Task.FromResult<object>(null);
#region Event handling
// Guild and guild member information has become available.
// This is a very expensive operation, especially when joining larger guilds.
private async Task Client_GuildAvailable(SocketGuild arg)
@ -104,7 +104,21 @@ namespace Noikoio.RegexBot.EntityCache
}
});
}
#endregion
// User left the guild. No new data, but gives an excuse to update the cache date.
private async Task Client_UserLeft(SocketGuildUser arg)
{
await Task.Run(async () =>
{
try
{
await SqlHelper.UpdateGuildMemberAsync(arg);
}
catch (NpgsqlException ex)
{
await Log($"SQL error in {nameof(Client_UserLeft)}: {ex.Message}");
}
});
}
}
}