RainBOT/src/Settings/Ignore.cs

93 lines
3.3 KiB
C#

using Milimoe.OneBot.Framework.Utility;
namespace Milimoe.RainBOT.Settings
{
public class Ignore
{
public static HashSet<string> RepeatIgnore { get; set; } = [];
public static List<string> CallBrotherQQIgnore { get; set; } = [];
/// <summary>
/// 这个属性暂时没用到 标记一下
/// </summary>
public static List<long> QQGroupIgnore { get; set; } = [];
public static PluginConfig Configs { get; set; } = new("rainbot", "ignore");
public static void InitIgnore()
{
PluginConfig configs = new("rainbot", "ignore");
configs.Load();
if (configs.TryGetValue("RepeatIgnore", out object? value) && value != null)
{
RepeatIgnore = new HashSet<string>((List<string>)value);
}
if (configs.TryGetValue("CallBrotherQQIgnore", out value) && value != null)
{
CallBrotherQQIgnore = new List<string>((List<string>)value);
}
if (configs.TryGetValue("QQGroupIgnore", out value) && value != null)
{
QQGroupIgnore = (List<long>)value;
}
}
public static void SaveConfig()
{
Configs.Add("RepeatIgnore", RepeatIgnore);
Configs.Add("CallBrotherQQIgnore", CallBrotherQQIgnore);
Configs.Add("QQGroupIgnore", QQGroupIgnore);
Configs.Save();
}
public static bool AddValue(string part, bool isadd, object value)
{
try
{
switch (part.ToLower())
{
case "repeatignore":
if (isadd) RepeatIgnore.Add((string)value);
else RepeatIgnore.Remove((string)value);
break;
case "callbrotherqqignore":
if (isadd) CallBrotherQQIgnore.Add((string)value);
else CallBrotherQQIgnore.Remove((string)value);
break;
case "qqgroupignore":
if (isadd) QQGroupIgnore.Add((long)value);
else QQGroupIgnore.Remove((long)value);
break;
default:
return false;
}
}
catch
{
return false;
}
return true;
}
public static void ShowList(long target, string group, bool isgroup)
{
List<string> list = [];
switch (group.ToLower())
{
case "repeatignore":
list = [..RepeatIgnore];
break;
case "callbrotherqqignore":
list = CallBrotherQQIgnore;
break;
case "qqgroupignore":
list = QQGroupIgnore.Select(x => x.ToString()).ToList();
break;
}
string msg = list.Count > 0 ? "列表" + group + "拥有一下成员:" + "\r\n" + string.Join("\r\n", list) : "此列表不存在或没有任何成员。";
_ = isgroup ? Bot.SendGroupMessage(target, "显示列表成员", msg) : Bot.SendFriendMessage(target, "显示列表成员", msg);
}
}
}