2018-03-11 02:10:50 +00:00
|
|
|
|
using Discord.WebSocket;
|
2017-10-16 00:22:21 +00:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-03-10 06:17:55 +00:00
|
|
|
|
namespace Noikoio.RegexBot.Module.ModCommands.Commands
|
2017-10-16 00:22:21 +00:00
|
|
|
|
{
|
2018-03-10 06:17:55 +00:00
|
|
|
|
class Say : Command
|
2017-10-16 00:22:21 +00:00
|
|
|
|
{
|
2018-03-05 01:59:35 +00:00
|
|
|
|
// No configuration at the moment.
|
2017-10-16 00:22:21 +00:00
|
|
|
|
// TODO: Whitelist/blacklist - to limit which channels it can "say" into
|
2018-03-22 06:27:19 +00:00
|
|
|
|
public Say(ModCommands l, string label, JObject conf) : base(l, label, conf) {
|
2018-03-10 07:16:30 +00:00
|
|
|
|
DefaultUsageMsg = $"{this.Trigger} [channel] [message]\n"
|
|
|
|
|
+ "Displays the given message exactly as specified to the given channel.";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Strings
|
|
|
|
|
const string ChannelRequired = ":x: You must specify a channel.";
|
|
|
|
|
const string MessageRequired = ":x: You must specify a message.";
|
|
|
|
|
const string TargetNotFound = ":x: Unable to find given channel.";
|
|
|
|
|
#endregion
|
|
|
|
|
|
2017-10-16 00:22:21 +00:00
|
|
|
|
public override async Task Invoke(SocketGuild g, SocketMessage msg)
|
|
|
|
|
{
|
|
|
|
|
string[] line = msg.Content.Split(new char[] { ' ' }, 3, StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
|
if (line.Length <= 1)
|
|
|
|
|
{
|
2018-03-10 07:16:30 +00:00
|
|
|
|
await SendUsageMessageAsync(msg.Channel, ChannelRequired);
|
2017-10-16 00:22:21 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (line.Length <= 2 || string.IsNullOrWhiteSpace(line[2]))
|
|
|
|
|
{
|
2018-03-10 07:16:30 +00:00
|
|
|
|
await SendUsageMessageAsync(msg.Channel, MessageRequired);
|
2017-10-16 00:22:21 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var ch = GetTextChannelFromString(g, line[1]);
|
2018-03-10 07:16:30 +00:00
|
|
|
|
if (ch == null) await SendUsageMessageAsync(msg.Channel, TargetNotFound);
|
2017-10-16 00:22:21 +00:00
|
|
|
|
await ch.SendMessageAsync(line[2]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private SocketTextChannel GetTextChannelFromString(SocketGuild g, string input)
|
|
|
|
|
{
|
|
|
|
|
// Method 1: Check for channel mention
|
|
|
|
|
// Note: SocketGuild.GetTextChannel(ulong) returns null if no match.
|
|
|
|
|
var m = ChannelMention.Match(input);
|
|
|
|
|
if (m.Success)
|
|
|
|
|
{
|
|
|
|
|
ulong channelId = ulong.Parse(m.Groups["snowflake"].Value);
|
|
|
|
|
return g.GetTextChannel(channelId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Method 2: Check if specified in string, scan manually
|
|
|
|
|
if (input.StartsWith('#'))
|
|
|
|
|
{
|
|
|
|
|
input = input.Substring(1);
|
|
|
|
|
if (input.Length <= 0) return null;
|
|
|
|
|
foreach (var c in g.Channels)
|
|
|
|
|
{
|
|
|
|
|
if (string.Equals(c.Name, input, StringComparison.InvariantCultureIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return c as SocketTextChannel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|