RegexBot/Module/ModLogs/ModLogs.cs

78 lines
3 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-02-20 08:58:16 +00:00
using System.Threading.Tasks;
using Discord.WebSocket;
using Newtonsoft.Json.Linq;
using Noikoio.RegexBot.ConfigItem;
namespace Noikoio.RegexBot.Module.ModLogs
{
2018-02-20 08:58:16 +00:00
/// <summary>
/// Logs certain events of note to a database for moderators to keep track of user behavior.
/// Makes use of a helper class, <see cref="MessageCache"/>.
/// </summary>
class ModLogs : BotModule
{
2018-02-20 08:58:16 +00:00
public override string Name => "ModLogs";
private readonly MessageCache _msgCacheInstance;
public ModLogs(DiscordSocketClient client) : base(client)
{
2018-02-23 02:05:50 +00:00
// Do nothing if database unavailable. The user will be informed by ProcessConfiguration.
if (!RegexBot.Config.DatabaseAvailable) return;
2018-02-20 08:58:16 +00:00
_msgCacheInstance = new MessageCache(client, Log, GetConfig);
//throw new NotImplementedException();
2018-02-20 08:58:16 +00:00
}
[ConfigSection("ModLogs")]
public override async Task<object> ProcessConfiguration(JToken configSection)
{
if (configSection.Type != JTokenType.Object)
throw new RuleImportException("Configuration for this section is invalid.");
var conf = (JObject)configSection;
if (!RegexBot.Config.DatabaseAvailable)
{
2018-02-23 02:05:50 +00:00
await Log("Database access is not available. This module be unavailable.");
2018-02-20 08:58:16 +00:00
return null;
}
try
{
2018-02-23 02:05:50 +00:00
// MessageCache testing: will store an EntityName or die trying
2018-02-20 08:58:16 +00:00
EntityName? mctarget = new EntityName(conf["mctarget"].Value<string>(), EntityType.Channel);
await Log("Enabled MessageCache test on " + mctarget.Value.ToString());
return mctarget;
}
catch (Exception)
{
// well, not really die
return null;
}
/*
2018-02-23 02:05:50 +00:00
* Concept:
* "ModLogs": {
* "AutoReporting": {
* // behavior for how to output to the reporting channel
* // MessageCache looks for configuration values within here.
* "Channel": "something compatible with EntityName",
* "Events": "perhaps a single string of separated event types"
* },
* "QueryOptions": {
* // Behavior for the query command (which is defined here rather than ModTools)
* // Need to stress in the documentation that "msgedit" and "msgdelete" events
* // are not kept and cannot be queried
* "QueryCommand": "!modlogs",
* "Permission": "Moderators", // either a string that says "Moderators" or an EntityList
* "DefaultQueryEvents": "another single string of separated event types",
* }
* }
2018-02-20 08:58:16 +00:00
*/
}
}
}