296 lines
12 KiB
C#
296 lines
12 KiB
C#
using Discord;
|
|
using Discord.Commands;
|
|
using NadekoBot.Commands;
|
|
using NadekoBot.Extensions;
|
|
using System.Collections.Concurrent;
|
|
using System.Linq;
|
|
|
|
/* Voltana's legacy
|
|
public class AsyncLazy<T> : Lazy<Task<T>>
|
|
{
|
|
public AsyncLazy(Func<T> valueFactory) :
|
|
base(() => Task.Factory.StartNew(valueFactory)) { }
|
|
|
|
public AsyncLazy(Func<Task<T>> taskFactory) :
|
|
base(() => Task.Factory.StartNew(() => taskFactory()).Unwrap()) { }
|
|
|
|
public TaskAwaiter<T> GetAwaiter() { return Value.GetAwaiter(); }
|
|
}
|
|
*/
|
|
|
|
namespace NadekoBot.Modules.Administration.Commands
|
|
{
|
|
internal class ServerGreetCommand : DiscordCommand
|
|
{
|
|
|
|
public static ConcurrentDictionary<ulong, AnnounceControls> AnnouncementsDictionary;
|
|
|
|
public static long Greeted = 0;
|
|
|
|
public ServerGreetCommand(DiscordModule module) : base(module)
|
|
{
|
|
AnnouncementsDictionary = new ConcurrentDictionary<ulong, AnnounceControls>();
|
|
|
|
NadekoBot.Client.UserJoined += UserJoined;
|
|
NadekoBot.Client.UserLeft += UserLeft;
|
|
|
|
var data = Classes.DbHandler.Instance.GetAllRows<Classes._DataModels.Announcement>();
|
|
|
|
if (!data.Any()) return;
|
|
foreach (var obj in data)
|
|
AnnouncementsDictionary.TryAdd((ulong)obj.ServerId, new AnnounceControls(obj));
|
|
}
|
|
|
|
private async void UserLeft(object sender, UserEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
if (!AnnouncementsDictionary.ContainsKey(e.Server.Id) ||
|
|
!AnnouncementsDictionary[e.Server.Id].Bye) return;
|
|
|
|
var controls = AnnouncementsDictionary[e.Server.Id];
|
|
var channel = NadekoBot.Client.GetChannel(controls.ByeChannel);
|
|
var msg = controls.ByeText.Replace("%user%", "**" + e.User.Name + "**").Trim();
|
|
if (string.IsNullOrEmpty(msg))
|
|
return;
|
|
|
|
if (controls.ByePM)
|
|
{
|
|
Greeted++;
|
|
try
|
|
{
|
|
await e.User.SendMessage($"`Farewell Message From {e.Server?.Name}`\n" + msg);
|
|
}
|
|
catch { }
|
|
}
|
|
else {
|
|
if (channel == null) return;
|
|
Greeted++;
|
|
await channel.Send(msg);
|
|
}
|
|
}
|
|
catch { }
|
|
}
|
|
|
|
private async void UserJoined(object sender, Discord.UserEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
if (!AnnouncementsDictionary.ContainsKey(e.Server.Id) ||
|
|
!AnnouncementsDictionary[e.Server.Id].Greet) return;
|
|
|
|
var controls = AnnouncementsDictionary[e.Server.Id];
|
|
var channel = NadekoBot.Client.GetChannel(controls.GreetChannel);
|
|
|
|
var msg = controls.GreetText.Replace("%user%", e.User.Mention).Trim();
|
|
if (string.IsNullOrEmpty(msg))
|
|
return;
|
|
if (controls.GreetPM)
|
|
{
|
|
Greeted++;
|
|
await e.User.SendMessage($"`Welcome Message From {e.Server.Name}`\n" + msg);
|
|
}
|
|
else {
|
|
if (channel == null) return;
|
|
Greeted++;
|
|
await channel.Send(msg);
|
|
}
|
|
}
|
|
catch { }
|
|
}
|
|
|
|
public class AnnounceControls
|
|
{
|
|
private Classes._DataModels.Announcement _model { get; }
|
|
|
|
public bool Greet {
|
|
get { return _model.Greet; }
|
|
set { _model.Greet = value; Save(); }
|
|
}
|
|
|
|
public ulong GreetChannel {
|
|
get { return (ulong)_model.GreetChannelId; }
|
|
set { _model.GreetChannelId = (long)value; Save(); }
|
|
}
|
|
|
|
public bool GreetPM {
|
|
get { return _model.GreetPM; }
|
|
set { _model.GreetPM = value; Save(); }
|
|
}
|
|
|
|
public bool ByePM {
|
|
get { return _model.ByePM; }
|
|
set { _model.ByePM = value; Save(); }
|
|
}
|
|
|
|
public string GreetText {
|
|
get { return _model.GreetText; }
|
|
set { _model.GreetText = value; Save(); }
|
|
}
|
|
|
|
public bool Bye {
|
|
get { return _model.Bye; }
|
|
set { _model.Bye = value; Save(); }
|
|
}
|
|
public ulong ByeChannel {
|
|
get { return (ulong)_model.ByeChannelId; }
|
|
set { _model.ByeChannelId = (long)value; Save(); }
|
|
}
|
|
|
|
public string ByeText {
|
|
get { return _model.ByeText; }
|
|
set { _model.ByeText = value; Save(); }
|
|
}
|
|
|
|
public ulong ServerId {
|
|
get { return (ulong)_model.ServerId; }
|
|
set { _model.ServerId = (long)value; }
|
|
}
|
|
|
|
public AnnounceControls(Classes._DataModels.Announcement model)
|
|
{
|
|
this._model = model;
|
|
}
|
|
|
|
public AnnounceControls(ulong serverId)
|
|
{
|
|
this._model = new Classes._DataModels.Announcement();
|
|
ServerId = serverId;
|
|
}
|
|
|
|
internal bool ToggleBye(ulong id)
|
|
{
|
|
if (Bye)
|
|
{
|
|
return Bye = false;
|
|
}
|
|
else {
|
|
ByeChannel = id;
|
|
return Bye = true;
|
|
}
|
|
}
|
|
|
|
internal bool ToggleGreet(ulong id)
|
|
{
|
|
if (Greet)
|
|
{
|
|
return Greet = false;
|
|
}
|
|
else {
|
|
GreetChannel = id;
|
|
return Greet = true;
|
|
}
|
|
}
|
|
internal bool ToggleGreetPM() => GreetPM = !GreetPM;
|
|
internal bool ToggleByePM() => ByePM = !ByePM;
|
|
|
|
private void Save()
|
|
{
|
|
Classes.DbHandler.Instance.Save(_model);
|
|
}
|
|
}
|
|
|
|
internal override void Init(CommandGroupBuilder cgb)
|
|
{
|
|
|
|
cgb.CreateCommand(Module.Prefix + "greet")
|
|
.Description("Enables or Disables anouncements on the current channel when someone joins the server.")
|
|
.Do(async e =>
|
|
{
|
|
if (!e.User.ServerPermissions.ManageServer) return;
|
|
if (!AnnouncementsDictionary.ContainsKey(e.Server.Id))
|
|
AnnouncementsDictionary.TryAdd(e.Server.Id, new AnnounceControls(e.Server.Id));
|
|
|
|
var controls = AnnouncementsDictionary[e.Server.Id];
|
|
|
|
if (controls.ToggleGreet(e.Channel.Id))
|
|
await e.Channel.SendMessage("Greet announcements enabled on this channel.");
|
|
else
|
|
await e.Channel.SendMessage("Greet announcements disabled.");
|
|
});
|
|
|
|
cgb.CreateCommand(Module.Prefix + "greetmsg")
|
|
.Description("Sets a new announce message. Type %user% if you want to mention the new member.\n**Usage**: .greetmsg Welcome to the server, %user%.")
|
|
.Parameter("msg", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
if (!e.User.ServerPermissions.ManageServer) return;
|
|
if (e.GetArg("msg") == null) return;
|
|
if (!AnnouncementsDictionary.ContainsKey(e.Server.Id))
|
|
AnnouncementsDictionary.TryAdd(e.Server.Id, new AnnounceControls(e.Server.Id));
|
|
|
|
AnnouncementsDictionary[e.Server.Id].GreetText = e.GetArg("msg");
|
|
await e.Channel.SendMessage("New greet message set.");
|
|
if (!AnnouncementsDictionary[e.Server.Id].Greet)
|
|
await e.Channel.SendMessage("Enable greet messsages by typing `.greet`");
|
|
});
|
|
|
|
cgb.CreateCommand(Module.Prefix + "bye")
|
|
.Description("Enables or Disables anouncements on the current channel when someone leaves the server.")
|
|
.Do(async e =>
|
|
{
|
|
if (!e.User.ServerPermissions.ManageServer) return;
|
|
if (!AnnouncementsDictionary.ContainsKey(e.Server.Id))
|
|
AnnouncementsDictionary.TryAdd(e.Server.Id, new AnnounceControls(e.Server.Id));
|
|
|
|
var controls = AnnouncementsDictionary[e.Server.Id];
|
|
|
|
if (controls.ToggleBye(e.Channel.Id))
|
|
await e.Channel.SendMessage("Bye announcements enabled on this channel.");
|
|
else
|
|
await e.Channel.SendMessage("Bye announcements disabled.");
|
|
});
|
|
|
|
cgb.CreateCommand(Module.Prefix + "byemsg")
|
|
.Description("Sets a new announce leave message. Type %user% if you want to mention the new member.\n**Usage**: .byemsg %user% has left the server.")
|
|
.Parameter("msg", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
if (!e.User.ServerPermissions.ManageServer) return;
|
|
if (e.GetArg("msg") == null) return;
|
|
if (!AnnouncementsDictionary.ContainsKey(e.Server.Id))
|
|
AnnouncementsDictionary.TryAdd(e.Server.Id, new AnnounceControls(e.Server.Id));
|
|
|
|
AnnouncementsDictionary[e.Server.Id].ByeText = e.GetArg("msg");
|
|
await e.Channel.SendMessage("New bye message set.");
|
|
if (!AnnouncementsDictionary[e.Server.Id].Bye)
|
|
await e.Channel.SendMessage("Enable bye messsages by typing `.bye`.");
|
|
});
|
|
|
|
cgb.CreateCommand(Module.Prefix + "byepm")
|
|
.Description("Toggles whether the good bye messages will be sent in a PM or in the text channel.")
|
|
.Do(async e =>
|
|
{
|
|
if (!e.User.ServerPermissions.ManageServer) return;
|
|
if (!AnnouncementsDictionary.ContainsKey(e.Server.Id))
|
|
AnnouncementsDictionary.TryAdd(e.Server.Id, new AnnounceControls(e.Server.Id));
|
|
|
|
AnnouncementsDictionary[e.Server.Id].ToggleByePM();
|
|
if (AnnouncementsDictionary[e.Server.Id].ByePM)
|
|
await e.Channel.SendMessage("Bye messages will be sent in a PM from now on.\n ⚠ Keep in mind this might fail if the user and the bot have no common servers after the user leaves.");
|
|
else
|
|
await e.Channel.SendMessage("Bye messages will be sent in a bound channel from now on.");
|
|
if (!AnnouncementsDictionary[e.Server.Id].Bye)
|
|
await e.Channel.SendMessage("Enable bye messsages by typing `.bye`, and set the bye message using `.byemsg`");
|
|
});
|
|
|
|
cgb.CreateCommand(Module.Prefix + "greetpm")
|
|
.Description("Toggles whether the greet messages will be sent in a PM or in the text channel.")
|
|
.Do(async e =>
|
|
{
|
|
if (!e.User.ServerPermissions.ManageServer) return;
|
|
if (!AnnouncementsDictionary.ContainsKey(e.Server.Id))
|
|
AnnouncementsDictionary.TryAdd(e.Server.Id, new AnnounceControls(e.Server.Id));
|
|
|
|
AnnouncementsDictionary[e.Server.Id].ToggleGreetPM();
|
|
if (AnnouncementsDictionary[e.Server.Id].GreetPM)
|
|
await e.Channel.SendMessage("Greet messages will be sent in a PM from now on.");
|
|
else
|
|
await e.Channel.SendMessage("Greet messages will be sent in a bound channel from now on.");
|
|
if (!AnnouncementsDictionary[e.Server.Id].Greet)
|
|
await e.Channel.SendMessage("Enable greet messsages by typing `.greet`, and set the greet message using `.greetmsg`");
|
|
});
|
|
}
|
|
}
|
|
}
|