Update time!
This commit is contained in:
parent
58a9c0f842
commit
6a39ece053
35 changed files with 2902 additions and 2892 deletions
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus;
|
||||
using DSharpPlus.CommandsNext;
|
||||
|
@ -8,100 +8,100 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class AddCommand : BaseCommandModule
|
||||
{
|
||||
[Command("add")]
|
||||
[Description("Adds a user to a ticket.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "add"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the add command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class AddCommand : BaseCommandModule
|
||||
{
|
||||
[Command("add")]
|
||||
[Description("Adds a user to a ticket.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "add"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the add command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.IsOpenTicket(command.Channel.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.IsOpenTicket(command.Channel.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
string[] parsedArgs = Utilities.ParseIDs(command.RawArgumentString);
|
||||
foreach (string parsedArg in parsedArgs)
|
||||
{
|
||||
if (!ulong.TryParse(parsedArg, out ulong userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
continue;
|
||||
}
|
||||
string[] parsedArgs = Utilities.ParseIDs(command.RawArgumentString);
|
||||
foreach (string parsedArg in parsedArgs)
|
||||
{
|
||||
if (!ulong.TryParse(parsedArg, out ulong userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
continue;
|
||||
}
|
||||
|
||||
DiscordMember mentionedMember;
|
||||
try
|
||||
{
|
||||
mentionedMember = await command.Guild.GetMemberAsync(userID);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not find user on this server)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
continue;
|
||||
}
|
||||
DiscordMember mentionedMember;
|
||||
try
|
||||
{
|
||||
mentionedMember = await command.Guild.GetMemberAsync(userID);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not find user on this server)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
continue;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
await command.Channel.AddOverwriteAsync(mentionedMember, Permissions.AccessChannels, Permissions.None);
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Added " + mentionedMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
try
|
||||
{
|
||||
await command.Channel.AddOverwriteAsync(mentionedMember, Permissions.AccessChannels, Permissions.None);
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Added " + mentionedMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = mentionedMember.Mention + " was added to " + command.Channel.Mention +
|
||||
" by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Could not add <@" + parsedArg + "> to ticket, unknown error occured."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = mentionedMember.Mention + " was added to " + command.Channel.Mention +
|
||||
" by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Could not add <@" + parsedArg + "> to ticket, unknown error occured."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
using DSharpPlus.Entities;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
@ -10,68 +10,68 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class AddMessageCommand : BaseCommandModule
|
||||
{
|
||||
[Command("addmessage")]
|
||||
[Description("Adds a new message for the 'say' command.")]
|
||||
public async Task OnExecute(CommandContext command, string identifier, [RemainingText] string message)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "addmessage"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the addmessage command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class AddMessageCommand : BaseCommandModule
|
||||
{
|
||||
[Command("addmessage")]
|
||||
[Description("Adds a new message for the 'say' command.")]
|
||||
public async Task OnExecute(CommandContext command, string identifier, [RemainingText] string message)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "addmessage"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the addmessage command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
if (string.IsNullOrEmpty(message))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "No message specified."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (string.IsNullOrEmpty(message))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "No message specified."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (Database.TryGetMessage(identifier.ToLower(), out Database.Message _))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "There is already a message with that identifier."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (Database.TryGetMessage(identifier.ToLower(), out Database.Message _))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "There is already a message with that identifier."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (Database.AddMessage(identifier, command.Member.Id, message))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Message added."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed adding the message to the database."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (Database.AddMessage(identifier, command.Member.Id, message))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Message added."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed adding the message to the database."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
|
@ -9,88 +9,88 @@ using MySql.Data.MySqlClient;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class AddStaffCommand : BaseCommandModule
|
||||
{
|
||||
[Command("addstaff")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "addstaff"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the addstaff command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class AddStaffCommand : BaseCommandModule
|
||||
{
|
||||
[Command("addstaff")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "addstaff"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the addstaff command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
ulong userID;
|
||||
string[] parsedArgs = Utilities.ParseIDs(commandArgs);
|
||||
ulong userID;
|
||||
string[] parsedArgs = Utilities.ParseIDs(commandArgs);
|
||||
|
||||
if (!parsedArgs.Any())
|
||||
{
|
||||
userID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedArgs[0], out userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!parsedArgs.Any())
|
||||
{
|
||||
userID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedArgs[0], out userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
DiscordMember member;
|
||||
try
|
||||
{
|
||||
member = await command.Guild.GetMemberAsync(userID);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not find user on this server)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
DiscordMember member;
|
||||
try
|
||||
{
|
||||
member = await command.Guild.GetMemberAsync(userID);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not find user on this server)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
MySqlCommand cmd = Database.IsStaff(userID) ? new MySqlCommand(@"UPDATE staff SET name = @name WHERE user_id = @user_id", c) : new MySqlCommand(@"INSERT INTO staff (user_id, name) VALUES (@user_id, @name);", c);
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
MySqlCommand cmd = Database.IsStaff(userID) ? new MySqlCommand(@"UPDATE staff SET name = @name WHERE user_id = @user_id", c) : new MySqlCommand(@"INSERT INTO staff (user_id, name) VALUES (@user_id, @name);", c);
|
||||
|
||||
c.Open();
|
||||
cmd.Parameters.AddWithValue("@user_id", userID);
|
||||
cmd.Parameters.AddWithValue("@name", member.DisplayName);
|
||||
cmd.ExecuteNonQuery();
|
||||
cmd.Dispose();
|
||||
c.Open();
|
||||
cmd.Parameters.AddWithValue("@user_id", userID);
|
||||
cmd.Parameters.AddWithValue("@name", member.DisplayName);
|
||||
cmd.ExecuteNonQuery();
|
||||
cmd.Dispose();
|
||||
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = member.Mention + " was added to staff."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = member.Mention + " was added to staff."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = member.Mention + " was added to staff.\n",
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = member.Mention + " was added to staff.\n",
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Linq;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
@ -8,128 +8,128 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class AssignCommand : BaseCommandModule
|
||||
{
|
||||
[Command("assign")]
|
||||
[Description("Assigns a staff member to a ticket.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "assign"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the assign command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class AssignCommand : BaseCommandModule
|
||||
{
|
||||
[Command("assign")]
|
||||
[Description("Assigns a staff member to a ticket.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "assign"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the assign command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
ulong staffID;
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
ulong staffID;
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
|
||||
if (!parsedMessage.Any())
|
||||
{
|
||||
staffID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedMessage[0], out staffID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!parsedMessage.Any())
|
||||
{
|
||||
staffID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedMessage[0], out staffID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
DiscordMember staffMember = null;
|
||||
try
|
||||
{
|
||||
staffMember = await command.Guild.GetMemberAsync(staffID);
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
DiscordMember staffMember = null;
|
||||
try
|
||||
{
|
||||
staffMember = await command.Guild.GetMemberAsync(staffID);
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
|
||||
if (staffMember == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Could not find user."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (staffMember == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Could not find user."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Database.IsStaff(staffMember.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: User is not registered as staff."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!Database.IsStaff(staffMember.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: User is not registered as staff."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Database.AssignStaff(ticket, staffID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed to assign " + staffMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!Database.AssignStaff(ticket, staffID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed to assign " + staffMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
DiscordEmbed feedback = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Assigned " + staffMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(feedback);
|
||||
DiscordEmbed feedback = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Assigned " + staffMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(feedback);
|
||||
|
||||
if (Config.assignmentNotifications)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "You have been assigned to a support ticket: " + command.Channel.Mention
|
||||
};
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (UnauthorizedException) { }
|
||||
if (Config.assignmentNotifications)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "You have been assigned to a support ticket: " + command.Channel.Mention
|
||||
};
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (UnauthorizedException) { }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = staffMember.Mention + " was assigned to " + command.Channel.Mention + " by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = staffMember.Mention + " was assigned to " + command.Channel.Mention + " by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
@ -10,11 +10,11 @@ namespace SupportChild.Commands
|
|||
{
|
||||
public class BlacklistCommand : BaseCommandModule
|
||||
{
|
||||
[Command("balcklist")]
|
||||
[Command("blacklist")]
|
||||
[Description("Blacklists a user from opening tickets.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check is the user has permission to use this command.
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "blacklist"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
|
@ -79,6 +79,7 @@ namespace SupportChild.Commands
|
|||
Color = DiscordColor.Green,
|
||||
Description = blacklistedUser.Mention + " was blacklisted from opening tickets by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
@ -10,109 +10,109 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class CloseCommand : BaseCommandModule
|
||||
{
|
||||
[Command("close")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "close"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the close command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class CloseCommand : BaseCommandModule
|
||||
{
|
||||
[Command("close")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "close"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the close command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
ulong channelID = command.Channel.Id;
|
||||
string channelName = command.Channel.Name;
|
||||
ulong channelID = command.Channel.Id;
|
||||
string channelName = command.Channel.Name;
|
||||
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(channelID, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(channelID, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
// Build transcript
|
||||
try
|
||||
{
|
||||
await Transcriber.ExecuteAsync(command.Channel.Id, ticket.id);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "ERROR: Could not save transcript file. Aborting..."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
throw;
|
||||
}
|
||||
// Build transcript
|
||||
try
|
||||
{
|
||||
await Transcriber.ExecuteAsync(command.Channel.Id, ticket.id);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "ERROR: Could not save transcript file. Aborting..."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
throw;
|
||||
}
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed embed = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticket.id.ToString("00000") + " closed by " + command.Member.Mention + ".\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = '#' + channelName }
|
||||
};
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed embed = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticket.id.ToString("00000") + " closed by " + command.Member.Mention + ".\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = '#' + channelName }
|
||||
};
|
||||
|
||||
using (FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
DiscordMessageBuilder message = new DiscordMessageBuilder();
|
||||
message.WithEmbed(embed);
|
||||
message.WithFiles(new Dictionary<string, Stream>() { { Transcriber.GetFilename(ticket.id), file } });
|
||||
using (FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
DiscordMessageBuilder message = new DiscordMessageBuilder();
|
||||
message.WithEmbed(embed);
|
||||
message.WithFiles(new Dictionary<string, Stream>() { { Transcriber.GetFilename(ticket.id), file } });
|
||||
|
||||
await logChannel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
await logChannel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
|
||||
if (Config.closingNotifications)
|
||||
{
|
||||
DiscordEmbed embed = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticket.id.ToString("00000") + " which you opened has now been closed, check the transcript for more info.\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = '#' + channelName }
|
||||
};
|
||||
if (Config.closingNotifications)
|
||||
{
|
||||
DiscordEmbed embed = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticket.id.ToString("00000") + " which you opened has now been closed, check the transcript for more info.\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = '#' + channelName }
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
DiscordMember staffMember = await command.Guild.GetMemberAsync(ticket.creatorID);
|
||||
try
|
||||
{
|
||||
DiscordMember staffMember = await command.Guild.GetMemberAsync(ticket.creatorID);
|
||||
|
||||
using (FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
DiscordMessageBuilder message = new DiscordMessageBuilder();
|
||||
message.WithEmbed(embed);
|
||||
message.WithFiles(new Dictionary<string, Stream>() { { Transcriber.GetFilename(ticket.id), file } });
|
||||
using (FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
DiscordMessageBuilder message = new DiscordMessageBuilder();
|
||||
message.WithEmbed(embed);
|
||||
message.WithFiles(new Dictionary<string, Stream>() { { Transcriber.GetFilename(ticket.id), file } });
|
||||
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
catch (UnauthorizedException) { }
|
||||
}
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
catch (UnauthorizedException) { }
|
||||
}
|
||||
|
||||
Database.ArchiveTicket(ticket);
|
||||
Database.ArchiveTicket(ticket);
|
||||
|
||||
// Delete the channel and database entry
|
||||
await command.Channel.DeleteAsync("Ticket closed.");
|
||||
// Delete the channel and database entry
|
||||
await command.Channel.DeleteAsync("Ticket closed.");
|
||||
|
||||
Database.DeleteOpenTicket(ticket.id);
|
||||
}
|
||||
}
|
||||
Database.DeleteOpenTicket(ticket.id);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
|
@ -8,69 +8,69 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class ListAssignedCommand : BaseCommandModule
|
||||
{
|
||||
[Command("listassigned")]
|
||||
[Aliases("la")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "listassigned"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the listassigned command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class ListAssignedCommand : BaseCommandModule
|
||||
{
|
||||
[Command("listassigned")]
|
||||
[Aliases("la")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "listassigned"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the listassigned command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
ulong staffID;
|
||||
string[] parsedIDs = Utilities.ParseIDs(command.RawArgumentString);
|
||||
ulong staffID;
|
||||
string[] parsedIDs = Utilities.ParseIDs(command.RawArgumentString);
|
||||
|
||||
if (!parsedIDs.Any())
|
||||
{
|
||||
staffID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedIDs[0], out staffID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!parsedIDs.Any())
|
||||
{
|
||||
staffID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedIDs[0], out staffID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Database.TryGetAssignedTickets(staffID, out List<Database.Ticket> assignedTickets))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("User does not have any assigned tickets.");
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!Database.TryGetAssignedTickets(staffID, out List<Database.Ticket> assignedTickets))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("User does not have any assigned tickets.");
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Ticket ticket in assignedTickets)
|
||||
{
|
||||
listItems.Add("**" + ticket.FormattedCreatedTime() + ":** <#" + ticket.channelID + "> by <@" + ticket.creatorID + ">\n");
|
||||
}
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Ticket ticket in assignedTickets)
|
||||
{
|
||||
listItems.Add("**" + ticket.FormattedCreatedTime() + ":** <#" + ticket.channelID + "> by <@" + ticket.creatorID + ">\n");
|
||||
}
|
||||
|
||||
LinkedList<string> messages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string message in messages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Assigned tickets: ")
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription(message);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
LinkedList<string> messages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string message in messages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Assigned tickets: ")
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription(message);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
|
@ -8,94 +8,94 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class ListCommand : BaseCommandModule
|
||||
{
|
||||
[Command("list")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "list"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the list command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class ListCommand : BaseCommandModule
|
||||
{
|
||||
[Command("list")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "list"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the list command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
ulong userID;
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
ulong userID;
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
|
||||
if (!parsedMessage.Any())
|
||||
{
|
||||
userID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedMessage[0], out userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!parsedMessage.Any())
|
||||
{
|
||||
userID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedMessage[0], out userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (Database.TryGetOpenTickets(userID, out List<Database.Ticket> openTickets))
|
||||
{
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Ticket ticket in openTickets)
|
||||
{
|
||||
listItems.Add("**" + ticket.FormattedCreatedTime() + ":** <#" + ticket.channelID + ">\n");
|
||||
}
|
||||
if (Database.TryGetOpenTickets(userID, out List<Database.Ticket> openTickets))
|
||||
{
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Ticket ticket in openTickets)
|
||||
{
|
||||
listItems.Add("**" + ticket.FormattedCreatedTime() + ":** <#" + ticket.channelID + ">\n");
|
||||
}
|
||||
|
||||
LinkedList<string> messages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string message in messages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Open tickets: ")
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription(message);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription("User does not have any open tickets.");
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
LinkedList<string> messages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string message in messages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Open tickets: ")
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription(message);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription("User does not have any open tickets.");
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
|
||||
if (Database.TryGetClosedTickets(userID, out List<Database.Ticket> closedTickets))
|
||||
{
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Ticket ticket in closedTickets)
|
||||
{
|
||||
listItems.Add("**" + ticket.FormattedCreatedTime() + ":** Ticket " + ticket.id.ToString("00000") + "\n");
|
||||
}
|
||||
if (Database.TryGetClosedTickets(userID, out List<Database.Ticket> closedTickets))
|
||||
{
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Ticket ticket in closedTickets)
|
||||
{
|
||||
listItems.Add("**" + ticket.FormattedCreatedTime() + ":** Ticket " + ticket.id.ToString("00000") + "\n");
|
||||
}
|
||||
|
||||
LinkedList<string> messages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string message in messages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Closed tickets: ")
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription(message);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("User does not have any closed tickets.");
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
LinkedList<string> messages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string message in messages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Closed tickets: ")
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription(message);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("User does not have any closed tickets.");
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
@ -35,7 +35,7 @@ namespace SupportChild.Commands
|
|||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid list amount. (Must be an integer between 5 and 100)"
|
||||
Description = "Invalid list amount. (Must be integer between 5 and 100)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
@ -7,49 +7,49 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class ListUnassignedCommand : BaseCommandModule
|
||||
{
|
||||
[Command("listunassigned")]
|
||||
[Aliases("lu")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "listunassigned"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the listunassigned command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class ListUnassignedCommand : BaseCommandModule
|
||||
{
|
||||
[Command("listunassigned")]
|
||||
[Aliases("lu")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "listunassigned"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the listunassigned command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Database.TryGetAssignedTickets(0, out List<Database.Ticket> unassignedTickets))
|
||||
{
|
||||
DiscordEmbed response = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription("There are no unassigned tickets.");
|
||||
await command.RespondAsync(response);
|
||||
}
|
||||
if (!Database.TryGetAssignedTickets(0, out List<Database.Ticket> unassignedTickets))
|
||||
{
|
||||
DiscordEmbed response = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription("There are no unassigned tickets.");
|
||||
await command.RespondAsync(response);
|
||||
}
|
||||
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Ticket ticket in unassignedTickets)
|
||||
{
|
||||
listItems.Add("**" + ticket.FormattedCreatedTime() + ":** <#" + ticket.channelID + "> by <@" + ticket.creatorID + ">\n");
|
||||
}
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Ticket ticket in unassignedTickets)
|
||||
{
|
||||
listItems.Add("**" + ticket.FormattedCreatedTime() + ":** <#" + ticket.channelID + "> by <@" + ticket.creatorID + ">\n");
|
||||
}
|
||||
|
||||
LinkedList<string> messages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string message in messages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Unassigned tickets: ")
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription(message?.Trim());
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
LinkedList<string> messages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string message in messages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Unassigned tickets: ")
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription(message?.Trim());
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
@ -13,7 +13,7 @@ namespace SupportChild.Commands
|
|||
public class MoveCommand : BaseCommandModule
|
||||
{
|
||||
[Command("move")]
|
||||
[Description("Move a ticket to another category.")]
|
||||
[Description("Moves a ticket to another category.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
|
@ -29,76 +29,76 @@ namespace SupportChild.Commands
|
|||
return;
|
||||
}
|
||||
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (string.IsNullOrEmpty(command.RawArgumentString))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: No category provided."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (string.IsNullOrEmpty(command.RawArgumentString))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: No category provided."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
IReadOnlyList<DiscordChannel> channels = await command.Guild.GetChannelsAsync();
|
||||
IEnumerable<DiscordChannel> categories = channels.Where(x => x.IsCategory);
|
||||
DiscordChannel category = categories.FirstOrDefault(x => x.Name.StartsWith(command.RawArgumentString.Trim(), StringComparison.OrdinalIgnoreCase));
|
||||
IReadOnlyList<DiscordChannel> channels = await command.Guild.GetChannelsAsync();
|
||||
IEnumerable<DiscordChannel> categories = channels.Where(x => x.IsCategory);
|
||||
DiscordChannel category = categories.FirstOrDefault(x => x.Name.StartsWith(command.RawArgumentString.Trim(), StringComparison.OrdinalIgnoreCase));
|
||||
|
||||
if (category == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Could not find a category by that name."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (category == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Could not find a category by that name."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (command.Channel.Id == category.Id)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: The ticket is already in that category."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (command.Channel.Id == category.Id)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: The ticket is already in that category."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
await command.Channel.ModifyAsync(modifiedAttributes => modifiedAttributes.Parent = category);
|
||||
}
|
||||
catch (UnauthorizedException)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Not authorized to move this ticket to that category."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
try
|
||||
{
|
||||
await command.Channel.ModifyAsync(modifiedAttributes => modifiedAttributes.Parent = category);
|
||||
}
|
||||
catch (UnauthorizedException)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Not authorized to move this ticket to that category."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
DiscordEmbed feedback = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket was moved to " + category.Mention
|
||||
};
|
||||
await command.RespondAsync(feedback);
|
||||
}
|
||||
DiscordEmbed feedback = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket was moved to " + category.Mention
|
||||
};
|
||||
await command.RespondAsync(feedback);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus;
|
||||
using DSharpPlus.CommandsNext;
|
||||
|
@ -9,142 +9,142 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class NewCommand : BaseCommandModule
|
||||
{
|
||||
[Command("new")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "new"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the new command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class NewCommand : BaseCommandModule
|
||||
{
|
||||
[Command("new")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "new"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the new command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if user is blacklisted
|
||||
if (Database.IsBlacklisted(command.User.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You are banned from opening tickets."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if user is blacklisted
|
||||
if (Database.IsBlacklisted(command.User.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You are banned from opening tickets."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (Database.IsOpenTicket(command.Channel.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You cannot use this command in a ticket channel."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (Database.IsOpenTicket(command.Channel.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You cannot use this command in a ticket channel."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
DiscordChannel category = command.Guild.GetChannel(Config.ticketCategory);
|
||||
DiscordChannel ticketChannel;
|
||||
DiscordChannel category = command.Guild.GetChannel(Config.ticketCategory);
|
||||
DiscordChannel ticketChannel;
|
||||
|
||||
try
|
||||
{
|
||||
ticketChannel = await command.Guild.CreateChannelAsync("ticket", ChannelType.Text, category);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error occured while creating ticket, " + command.Member.Mention +
|
||||
"!\nIs the channel limit reached in the server or ticket category?"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
try
|
||||
{
|
||||
ticketChannel = await command.Guild.CreateChannelAsync("ticket", ChannelType.Text, category);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error occured while creating ticket, " + command.Member.Mention +
|
||||
"!\nIs the channel limit reached in the server or ticket category?"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (ticketChannel == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error occured while creating ticket, " + command.Member.Mention +
|
||||
"!\nIs the channel limit reached in the server or ticket category?"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (ticketChannel == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error occured while creating ticket, " + command.Member.Mention +
|
||||
"!\nIs the channel limit reached in the server or ticket category?"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
ulong staffID = 0;
|
||||
if (Config.randomAssignment)
|
||||
{
|
||||
staffID = Database.GetRandomActiveStaff(0)?.userID ?? 0;
|
||||
}
|
||||
ulong staffID = 0;
|
||||
if (Config.randomAssignment)
|
||||
{
|
||||
staffID = Database.GetRandomActiveStaff(0)?.userID ?? 0;
|
||||
}
|
||||
|
||||
long id = Database.NewTicket(command.Member.Id, staffID, ticketChannel.Id);
|
||||
string ticketID = id.ToString("00000");
|
||||
await ticketChannel.ModifyAsync(modifiedAttributes => modifiedAttributes.Name = "ticket-" + ticketID);
|
||||
await ticketChannel.AddOverwriteAsync(command.Member, Permissions.AccessChannels, Permissions.None);
|
||||
long id = Database.NewTicket(command.Member.Id, staffID, ticketChannel.Id);
|
||||
string ticketID = id.ToString("00000");
|
||||
await ticketChannel.ModifyAsync(modifiedAttributes => modifiedAttributes.Name = "ticket-" + ticketID);
|
||||
await ticketChannel.AddOverwriteAsync(command.Member, Permissions.AccessChannels, Permissions.None);
|
||||
|
||||
await ticketChannel.SendMessageAsync("Hello, " + command.Member.Mention + "!\n" + Config.welcomeMessage);
|
||||
await ticketChannel.SendMessageAsync("Hello, " + command.Member.Mention + "!\n" + Config.welcomeMessage);
|
||||
|
||||
// Refreshes the channel as changes were made to it above
|
||||
ticketChannel = command.Guild.GetChannel(ticketChannel.Id);
|
||||
// Refreshes the channel as changes were made to it above
|
||||
ticketChannel = command.Guild.GetChannel(ticketChannel.Id);
|
||||
|
||||
if (staffID != 0)
|
||||
{
|
||||
DiscordEmbed assignmentMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket was randomly assigned to <@" + staffID + ">."
|
||||
};
|
||||
await ticketChannel.SendMessageAsync(assignmentMessage);
|
||||
if (staffID != 0)
|
||||
{
|
||||
DiscordEmbed assignmentMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket was randomly assigned to <@" + staffID + ">."
|
||||
};
|
||||
await ticketChannel.SendMessageAsync(assignmentMessage);
|
||||
|
||||
if (Config.assignmentNotifications)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "You have been randomly assigned to a newly opened support ticket: " +
|
||||
ticketChannel.Mention
|
||||
};
|
||||
if (Config.assignmentNotifications)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "You have been randomly assigned to a newly opened support ticket: " +
|
||||
ticketChannel.Mention
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
DiscordMember staffMember = await command.Guild.GetMemberAsync(staffID);
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
catch (UnauthorizedException) { }
|
||||
}
|
||||
}
|
||||
try
|
||||
{
|
||||
DiscordMember staffMember = await command.Guild.GetMemberAsync(staffID);
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
catch (UnauthorizedException) { }
|
||||
}
|
||||
}
|
||||
|
||||
DiscordEmbed response = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket opened, " + command.Member.Mention + "!\n" + ticketChannel.Mention
|
||||
};
|
||||
await command.RespondAsync(response);
|
||||
DiscordEmbed response = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket opened, " + command.Member.Mention + "!\n" + ticketChannel.Mention
|
||||
};
|
||||
await command.RespondAsync(response);
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticketChannel.Mention + " opened by " + command.Member.Mention + ".\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = "Ticket " + ticketID }
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticketChannel.Mention + " opened by " + command.Member.Mention + ".\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = "Ticket " + ticketID }
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
@ -10,173 +10,173 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class RandomAssignCommand : BaseCommandModule
|
||||
{
|
||||
[Command("rassign")]
|
||||
[Description("Randomly assigns a staff member to a ticket.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArguments)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "rassign"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the rassign command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class RandomAssignCommand : BaseCommandModule
|
||||
{
|
||||
[Command("rassign")]
|
||||
[Description("Randomly assigns a staff member to a ticket.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArguments)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "rassign"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the rassign command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
// Get a random staff member who is verified to have the correct role if applicable
|
||||
DiscordMember staffMember = await GetRandomVerifiedStaffMember(command, ticket);
|
||||
if (staffMember == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
// Get a random staff member who is verified to have the correct role if applicable
|
||||
DiscordMember staffMember = await GetRandomVerifiedStaffMember(command, ticket);
|
||||
if (staffMember == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Attempt to assign the staff member to the ticket
|
||||
if (!Database.AssignStaff(ticket, staffMember.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed to assign " + staffMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Attempt to assign the staff member to the ticket
|
||||
if (!Database.AssignStaff(ticket, staffMember.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed to assign " + staffMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
// Respond that the command was successful
|
||||
DiscordEmbed feedback = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Randomly assigned " + staffMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(feedback);
|
||||
// Respond that the command was successful
|
||||
DiscordEmbed feedback = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Randomly assigned " + staffMember.Mention + " to ticket."
|
||||
};
|
||||
await command.RespondAsync(feedback);
|
||||
|
||||
// Send a notification to the staff member if applicable
|
||||
if (Config.assignmentNotifications)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "You have been randomly assigned to a support ticket: " + command.Channel.Mention
|
||||
};
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (UnauthorizedException) { }
|
||||
}
|
||||
// Send a notification to the staff member if applicable
|
||||
if (Config.assignmentNotifications)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "You have been randomly assigned to a support ticket: " + command.Channel.Mention
|
||||
};
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (UnauthorizedException) { }
|
||||
}
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = staffMember.Mention + " was assigned to " + command.Channel.Mention + " by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = staffMember.Mention + " was assigned to " + command.Channel.Mention + " by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
|
||||
private async Task<DiscordMember> GetRandomVerifiedStaffMember(CommandContext command, Database.Ticket ticket)
|
||||
{
|
||||
if (command.RawArguments.Any()) // An argument was provided, check if this can be parsed into a role
|
||||
{
|
||||
ulong roleID = 0;
|
||||
private async Task<DiscordMember> GetRandomVerifiedStaffMember(CommandContext command, Database.Ticket ticket)
|
||||
{
|
||||
if (command.RawArguments.Any()) // An argument was provided, check if this can be parsed into a role
|
||||
{
|
||||
ulong roleID = 0;
|
||||
|
||||
// Try to parse either discord mention or ID
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
if (!ulong.TryParse(parsedMessage[0], out roleID))
|
||||
{
|
||||
// Try to find role by name
|
||||
roleID = Utilities.GetRoleByName(command.Guild, command.RawArgumentString)?.Id ?? 0;
|
||||
}
|
||||
// Try to parse either discord mention or ID
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
if (!ulong.TryParse(parsedMessage[0], out roleID))
|
||||
{
|
||||
// Try to find role by name
|
||||
roleID = Utilities.GetRoleByName(command.Guild, command.RawArgumentString)?.Id ?? 0;
|
||||
}
|
||||
|
||||
// Check if a role was found
|
||||
if (roleID == 0)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Could not find a role by that name/ID."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return null;
|
||||
}
|
||||
// Check if a role was found
|
||||
if (roleID == 0)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Could not find a role by that name/ID."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return null;
|
||||
}
|
||||
|
||||
// Check if role rassign should override staff's active status
|
||||
List<Database.StaffMember> staffMembers = Config.randomAssignRoleOverride
|
||||
? Database.GetAllStaff(ticket.assignedStaffID)
|
||||
: Database.GetActiveStaff(ticket.assignedStaffID);
|
||||
// Check if role rassign should override staff's active status
|
||||
List<Database.StaffMember> staffMembers = Config.randomAssignRoleOverride
|
||||
? Database.GetAllStaff(ticket.assignedStaffID)
|
||||
: Database.GetActiveStaff(ticket.assignedStaffID);
|
||||
|
||||
// Randomize the list before checking for roles in order to reduce number of API calls
|
||||
staffMembers = Utilities.RandomizeList(staffMembers);
|
||||
// Randomize the list before checking for roles in order to reduce number of API calls
|
||||
staffMembers = Utilities.RandomizeList(staffMembers);
|
||||
|
||||
// Get the first staff member that has the role
|
||||
foreach (Database.StaffMember sm in staffMembers)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordMember verifiedMember = await command.Guild.GetMemberAsync(sm.userID);
|
||||
if (verifiedMember?.Roles?.Any(role => role.Id == roleID) ?? false)
|
||||
{
|
||||
return verifiedMember;
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
command.Client.Logger.Log(LogLevel.Information, e, "Error occured trying to find a staff member in the rassign command.");
|
||||
}
|
||||
}
|
||||
}
|
||||
else // No role was specified, any active staff will be picked
|
||||
{
|
||||
Database.StaffMember staffEntry = Database.GetRandomActiveStaff(ticket.assignedStaffID);
|
||||
if (staffEntry == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: There are no other staff members to choose from."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return null;
|
||||
}
|
||||
// Get the first staff member that has the role
|
||||
foreach (Database.StaffMember sm in staffMembers)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordMember verifiedMember = await command.Guild.GetMemberAsync(sm.userID);
|
||||
if (verifiedMember?.Roles?.Any(role => role.Id == roleID) ?? false)
|
||||
{
|
||||
return verifiedMember;
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
command.Client.Logger.Log(LogLevel.Information, e, "Error occured trying to find a staff member in the rassign command.");
|
||||
}
|
||||
}
|
||||
}
|
||||
else // No role was specified, any active staff will be picked
|
||||
{
|
||||
Database.StaffMember staffEntry = Database.GetRandomActiveStaff(ticket.assignedStaffID);
|
||||
if (staffEntry == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: There are no other staff members to choose from."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return null;
|
||||
}
|
||||
|
||||
// Get the staff member from discord
|
||||
try
|
||||
{
|
||||
return await command.Guild.GetMemberAsync(staffEntry.userID);
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
}
|
||||
// Get the staff member from discord
|
||||
try
|
||||
{
|
||||
return await command.Guild.GetMemberAsync(staffEntry.userID);
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
}
|
||||
|
||||
// Send a more generic error if we get to this point and still haven't found the staff member
|
||||
DiscordEmbed err = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Could not find an applicable staff member."
|
||||
};
|
||||
await command.RespondAsync(err);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
// Send a more generic error if we get to this point and still haven't found the staff member
|
||||
DiscordEmbed err = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Could not find an applicable staff member."
|
||||
};
|
||||
await command.RespondAsync(err);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
@ -12,27 +12,27 @@ namespace SupportChild.Commands
|
|||
[Command("reload")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "reload"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the reload command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "reload"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the reload command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Reloading bot application..."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
Console.WriteLine("Reloading bot...");
|
||||
SupportChild.instance.Reload();
|
||||
}
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Reloading bot application..."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
Console.WriteLine("Reloading bot...");
|
||||
SupportChild.instance.Reload();
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
using DSharpPlus.Entities;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
@ -10,57 +10,57 @@ using System.Threading.Tasks;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class RemoveMessageCommand : BaseCommandModule
|
||||
{
|
||||
[Command("removemessage")]
|
||||
[Description("Removes a message from the 'say' command.")]
|
||||
public async Task OnExecute(CommandContext command, string identifier)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "removemessage"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the removemessage command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class RemoveMessageCommand : BaseCommandModule
|
||||
{
|
||||
[Command("removemessage")]
|
||||
[Description("Removes a message from the 'say' command.")]
|
||||
public async Task OnExecute(CommandContext command, string identifier)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "removemessage"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the removemessage command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Database.TryGetMessage(identifier.ToLower(), out Database.Message _))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "There is no message with that identifier."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!Database.TryGetMessage(identifier.ToLower(), out Database.Message _))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "There is no message with that identifier."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (Database.RemoveMessage(identifier))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Message removed."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed removing the message from the database."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (Database.RemoveMessage(identifier))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Message removed."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed removing the message from the database."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
|
@ -9,96 +9,96 @@ using MySql.Data.MySqlClient;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class RemoveStaffCommand : BaseCommandModule
|
||||
{
|
||||
[Command("removestaff")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "removestaff"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the removestaff command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class RemoveStaffCommand : BaseCommandModule
|
||||
{
|
||||
[Command("removestaff")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "removestaff"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the removestaff command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
ulong userID;
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
ulong userID;
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
|
||||
if (!parsedMessage.Any())
|
||||
{
|
||||
userID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedMessage[0], out userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!parsedMessage.Any())
|
||||
{
|
||||
userID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedMessage[0], out userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
await command.Client.GetUserAsync(userID);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not find user on Discord)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
try
|
||||
{
|
||||
await command.Client.GetUserAsync(userID);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not find user on Discord)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Database.IsStaff(userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "User is already not registered as staff."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!Database.IsStaff(userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "User is already not registered as staff."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
c.Open();
|
||||
MySqlCommand deletion = new MySqlCommand(@"DELETE FROM staff WHERE user_id=@user_id", c);
|
||||
deletion.Parameters.AddWithValue("@user_id", userID);
|
||||
deletion.Prepare();
|
||||
deletion.ExecuteNonQuery();
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
c.Open();
|
||||
MySqlCommand deletion = new MySqlCommand(@"DELETE FROM staff WHERE user_id=@user_id", c);
|
||||
deletion.Parameters.AddWithValue("@user_id", userID);
|
||||
deletion.Prepare();
|
||||
deletion.ExecuteNonQuery();
|
||||
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "User was removed from staff."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "User was removed from staff."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "User was removed from staff.\n",
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "User was removed from staff.\n",
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
using DSharpPlus.Entities;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
@ -11,7 +11,7 @@ namespace SupportChild.Commands
|
|||
public class SayCommand : BaseCommandModule
|
||||
{
|
||||
[Command("say")]
|
||||
[Cooldown(1, 2, CooldownBucketType.User)]
|
||||
[Cooldown(1, 2, CooldownBucketType.Channel)]
|
||||
[Description("Prints a message with information from staff.")]
|
||||
public async Task OnExecute(CommandContext command, string identifier)
|
||||
{
|
||||
|
@ -47,50 +47,50 @@ namespace SupportChild.Commands
|
|||
await command.RespondAsync(reply);
|
||||
}
|
||||
|
||||
[Command("say")]
|
||||
[Cooldown(1, 2.0, CooldownBucketType.Channel)]
|
||||
[Description("Prints a list of staff messages.")]
|
||||
public async Task OnExecute(CommandContext command)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "say"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the say command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
[Command("say")]
|
||||
[Cooldown(1, 2.0, CooldownBucketType.Channel)]
|
||||
[Description("Prints a list of staff messages.")]
|
||||
public async Task OnExecute(CommandContext command)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "say"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the say command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
List<Database.Message> messages = Database.GetAllMessages();
|
||||
if (!messages.Any())
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("There are no messages registered.");
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
List<Database.Message> messages = Database.GetAllMessages();
|
||||
if (!messages.Any())
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("There are no messages registered.");
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Message message in messages)
|
||||
{
|
||||
listItems.Add("**" + message.identifier + "** Added by <@" + message.userID + ">\n");
|
||||
}
|
||||
List<string> listItems = new List<string>();
|
||||
foreach (Database.Message message in messages)
|
||||
{
|
||||
listItems.Add("**" + message.identifier + "** Added by <@" + message.userID + ">\n");
|
||||
}
|
||||
|
||||
LinkedList<string> listMessages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string listMessage in listMessages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Available messages: ")
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription(listMessage);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
LinkedList<string> listMessages = Utilities.ParseListIntoMessages(listItems);
|
||||
foreach (string listMessage in listMessages)
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Available messages: ")
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription(listMessage);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Threading.Tasks;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
using DSharpPlus.Entities;
|
||||
|
@ -13,51 +13,51 @@ namespace SupportChild.Commands
|
|||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "setsummary"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the setsummary command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
ulong channelID = command.Channel.Id;
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "setsummary"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the setsummary command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
string sumarry = command.Message.Content.Replace(Config.prefix + "setsummary", "").Trim();
|
||||
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
ulong channelID = command.Channel.Id;
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
c.Open();
|
||||
MySqlCommand update = new MySqlCommand(@"UPDATE tickets SET summary = @summary WHERE channel_id = @channel_id", c);
|
||||
update.Parameters.AddWithValue("@summary", sumarry);
|
||||
update.Parameters.AddWithValue("@channel_id", channelID);
|
||||
update.Prepare();
|
||||
update.ExecuteNonQuery();
|
||||
update.Dispose();
|
||||
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Summary set."
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
string summary = command.Message.Content.Replace(Config.prefix + "setsummary", "").Trim();
|
||||
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
c.Open();
|
||||
MySqlCommand update = new MySqlCommand(@"UPDATE tickets SET summary = @summary WHERE channel_id = @channel_id", c);
|
||||
update.Parameters.AddWithValue("@summary", summary);
|
||||
update.Parameters.AddWithValue("@channel_id", channelID);
|
||||
update.Prepare();
|
||||
update.ExecuteNonQuery();
|
||||
update.Dispose();
|
||||
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Summary set."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Linq;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
@ -8,91 +8,91 @@ using MySql.Data.MySqlClient;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class SetTicketCommand : BaseCommandModule
|
||||
{
|
||||
[Command("setticket")]
|
||||
[Description("Turns a channel into a ticket, warning: this will let anyone with write access delete the channel using the close command.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "setticket"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the setticket command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class SetTicketCommand : BaseCommandModule
|
||||
{
|
||||
[Command("setticket")]
|
||||
[Description("Turns a channel into a ticket, warning: this will let anyone with write access delete the channel using the close command.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "setticket"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the setticket command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if ticket exists in the database
|
||||
if (Database.IsOpenTicket(command.Channel.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is already a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database
|
||||
if (Database.IsOpenTicket(command.Channel.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is already a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
ulong userID;
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
ulong userID;
|
||||
string[] parsedMessage = Utilities.ParseIDs(command.RawArgumentString);
|
||||
|
||||
if (!parsedMessage.Any())
|
||||
{
|
||||
userID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedMessage[0], out userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!parsedMessage.Any())
|
||||
{
|
||||
userID = command.Member.Id;
|
||||
}
|
||||
else if (!ulong.TryParse(parsedMessage[0], out userID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention. (Could not convert to numerical)"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
DiscordUser user = await command.Client.GetUserAsync(userID);
|
||||
DiscordUser user = await command.Client.GetUserAsync(userID);
|
||||
|
||||
if (user == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (user == null)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Invalid ID/Mention."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
long id = Database.NewTicket(userID, 0, command.Channel.Id);
|
||||
string ticketID = id.ToString("00000");
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Channel has been designated ticket " + ticketID + "."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
long id = Database.NewTicket(userID, 0, command.Channel.Id);
|
||||
string ticketID = id.ToString("00000");
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Channel has been designated ticket " + ticketID + "."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = command.Channel.Mention + " has been designated ticket " + ticketID + " by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = command.Channel.Mention + " has been designated ticket " + ticketID + " by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Threading.Tasks;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
using DSharpPlus.Entities;
|
||||
|
@ -6,36 +6,36 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class StatusCommand : BaseCommandModule
|
||||
{
|
||||
[Command("status")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "status"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the status command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class StatusCommand : BaseCommandModule
|
||||
{
|
||||
[Command("status")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "status"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the status command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
long openTickets = Database.GetNumberOfTickets();
|
||||
long closedTickets = Database.GetNumberOfClosedTickets();
|
||||
long openTickets = Database.GetNumberOfTickets();
|
||||
long closedTickets = Database.GetNumberOfClosedTickets();
|
||||
|
||||
DiscordEmbed botInfo = new DiscordEmbedBuilder()
|
||||
.WithAuthor("EmotionChild/SupportChild @ GitHub", "https://github.com/EmotionChild/SupportChild", "https://cdn.discordapp.com/attachments/765441543100170271/919729931922051072/Ellise_Concept_2.png")
|
||||
.WithTitle("Bot information")
|
||||
.WithColor(DiscordColor.Cyan)
|
||||
.AddField("Version:", SupportChild.GetVersion(), false)
|
||||
.AddField("Open tickets:", openTickets + "", true)
|
||||
.AddField("Closed tickets (1.1.0+ tickets only):", closedTickets + " ", true);
|
||||
await command.RespondAsync(botInfo);
|
||||
}
|
||||
}
|
||||
DiscordEmbed botInfo = new DiscordEmbedBuilder()
|
||||
.WithAuthor("EmotionChild/SupportChild @ GitHub", "https://github.com/EmotionChild/SupportChild", "https://cdn.emotionchild.com/Ellie.png")
|
||||
.WithTitle("Bot information")
|
||||
.WithColor(DiscordColor.Cyan)
|
||||
.AddField("Version:", SupportChild.GetVersion(), false)
|
||||
.AddField("Open tickets:", openTickets + "", true)
|
||||
.AddField("Closed tickets (1.1.0+ tickets only):", closedTickets + " ", true);
|
||||
await command.RespondAsync(botInfo);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Threading.Tasks;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
using DSharpPlus.Entities;
|
||||
|
@ -6,46 +6,46 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class SummaryCommand : BaseCommandModule
|
||||
{
|
||||
[Command("summary")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "summary"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the summary command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class SummaryCommand : BaseCommandModule
|
||||
{
|
||||
[Command("summary")]
|
||||
[Cooldown(1, 5, CooldownBucketType.User)]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "summary"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the summary command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
if (Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Channel information")
|
||||
.WithColor(DiscordColor.Cyan)
|
||||
.AddField("Ticket number:", ticket.id.ToString(), true)
|
||||
.AddField("Ticket creator:", $"<@{ticket.creatorID}>", true)
|
||||
.AddField("Assigned staff:", ticket.assignedStaffID == 0 ? "Unassigned." : $"<@{ticket.assignedStaffID}>", true)
|
||||
.AddField("Creation time:", ticket.createdTime.ToString(Config.timestampFormat), true)
|
||||
.AddField("Summary:", string.IsNullOrEmpty(ticket.summary) ? "No summary." : ticket.summary, false);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed channelInfo = new DiscordEmbedBuilder()
|
||||
.WithTitle("Channel information")
|
||||
.WithColor(DiscordColor.Cyan)
|
||||
.AddField("Ticket number:", ticket.id.ToString(), true)
|
||||
.AddField("Ticket creator:", $"<@{ticket.creatorID}>", true)
|
||||
.AddField("Assigned staff:", ticket.assignedStaffID == 0 ? "Unassigned." : $"<@{ticket.assignedStaffID}>", true)
|
||||
.AddField("Creation time:", ticket.createdTime.ToString(Config.timestampFormat), true)
|
||||
.AddField("Summary:", string.IsNullOrEmpty(ticket.summary) ? "No summary." : ticket.summary, false);
|
||||
await command.RespondAsync(channelInfo);
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Linq;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
@ -68,7 +68,7 @@ namespace SupportChild.Commands
|
|||
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Color = DiscordColor.Green,
|
||||
Description = staffMember.active ? "Staff member is now set as inactive and will no longer be randomly assigned any support tickets." : "Staff member is now set as active and will be randomly assigned support tickets again."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
@ -25,148 +25,148 @@ namespace SupportChild.Commands
|
|||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the transcript but did not have permission.");
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the transcript command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
Database.Ticket ticket;
|
||||
string strippedMessage = command.Message.Content.Replace(Config.prefix, "");
|
||||
string[] parsedMessage = strippedMessage.Replace("<@!", "").Replace("<@", "").Replace(">", "").Split();
|
||||
Database.Ticket ticket;
|
||||
string strippedMessage = command.Message.Content.Replace(Config.prefix, "");
|
||||
string[] parsedMessage = strippedMessage.Replace("<@!", "").Replace("<@", "").Replace(">", "").Split();
|
||||
|
||||
// If there are no arguments use current channel
|
||||
if (parsedMessage.Length < 2)
|
||||
{
|
||||
if (Database.TryGetOpenTicket(command.Channel.Id, out ticket))
|
||||
{
|
||||
try
|
||||
{
|
||||
await Transcriber.ExecuteAsync(command.Channel.Id, ticket.id);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "ERROR: Could not save transcript file. Aborting..."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Check if argument is numerical, if not abort
|
||||
if (!uint.TryParse(parsedMessage[1], out uint ticketID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Argument must be a number."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// If there are no arguments use current channel
|
||||
if (parsedMessage.Length < 2)
|
||||
{
|
||||
if (Database.TryGetOpenTicket(command.Channel.Id, out ticket))
|
||||
{
|
||||
try
|
||||
{
|
||||
await Transcriber.ExecuteAsync(command.Channel.Id, ticket.id);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "ERROR: Could not save transcript file. Aborting..."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Check if argument is numerical, if not abort
|
||||
if (!uint.TryParse(parsedMessage[1], out uint ticketID))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Argument must be a number."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
// If the ticket is still open, generate a new fresh transcript
|
||||
if (Database.TryGetOpenTicketByID(ticketID, out ticket) && ticket?.creatorID == command.Member.Id)
|
||||
{
|
||||
try
|
||||
{
|
||||
await Transcriber.ExecuteAsync(command.Channel.Id, ticket.id);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "ERROR: Could not save transcript file. Aborting..."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
throw;
|
||||
}
|
||||
// If the ticket is still open, generate a new fresh transcript
|
||||
if (Database.TryGetOpenTicketByID(ticketID, out ticket) && ticket?.creatorID == command.Member.Id)
|
||||
{
|
||||
try
|
||||
{
|
||||
await Transcriber.ExecuteAsync(command.Channel.Id, ticket.id);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "ERROR: Could not save transcript file. Aborting..."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
throw;
|
||||
}
|
||||
|
||||
}
|
||||
// If there is no open or closed ticket, send an error. If there is a closed ticket we will simply use the old transcript from when the ticket was closed.
|
||||
else if (!Database.TryGetClosedTicket(ticketID, out ticket) || (ticket?.creatorID != command.Member.Id && !Database.IsStaff(command.Member.Id)))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Could not find a closed ticket with that number which you opened." + (Config.HasPermission(command.Member, "list") ? "\n(Use the " + Config.prefix + "list command to see all your tickets)" : "")
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
// If there is no open or closed ticket, send an error. If there is a closed ticket we will simply use the old transcript from when the ticket was closed.
|
||||
else if (!Database.TryGetClosedTicket(ticketID, out ticket) || ticket?.creatorID != command.Member.Id && !Database.IsStaff(command.Member.Id))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Could not find a closed ticket with that number which you opened." + (Config.HasPermission(command.Member, "list") ? "\n(Use the " + Config.prefix + "list command to see all your tickets)" : "")
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed embed = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticket.id.ToString("00000") + " transcript generated by " + command.Member.Mention + ".\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = '#' + command.Channel.Name }
|
||||
};
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed embed = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticket.id.ToString("00000") + " transcript generated by " + command.Member.Mention + ".\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = '#' + command.Channel.Name }
|
||||
};
|
||||
|
||||
using (FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
DiscordMessageBuilder message = new DiscordMessageBuilder();
|
||||
message.WithEmbed(embed);
|
||||
message.WithFiles(new Dictionary<string, Stream>() { { Transcriber.GetFilename(ticket.id), file } });
|
||||
using (FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
DiscordMessageBuilder message = new DiscordMessageBuilder();
|
||||
message.WithEmbed(embed);
|
||||
message.WithFiles(new Dictionary<string, Stream>() { { Transcriber.GetFilename(ticket.id), file } });
|
||||
|
||||
await logChannel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
await logChannel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
// Send transcript privately
|
||||
DiscordEmbed directMessageEmbed = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Transcript generated, " + command.Member.Mention + "!\n"
|
||||
};
|
||||
try
|
||||
{
|
||||
// Send transcript privately
|
||||
DiscordEmbed directMessageEmbed = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Transcript generated, " + command.Member.Mention + "!\n"
|
||||
};
|
||||
|
||||
using (FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
DiscordMessageBuilder directMessage = new DiscordMessageBuilder();
|
||||
directMessage.WithEmbed(directMessageEmbed);
|
||||
directMessage.WithFiles(new Dictionary<string, Stream>() { { Transcriber.GetFilename(ticket.id), file } });
|
||||
using (FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read))
|
||||
{
|
||||
DiscordMessageBuilder directMessage = new DiscordMessageBuilder();
|
||||
directMessage.WithEmbed(directMessageEmbed);
|
||||
directMessage.WithFiles(new Dictionary<string, Stream>() { { Transcriber.GetFilename(ticket.id), file } });
|
||||
|
||||
await command.Member.SendMessageAsync(directMessage);
|
||||
}
|
||||
await command.Member.SendMessageAsync(directMessage);
|
||||
}
|
||||
|
||||
// Respond to message directly
|
||||
DiscordEmbed response = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Transcript sent, " + command.Member.Mention + "!\n"
|
||||
};
|
||||
await command.RespondAsync(response);
|
||||
}
|
||||
catch (UnauthorizedException)
|
||||
{
|
||||
// Send transcript privately
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Not allowed to send direct message to you, " + command.Member.Mention + ", please check your privacy settings.\n"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
}
|
||||
}
|
||||
// Respond to message directly
|
||||
DiscordEmbed response = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Transcript sent, " + command.Member.Mention + "!\n"
|
||||
};
|
||||
await command.RespondAsync(response);
|
||||
}
|
||||
catch (UnauthorizedException)
|
||||
{
|
||||
// Send transcript privately
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Not allowed to send direct message to you, " + command.Member.Mention + ", please check your privacy settings.\n"
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System.Threading.Tasks;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
using DSharpPlus.Entities;
|
||||
|
@ -11,61 +11,61 @@ namespace SupportChild.Commands
|
|||
[Command("unassign")]
|
||||
[Description("Unassigns a staff member from a ticket.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "unassign"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the unassign command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "unassign"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the unassign command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Database.UnassignStaff(ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed to unassign staff from ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
if (!Database.UnassignStaff(ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error: Failed to unassign staff from ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Unassigned staff from ticket."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Unassigned staff from ticket."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Staff was unassigned from " + command.Channel.Mention + " by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Staff was unassigned from " + command.Channel.Mention + " by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
|
@ -11,7 +11,7 @@ namespace SupportChild.Commands
|
|||
public class UnblacklistCommand : BaseCommandModule
|
||||
{
|
||||
[Command("unblacklist")]
|
||||
[Description("Un-blacklists a user from from opening tickets.")]
|
||||
[Description("Un-blacklists a user from opening tickets.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
|
@ -84,7 +84,7 @@ namespace SupportChild.Commands
|
|||
}
|
||||
catch (Exception)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder()
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Error occured while removing " + blacklistedUser.Mention + " from blacklist."
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System.Threading.Tasks;
|
||||
using System.Threading.Tasks;
|
||||
using DSharpPlus.CommandsNext;
|
||||
using DSharpPlus.CommandsNext.Attributes;
|
||||
using DSharpPlus.Entities;
|
||||
|
@ -7,64 +7,64 @@ using MySql.Data.MySqlClient;
|
|||
|
||||
namespace SupportChild.Commands
|
||||
{
|
||||
public class UnsetTicketCommand : BaseCommandModule
|
||||
{
|
||||
[Command("unsetticket")]
|
||||
[Description(
|
||||
"Deletes a channel from the ticket system without deleting the channel.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "unsetticket"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the unsetticket command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
public class UnsetTicketCommand : BaseCommandModule
|
||||
{
|
||||
[Command("unsetticket")]
|
||||
[Description(
|
||||
"Deletes a channel from the ticket system without deleting the channel.")]
|
||||
public async Task OnExecute(CommandContext command, [RemainingText] string commandArgs)
|
||||
{
|
||||
using (MySqlConnection c = Database.GetConnection())
|
||||
{
|
||||
// Check if the user has permission to use this command.
|
||||
if (!Config.HasPermission(command.Member, "unsetticket"))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "You do not have permission to use this command."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
command.Client.Logger.Log(LogLevel.Information, "User tried to use the unsetticket command but did not have permission.");
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database
|
||||
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket ticket))
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "This channel is not a ticket."
|
||||
};
|
||||
await command.RespondAsync(error);
|
||||
return;
|
||||
}
|
||||
|
||||
c.Open();
|
||||
MySqlCommand deletion = new MySqlCommand(@"DELETE FROM tickets WHERE channel_id=@channel_id", c);
|
||||
deletion.Parameters.AddWithValue("@channel_id", command.Channel.Id);
|
||||
deletion.Prepare();
|
||||
deletion.ExecuteNonQuery();
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Channel has been undesignated as a ticket."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
c.Open();
|
||||
MySqlCommand deletion = new MySqlCommand(@"DELETE FROM tickets WHERE channel_id=@channel_id", c);
|
||||
deletion.Parameters.AddWithValue("@channel_id", command.Channel.Id);
|
||||
deletion.Prepare();
|
||||
deletion.ExecuteNonQuery();
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Channel has been undesignated as a ticket."
|
||||
};
|
||||
await command.RespondAsync(message);
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = command.Channel.Mention + " has been undesignated as a ticket by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = command.Channel.Mention + " has been undesignated as a ticket by " + command.Member.Mention + "."
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
@ -10,134 +10,134 @@ using YamlDotNet.Serialization;
|
|||
|
||||
namespace SupportChild
|
||||
{
|
||||
internal static class Config
|
||||
{
|
||||
internal static string token = "";
|
||||
internal static string prefix = "";
|
||||
internal static ulong logChannel;
|
||||
internal static ulong ticketCategory;
|
||||
internal static ulong reactionMessage;
|
||||
internal static string welcomeMessage = "";
|
||||
internal static string logLevel = "Information";
|
||||
internal static string timestampFormat = "yyyy-MMM-dd HH:mm";
|
||||
internal static bool randomAssignment = false;
|
||||
internal static bool randomAssignRoleOverride = false; // TODO: Implement
|
||||
internal static string presenceType = "Playing";
|
||||
internal static string presenceText = "";
|
||||
internal static class Config
|
||||
{
|
||||
internal static string token = "";
|
||||
internal static string prefix = "";
|
||||
internal static ulong logChannel;
|
||||
internal static ulong ticketCategory;
|
||||
internal static ulong reactionMessage;
|
||||
internal static string welcomeMessage = "";
|
||||
internal static string logLevel = "Information";
|
||||
internal static string timestampFormat = "yyyy-MMM-dd HH:mm";
|
||||
internal static bool randomAssignment = false;
|
||||
internal static bool randomAssignRoleOverride = false; // TODO: Implement
|
||||
internal static string presenceType = "Playing";
|
||||
internal static string presenceText = "";
|
||||
|
||||
internal static bool ticketUpdatedNotifications = false;
|
||||
internal static double ticketUpdatedNotificationDelay = 0.0;
|
||||
internal static bool assignmentNotifications = false;
|
||||
internal static bool closingNotifications = false;
|
||||
internal static bool ticketUpdatedNotifications = false;
|
||||
internal static double ticketUpdatedNotificationDelay = 0.0;
|
||||
internal static bool assignmentNotifications = false;
|
||||
internal static bool closingNotifications = false;
|
||||
|
||||
internal static string hostName = "127.0.0.1";
|
||||
internal static int port = 3306;
|
||||
internal static string database = "supportbot";
|
||||
internal static string username = "supportbot";
|
||||
internal static string password = "";
|
||||
internal static string hostName = "127.0.0.1";
|
||||
internal static int port = 3306;
|
||||
internal static string database = "supportbot";
|
||||
internal static string username = "supportbot";
|
||||
internal static string password = "";
|
||||
|
||||
private static readonly Dictionary<string, ulong[]> permissions = new Dictionary<string, ulong[]>
|
||||
{
|
||||
private static readonly Dictionary<string, ulong[]> permissions = new Dictionary<string, ulong[]>
|
||||
{
|
||||
// Public commands
|
||||
{ "close", new ulong[]{ } },
|
||||
{ "list", new ulong[]{ } },
|
||||
{ "new", new ulong[]{ } },
|
||||
{ "say", new ulong[]{ } },
|
||||
{ "status", new ulong[]{ } },
|
||||
{ "summary", new ulong[]{ } },
|
||||
{ "transcript", new ulong[]{ } },
|
||||
{ "close", new ulong[]{ } },
|
||||
{ "list", new ulong[]{ } },
|
||||
{ "new", new ulong[]{ } },
|
||||
{ "say", new ulong[]{ } },
|
||||
{ "status", new ulong[]{ } },
|
||||
{ "summary", new ulong[]{ } },
|
||||
{ "transcript", new ulong[]{ } },
|
||||
// Moderator commands
|
||||
{ "add", new ulong[]{ } },
|
||||
{ "addmessage", new ulong[]{ } },
|
||||
{ "assign", new ulong[]{ } },
|
||||
{ "blacklist", new ulong[]{ } },
|
||||
{ "listassigned", new ulong[]{ } },
|
||||
{ "listoldest", new ulong[]{ } },
|
||||
{ "listunassigned", new ulong[]{ } },
|
||||
{ "move", new ulong[]{ } },
|
||||
{ "rassign", new ulong[]{ } },
|
||||
{ "removemessage", new ulong[]{ } },
|
||||
{ "setsummary", new ulong[]{ } },
|
||||
{ "toggleactive", new ulong[]{ } },
|
||||
{ "unassign", new ulong[]{ } },
|
||||
{ "unblacklist", new ulong[]{ } },
|
||||
{ "add", new ulong[]{ } },
|
||||
{ "addmessage", new ulong[]{ } },
|
||||
{ "assign", new ulong[]{ } },
|
||||
{ "blacklist", new ulong[]{ } },
|
||||
{ "listassigned", new ulong[]{ } },
|
||||
{ "listoldest", new ulong[]{ } },
|
||||
{ "listunassigned", new ulong[]{ } },
|
||||
{ "move", new ulong[]{ } },
|
||||
{ "rassign", new ulong[]{ } },
|
||||
{ "removemessage", new ulong[]{ } },
|
||||
{ "setsummary", new ulong[]{ } },
|
||||
{ "toggleactive", new ulong[]{ } },
|
||||
{ "unassign", new ulong[]{ } },
|
||||
{ "unblacklist", new ulong[]{ } },
|
||||
// Admin commands
|
||||
{ "addstaff", new ulong[]{ } },
|
||||
{ "reload", new ulong[]{ } },
|
||||
{ "removestaff", new ulong[]{ } },
|
||||
{ "setticket", new ulong[]{ } },
|
||||
{ "unsetticket", new ulong[]{ } },
|
||||
};
|
||||
{ "addstaff", new ulong[]{ } },
|
||||
{ "reload", new ulong[]{ } },
|
||||
{ "removestaff", new ulong[]{ } },
|
||||
{ "setticket", new ulong[]{ } },
|
||||
{ "unsetticket", new ulong[]{ } },
|
||||
};
|
||||
|
||||
public static void LoadConfig()
|
||||
{
|
||||
// Writes default config to file if it does not already exist
|
||||
if (!File.Exists("./config.yml"))
|
||||
{
|
||||
File.WriteAllText("./config.yml", Encoding.UTF8.GetString(Resources.default_config));
|
||||
}
|
||||
public static void LoadConfig()
|
||||
{
|
||||
// Writes default config to file if it does not already exist
|
||||
if (!File.Exists("./config.yml"))
|
||||
{
|
||||
File.WriteAllText("./config.yml", Encoding.UTF8.GetString(Resources.default_config));
|
||||
}
|
||||
|
||||
// Reads config contents into FileStream
|
||||
FileStream stream = File.OpenRead("./config.yml");
|
||||
// Reads config contents into FileStream
|
||||
FileStream stream = File.OpenRead("./config.yml");
|
||||
|
||||
// Converts the FileStream into a YAML object
|
||||
IDeserializer deserializer = new DeserializerBuilder().Build();
|
||||
object yamlObject = deserializer.Deserialize(new StreamReader(stream));
|
||||
// Converts the FileStream into a YAML object
|
||||
IDeserializer deserializer = new DeserializerBuilder().Build();
|
||||
object yamlObject = deserializer.Deserialize(new StreamReader(stream));
|
||||
|
||||
// Converts the YAML object into a JSON object as the YAML ones do not support traversal or selection of nodes by name
|
||||
ISerializer serializer = new SerializerBuilder().JsonCompatible().Build();
|
||||
JObject json = JObject.Parse(serializer.Serialize(yamlObject));
|
||||
// Converts the YAML object into a JSON object as the YAML ones do not support traversal or selection of nodes by name
|
||||
ISerializer serializer = new SerializerBuilder().JsonCompatible().Build();
|
||||
JObject json = JObject.Parse(serializer.Serialize(yamlObject));
|
||||
|
||||
// Sets up the bot
|
||||
token = json.SelectToken("bot.token").Value<string>() ?? "";
|
||||
prefix = json.SelectToken("bot.prefix").Value<string>() ?? "";
|
||||
logChannel = json.SelectToken("bot.log-channel").Value<ulong>();
|
||||
ticketCategory = json.SelectToken("bot.ticket-category")?.Value<ulong>() ?? 0;
|
||||
reactionMessage = json.SelectToken("bot.reaction-message")?.Value<ulong>() ?? 0;
|
||||
welcomeMessage = json.SelectToken("bot.welcome-message").Value<string>() ?? "";
|
||||
logLevel = json.SelectToken("bot.console-log-level").Value<string>() ?? "";
|
||||
timestampFormat = json.SelectToken("bot.timestamp-format").Value<string>() ?? "yyyy-MM-dd HH:mm";
|
||||
randomAssignment = json.SelectToken("bot.random-assignment")?.Value<bool>() ?? false;
|
||||
randomAssignRoleOverride = json.SelectToken("bot.random-assign-role-override")?.Value<bool>() ?? false;
|
||||
presenceType = json.SelectToken("bot.presence-type")?.Value<string>() ?? "Playing";
|
||||
presenceText = json.SelectToken("bot.presence-text")?.Value<string>() ?? "";
|
||||
// Sets up the bot
|
||||
token = json.SelectToken("bot.token").Value<string>() ?? "";
|
||||
prefix = json.SelectToken("bot.prefix").Value<string>() ?? "";
|
||||
logChannel = json.SelectToken("bot.log-channel").Value<ulong>();
|
||||
ticketCategory = json.SelectToken("bot.ticket-category")?.Value<ulong>() ?? 0;
|
||||
reactionMessage = json.SelectToken("bot.reaction-message")?.Value<ulong>() ?? 0;
|
||||
welcomeMessage = json.SelectToken("bot.welcome-message").Value<string>() ?? "";
|
||||
logLevel = json.SelectToken("bot.console-log-level").Value<string>() ?? "";
|
||||
timestampFormat = json.SelectToken("bot.timestamp-format").Value<string>() ?? "yyyy-MM-dd HH:mm";
|
||||
randomAssignment = json.SelectToken("bot.random-assignment")?.Value<bool>() ?? false;
|
||||
randomAssignRoleOverride = json.SelectToken("bot.random-assign-role-override")?.Value<bool>() ?? false;
|
||||
presenceType = json.SelectToken("bot.presence-type")?.Value<string>() ?? "Playing";
|
||||
presenceText = json.SelectToken("bot.presence-text")?.Value<string>() ?? "";
|
||||
|
||||
ticketUpdatedNotifications = json.SelectToken("notifications.ticket-updated")?.Value<bool>() ?? false;
|
||||
ticketUpdatedNotificationDelay = json.SelectToken("notifications.ticket-updated-delay")?.Value<double>() ?? 0.0;
|
||||
assignmentNotifications = json.SelectToken("notifications.assignment")?.Value<bool>() ?? false;
|
||||
closingNotifications = json.SelectToken("notifications.closing")?.Value<bool>() ?? false;
|
||||
ticketUpdatedNotifications = json.SelectToken("notifications.ticket-updated")?.Value<bool>() ?? false;
|
||||
ticketUpdatedNotificationDelay = json.SelectToken("notifications.ticket-updated-delay")?.Value<double>() ?? 0.0;
|
||||
assignmentNotifications = json.SelectToken("notifications.assignment")?.Value<bool>() ?? false;
|
||||
closingNotifications = json.SelectToken("notifications.closing")?.Value<bool>() ?? false;
|
||||
|
||||
// Reads database info
|
||||
hostName = json.SelectToken("database.address")?.Value<string>() ?? "";
|
||||
port = json.SelectToken("database.port")?.Value<int>() ?? 3306;
|
||||
database = json.SelectToken("database.name")?.Value<string>() ?? "supportbot";
|
||||
username = json.SelectToken("database.user")?.Value<string>() ?? "supportbot";
|
||||
password = json.SelectToken("database.password")?.Value<string>() ?? "";
|
||||
// Reads database info
|
||||
hostName = json.SelectToken("database.address")?.Value<string>() ?? "";
|
||||
port = json.SelectToken("database.port")?.Value<int>() ?? 3306;
|
||||
database = json.SelectToken("database.name")?.Value<string>() ?? "supportbot";
|
||||
username = json.SelectToken("database.user")?.Value<string>() ?? "supportbot";
|
||||
password = json.SelectToken("database.password")?.Value<string>() ?? "";
|
||||
|
||||
timestampFormat = timestampFormat.Trim();
|
||||
timestampFormat = timestampFormat.Trim();
|
||||
|
||||
foreach (KeyValuePair<string, ulong[]> node in permissions.ToList())
|
||||
{
|
||||
try
|
||||
{
|
||||
permissions[node.Key] = json.SelectToken("permissions." + node.Key).Value<JArray>().Values<ulong>().ToArray();
|
||||
}
|
||||
catch (ArgumentNullException)
|
||||
{
|
||||
Console.WriteLine("Permission node '" + node.Key + "' was not found in the config, using default value: []");
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach (KeyValuePair<string, ulong[]> node in permissions.ToList())
|
||||
{
|
||||
try
|
||||
{
|
||||
permissions[node.Key] = json.SelectToken("permissions." + node.Key).Value<JArray>().Values<ulong>().ToArray();
|
||||
}
|
||||
catch (ArgumentNullException)
|
||||
{
|
||||
Console.WriteLine("Permission node '" + node.Key + "' was not found in the config, using default value: []");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Checks whether a user has a specific permission.
|
||||
/// </summary>
|
||||
/// <param name="member">The Discord user to check.</param>
|
||||
/// <param name="permission">The permission name to check.</param>
|
||||
/// <returns></returns>
|
||||
public static bool HasPermission(DiscordMember member, string permission)
|
||||
{
|
||||
return member.Roles.Any(role => permissions[permission].Contains(role.Id)) || permissions[permission].Contains(member.Guild.Id);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Checks whether a user has a specific permission.
|
||||
/// </summary>
|
||||
/// <param name="member">The Discord user to check.</param>
|
||||
/// <param name="permission">The permission name to check.</param>
|
||||
/// <returns></returns>
|
||||
public static bool HasPermission(DiscordMember member, string permission)
|
||||
{
|
||||
return member.Roles.Any(role => permissions[permission].Contains(role.Id)) || permissions[permission].Contains(member.Guild.Id);
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
|
@ -12,296 +12,296 @@ using Microsoft.Extensions.Logging;
|
|||
|
||||
namespace SupportChild
|
||||
{
|
||||
internal class EventHandler
|
||||
{
|
||||
private DiscordClient discordClient;
|
||||
internal class EventHandler
|
||||
{
|
||||
private DiscordClient discordClient;
|
||||
|
||||
//DateTime for the end of the cooldown
|
||||
private static Dictionary<ulong, DateTime> reactionTicketCooldowns = new Dictionary<ulong, DateTime>();
|
||||
//DateTime for the end of the cooldown
|
||||
private static Dictionary<ulong, DateTime> reactionTicketCooldowns = new Dictionary<ulong, DateTime>();
|
||||
|
||||
public EventHandler(DiscordClient client)
|
||||
{
|
||||
this.discordClient = client;
|
||||
}
|
||||
public EventHandler(DiscordClient client)
|
||||
{
|
||||
discordClient = client;
|
||||
}
|
||||
|
||||
internal Task OnReady(DiscordClient client, ReadyEventArgs e)
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Information, "Client is ready to process events.");
|
||||
internal Task OnReady(DiscordClient client, ReadyEventArgs e)
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Information, "Client is ready to process events.");
|
||||
|
||||
// Checking activity type
|
||||
if (!Enum.TryParse(Config.presenceType, true, out ActivityType activityType))
|
||||
{
|
||||
Console.WriteLine("Presence type '" + Config.presenceType + "' invalid, using 'Playing' instead.");
|
||||
activityType = ActivityType.Playing;
|
||||
}
|
||||
// Checking activity type
|
||||
if (!Enum.TryParse(Config.presenceType, true, out ActivityType activityType))
|
||||
{
|
||||
Console.WriteLine("Presence type '" + Config.presenceType + "' invalid, using 'Playing' instead.");
|
||||
activityType = ActivityType.Playing;
|
||||
}
|
||||
|
||||
this.discordClient.UpdateStatusAsync(new DiscordActivity(Config.presenceText, activityType), UserStatus.Online);
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
discordClient.UpdateStatusAsync(new DiscordActivity(Config.presenceText, activityType), UserStatus.Online);
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
internal Task OnGuildAvailable(DiscordClient client, GuildCreateEventArgs e)
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Information, $"Guild available: {e.Guild.Name}");
|
||||
internal Task OnGuildAvailable(DiscordClient client, GuildCreateEventArgs e)
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Information, $"Guild available: {e.Guild.Name}");
|
||||
|
||||
IReadOnlyDictionary<ulong, DiscordRole> roles = e.Guild.Roles;
|
||||
IReadOnlyDictionary<ulong, DiscordRole> roles = e.Guild.Roles;
|
||||
|
||||
foreach ((ulong roleID, DiscordRole role) in roles)
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Information, role.Name.PadRight(40, '.') + roleID);
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
foreach ((ulong roleID, DiscordRole role) in roles)
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Information, role.Name.PadRight(40, '.') + roleID);
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
internal Task OnClientError(DiscordClient client, ClientErrorEventArgs e)
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Error, $"Exception occured: {e.Exception.GetType()}: {e.Exception}");
|
||||
internal Task OnClientError(DiscordClient client, ClientErrorEventArgs e)
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Error, $"Exception occured: {e.Exception.GetType()}: {e.Exception}");
|
||||
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
internal async Task OnMessageCreated(DiscordClient client, MessageCreateEventArgs e)
|
||||
{
|
||||
if (e.Author.IsBot)
|
||||
{
|
||||
return;
|
||||
}
|
||||
internal async Task OnMessageCreated(DiscordClient client, MessageCreateEventArgs e)
|
||||
{
|
||||
if (e.Author.IsBot)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if ticket exists in the database and ticket notifications are enabled
|
||||
if (!Database.TryGetOpenTicket(e.Channel.Id, out Database.Ticket ticket) || !Config.ticketUpdatedNotifications)
|
||||
{
|
||||
return;
|
||||
}
|
||||
// Check if ticket exists in the database and ticket notifications are enabled
|
||||
if (!Database.TryGetOpenTicket(e.Channel.Id, out Database.Ticket ticket) || !Config.ticketUpdatedNotifications)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
// Sends a DM to the assigned staff member if at least a day has gone by since the last message and the user sending the message isn't staff
|
||||
IReadOnlyList<DiscordMessage> messages = await e.Channel.GetMessagesAsync(2);
|
||||
if (messages.Count > 1 && messages[1].Timestamp < DateTimeOffset.UtcNow.AddDays(Config.ticketUpdatedNotificationDelay * -1) && !Database.IsStaff(e.Author.Id))
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "A ticket you are assigned to has been updated: " + e.Channel.Mention
|
||||
};
|
||||
// Sends a DM to the assigned staff member if at least a day has gone by since the last message and the user sending the message isn't staff
|
||||
IReadOnlyList<DiscordMessage> messages = await e.Channel.GetMessagesAsync(2);
|
||||
if (messages.Count > 1 && messages[1].Timestamp < DateTimeOffset.UtcNow.AddDays(Config.ticketUpdatedNotificationDelay * -1) && !Database.IsStaff(e.Author.Id))
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "A ticket you are assigned to has been updated: " + e.Channel.Mention
|
||||
};
|
||||
|
||||
DiscordMember staffMember = await e.Guild.GetMemberAsync(ticket.assignedStaffID);
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
catch (UnauthorizedException) { }
|
||||
}
|
||||
}
|
||||
DiscordMember staffMember = await e.Guild.GetMemberAsync(ticket.assignedStaffID);
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (NotFoundException) { }
|
||||
catch (UnauthorizedException) { }
|
||||
}
|
||||
}
|
||||
|
||||
internal Task OnCommandError(CommandsNextExtension commandSystem, CommandErrorEventArgs e)
|
||||
{
|
||||
switch (e.Exception)
|
||||
{
|
||||
case CommandNotFoundException _:
|
||||
return Task.CompletedTask;
|
||||
case ChecksFailedException _:
|
||||
{
|
||||
foreach (CheckBaseAttribute attr in ((ChecksFailedException)e.Exception).FailedChecks)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = this.ParseFailedCheck(attr)
|
||||
};
|
||||
e.Context?.Channel?.SendMessageAsync(error);
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
internal Task OnCommandError(CommandsNextExtension commandSystem, CommandErrorEventArgs e)
|
||||
{
|
||||
switch (e.Exception)
|
||||
{
|
||||
case CommandNotFoundException _:
|
||||
return Task.CompletedTask;
|
||||
case ChecksFailedException _:
|
||||
{
|
||||
foreach (CheckBaseAttribute attr in ((ChecksFailedException)e.Exception).FailedChecks)
|
||||
{
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = ParseFailedCheck(attr)
|
||||
};
|
||||
e.Context?.Channel?.SendMessageAsync(error);
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
default:
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Error, $"Exception occured: {e.Exception.GetType()}: {e.Exception}");
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Internal error occured, please report this to the developer."
|
||||
};
|
||||
e.Context?.Channel?.SendMessageAsync(error);
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
}
|
||||
}
|
||||
default:
|
||||
{
|
||||
discordClient.Logger.Log(LogLevel.Error, $"Exception occured: {e.Exception.GetType()}: {e.Exception}");
|
||||
DiscordEmbed error = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Red,
|
||||
Description = "Internal error occured, please report this to the developer."
|
||||
};
|
||||
e.Context?.Channel?.SendMessageAsync(error);
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal async Task OnReactionAdded(DiscordClient client, MessageReactionAddEventArgs e)
|
||||
{
|
||||
if (e.Message.Id != Config.reactionMessage) return;
|
||||
internal async Task OnReactionAdded(DiscordClient client, MessageReactionAddEventArgs e)
|
||||
{
|
||||
if (e.Message.Id != Config.reactionMessage) return;
|
||||
|
||||
DiscordGuild guild = e.Message.Channel.Guild;
|
||||
DiscordMember member = await guild.GetMemberAsync(e.User.Id);
|
||||
DiscordGuild guild = e.Message.Channel.Guild;
|
||||
DiscordMember member = await guild.GetMemberAsync(e.User.Id);
|
||||
|
||||
if (!Config.HasPermission(member, "new") || Database.IsBlacklisted(member.Id)) return;
|
||||
if (reactionTicketCooldowns.ContainsKey(member.Id))
|
||||
{
|
||||
if (reactionTicketCooldowns[member.Id] > DateTime.Now) return; // cooldown has not expired
|
||||
else reactionTicketCooldowns.Remove(member.Id); // cooldown exists but has expired, delete it
|
||||
}
|
||||
if (!Config.HasPermission(member, "new") || Database.IsBlacklisted(member.Id)) return;
|
||||
if (reactionTicketCooldowns.ContainsKey(member.Id))
|
||||
{
|
||||
if (reactionTicketCooldowns[member.Id] > DateTime.Now) return; // cooldown has not expired
|
||||
else reactionTicketCooldowns.Remove(member.Id); // cooldown exists but has expired, delete it
|
||||
}
|
||||
|
||||
|
||||
DiscordChannel category = guild.GetChannel(Config.ticketCategory);
|
||||
DiscordChannel ticketChannel = await guild.CreateChannelAsync("ticket", ChannelType.Text, category);
|
||||
DiscordChannel category = guild.GetChannel(Config.ticketCategory);
|
||||
DiscordChannel ticketChannel = await guild.CreateChannelAsync("ticket", ChannelType.Text, category);
|
||||
|
||||
if (ticketChannel == null) return;
|
||||
if (ticketChannel == null) return;
|
||||
|
||||
ulong staffID = 0;
|
||||
if (Config.randomAssignment)
|
||||
{
|
||||
staffID = Database.GetRandomActiveStaff(0)?.userID ?? 0;
|
||||
}
|
||||
ulong staffID = 0;
|
||||
if (Config.randomAssignment)
|
||||
{
|
||||
staffID = Database.GetRandomActiveStaff(0)?.userID ?? 0;
|
||||
}
|
||||
|
||||
long id = Database.NewTicket(member.Id, staffID, ticketChannel.Id);
|
||||
reactionTicketCooldowns.Add(member.Id, DateTime.Now.AddSeconds(10)); // add a cooldown which expires in 10 seconds
|
||||
string ticketID = id.ToString("00000");
|
||||
long id = Database.NewTicket(member.Id, staffID, ticketChannel.Id);
|
||||
reactionTicketCooldowns.Add(member.Id, DateTime.Now.AddSeconds(10)); // add a cooldown which expires in 10 seconds
|
||||
string ticketID = id.ToString("00000");
|
||||
|
||||
await ticketChannel.ModifyAsync(model => model.Name = "ticket-" + ticketID);
|
||||
await ticketChannel.AddOverwriteAsync(member, Permissions.AccessChannels, Permissions.None);
|
||||
await ticketChannel.SendMessageAsync("Hello, " + member.Mention + "!\n" + Config.welcomeMessage);
|
||||
await ticketChannel.ModifyAsync(model => model.Name = "ticket-" + ticketID);
|
||||
await ticketChannel.AddOverwriteAsync(member, Permissions.AccessChannels, Permissions.None);
|
||||
await ticketChannel.SendMessageAsync("Hello, " + member.Mention + "!\n" + Config.welcomeMessage);
|
||||
|
||||
// Remove user's reaction
|
||||
await e.Message.DeleteReactionAsync(e.Emoji, e.User);
|
||||
// Remove user's reaction
|
||||
await e.Message.DeleteReactionAsync(e.Emoji, e.User);
|
||||
|
||||
// Refreshes the channel as changes were made to it above
|
||||
ticketChannel = await SupportChild.GetClient().GetChannelAsync(ticketChannel.Id);
|
||||
// Refreshes the channel as changes were made to it above
|
||||
ticketChannel = await SupportChild.GetClient().GetChannelAsync(ticketChannel.Id);
|
||||
|
||||
if (staffID != 0)
|
||||
{
|
||||
DiscordEmbed assignmentMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket was randomly assigned to <@" + staffID + ">."
|
||||
};
|
||||
await ticketChannel.SendMessageAsync(assignmentMessage);
|
||||
if (staffID != 0)
|
||||
{
|
||||
DiscordEmbed assignmentMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket was randomly assigned to <@" + staffID + ">."
|
||||
};
|
||||
await ticketChannel.SendMessageAsync(assignmentMessage);
|
||||
|
||||
if (Config.assignmentNotifications)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "You have been randomly assigned to a newly opened support ticket: " +
|
||||
ticketChannel.Mention
|
||||
};
|
||||
if (Config.assignmentNotifications)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "You have been randomly assigned to a newly opened support ticket: " +
|
||||
ticketChannel.Mention
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
DiscordMember staffMember = await guild.GetMemberAsync(staffID);
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (NotFoundException)
|
||||
{
|
||||
}
|
||||
catch (UnauthorizedException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
try
|
||||
{
|
||||
DiscordMember staffMember = await guild.GetMemberAsync(staffID);
|
||||
await staffMember.SendMessageAsync(message);
|
||||
}
|
||||
catch (NotFoundException)
|
||||
{
|
||||
}
|
||||
catch (UnauthorizedException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticketChannel.Mention + " opened by " + member.Mention + ".\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = "Ticket " + ticketID }
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
// Log it if the log channel exists
|
||||
DiscordChannel logChannel = guild.GetChannel(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
DiscordEmbed logMessage = new DiscordEmbedBuilder
|
||||
{
|
||||
Color = DiscordColor.Green,
|
||||
Description = "Ticket " + ticketChannel.Mention + " opened by " + member.Mention + ".\n",
|
||||
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = "Ticket " + ticketID }
|
||||
};
|
||||
await logChannel.SendMessageAsync(logMessage);
|
||||
}
|
||||
}
|
||||
|
||||
internal async Task OnMemberAdded(DiscordClient client, GuildMemberAddEventArgs e)
|
||||
{
|
||||
if (!Database.TryGetOpenTickets(e.Member.Id, out List<Database.Ticket> ownTickets))
|
||||
{
|
||||
return;
|
||||
}
|
||||
internal async Task OnMemberAdded(DiscordClient client, GuildMemberAddEventArgs e)
|
||||
{
|
||||
if (!Database.TryGetOpenTickets(e.Member.Id, out List<Database.Ticket> ownTickets))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (Database.Ticket ticket in ownTickets)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordChannel channel = await client.GetChannelAsync(ticket.channelID);
|
||||
if (channel?.GuildId == e.Guild.Id)
|
||||
{
|
||||
await channel.AddOverwriteAsync(e.Member, Permissions.AccessChannels, Permissions.None);
|
||||
DiscordEmbed message = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription("User '" + e.Member.Username + "#" + e.Member.Discriminator + "' has rejoined the server, and has been re-added to the ticket.");
|
||||
await channel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
catch (Exception) { }
|
||||
}
|
||||
}
|
||||
foreach (Database.Ticket ticket in ownTickets)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordChannel channel = await client.GetChannelAsync(ticket.channelID);
|
||||
if (channel?.GuildId == e.Guild.Id)
|
||||
{
|
||||
await channel.AddOverwriteAsync(e.Member, Permissions.AccessChannels, Permissions.None);
|
||||
DiscordEmbed message = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Green)
|
||||
.WithDescription("User '" + e.Member.Username + "#" + e.Member.Discriminator + "' has rejoined the server, and has been re-added to the ticket.");
|
||||
await channel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
catch (Exception) { }
|
||||
}
|
||||
}
|
||||
|
||||
internal async Task OnMemberRemoved(DiscordClient client, GuildMemberRemoveEventArgs e)
|
||||
{
|
||||
if (Database.TryGetOpenTickets(e.Member.Id, out List<Database.Ticket> ownTickets))
|
||||
{
|
||||
foreach (Database.Ticket ticket in ownTickets)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordChannel channel = await client.GetChannelAsync(ticket.channelID);
|
||||
if (channel?.GuildId == e.Guild.Id)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("User '" + e.Member.Username + "#" + e.Member.Discriminator + "' has left the server.");
|
||||
await channel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
catch (Exception) { }
|
||||
}
|
||||
}
|
||||
internal async Task OnMemberRemoved(DiscordClient client, GuildMemberRemoveEventArgs e)
|
||||
{
|
||||
if (Database.TryGetOpenTickets(e.Member.Id, out List<Database.Ticket> ownTickets))
|
||||
{
|
||||
foreach (Database.Ticket ticket in ownTickets)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordChannel channel = await client.GetChannelAsync(ticket.channelID);
|
||||
if (channel?.GuildId == e.Guild.Id)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("User '" + e.Member.Username + "#" + e.Member.Discriminator + "' has left the server.");
|
||||
await channel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
catch (Exception) { }
|
||||
}
|
||||
}
|
||||
|
||||
if (Database.TryGetAssignedTickets(e.Member.Id, out List<Database.Ticket> assignedTickets) && Config.logChannel != 0)
|
||||
{
|
||||
DiscordChannel logChannel = await client.GetChannelAsync(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
if (Database.TryGetAssignedTickets(e.Member.Id, out List<Database.Ticket> assignedTickets) && Config.logChannel != 0)
|
||||
{
|
||||
DiscordChannel logChannel = await client.GetChannelAsync(Config.logChannel);
|
||||
if (logChannel != null)
|
||||
{
|
||||
|
||||
foreach (Database.Ticket ticket in assignedTickets)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordChannel channel = await client.GetChannelAsync(ticket.channelID);
|
||||
if (channel?.GuildId == e.Guild.Id)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("Assigned staff member '" + e.Member.Username + "#" + e.Member.Discriminator + "' has left the server: <#" + channel.Id + ">");
|
||||
await logChannel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
catch (Exception) { }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
foreach (Database.Ticket ticket in assignedTickets)
|
||||
{
|
||||
try
|
||||
{
|
||||
DiscordChannel channel = await client.GetChannelAsync(ticket.channelID);
|
||||
if (channel?.GuildId == e.Guild.Id)
|
||||
{
|
||||
DiscordEmbed message = new DiscordEmbedBuilder()
|
||||
.WithColor(DiscordColor.Red)
|
||||
.WithDescription("Assigned staff member '" + e.Member.Username + "#" + e.Member.Discriminator + "' has left the server: <#" + channel.Id + ">");
|
||||
await logChannel.SendMessageAsync(message);
|
||||
}
|
||||
}
|
||||
catch (Exception) { }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private string ParseFailedCheck(CheckBaseAttribute attr)
|
||||
{
|
||||
switch (attr)
|
||||
{
|
||||
case CooldownAttribute _:
|
||||
return "You cannot use do that so often!";
|
||||
case RequireOwnerAttribute _:
|
||||
return "Only the server owner can use that command!";
|
||||
case RequirePermissionsAttribute _:
|
||||
return "You don't have permission to do that!";
|
||||
case RequireRolesAttribute _:
|
||||
return "You do not have a required role!";
|
||||
case RequireUserPermissionsAttribute _:
|
||||
return "You don't have permission to do that!";
|
||||
case RequireNsfwAttribute _:
|
||||
return "This command can only be used in an NSFW channel!";
|
||||
default:
|
||||
return "Unknown Discord API error occured, please try again later.";
|
||||
}
|
||||
}
|
||||
}
|
||||
private string ParseFailedCheck(CheckBaseAttribute attr)
|
||||
{
|
||||
switch (attr)
|
||||
{
|
||||
case CooldownAttribute _:
|
||||
return "You cannot use do that so often!";
|
||||
case RequireOwnerAttribute _:
|
||||
return "Only the server owner can use that command!";
|
||||
case RequirePermissionsAttribute _:
|
||||
return "You don't have permission to do that!";
|
||||
case RequireRolesAttribute _:
|
||||
return "You do not have a required role!";
|
||||
case RequireUserPermissionsAttribute _:
|
||||
return "You don't have permission to do that!";
|
||||
case RequireNsfwAttribute _:
|
||||
return "This command can only be used in an NSFW channel!";
|
||||
default:
|
||||
return "Unknown Discord API error occured, please try again later.";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -53,6 +53,7 @@
|
|||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
|
|
|
@ -9,155 +9,155 @@ using SupportChild.Commands;
|
|||
|
||||
namespace SupportChild
|
||||
{
|
||||
internal class SupportChild
|
||||
{
|
||||
internal static SupportChild instance;
|
||||
internal class SupportChild
|
||||
{
|
||||
internal static SupportChild instance;
|
||||
|
||||
private DiscordClient discordClient = null;
|
||||
private CommandsNextExtension commands = null;
|
||||
private EventHandler eventHandler;
|
||||
private DiscordClient discordClient = null;
|
||||
private CommandsNextExtension commands = null;
|
||||
private EventHandler eventHandler;
|
||||
|
||||
static void Main(string[] args)
|
||||
{
|
||||
new SupportChild().MainAsync().GetAwaiter().GetResult();
|
||||
}
|
||||
static void Main(string[] args)
|
||||
{
|
||||
new SupportChild().MainAsync().GetAwaiter().GetResult();
|
||||
}
|
||||
|
||||
private async Task MainAsync()
|
||||
{
|
||||
instance = this;
|
||||
private async Task MainAsync()
|
||||
{
|
||||
instance = this;
|
||||
|
||||
Console.WriteLine("Starting SupportChild version " + GetVersion() + "...");
|
||||
try
|
||||
{
|
||||
this.Reload();
|
||||
Console.WriteLine("Starting SupportChild version " + GetVersion() + "...");
|
||||
try
|
||||
{
|
||||
Reload();
|
||||
|
||||
// Block this task until the program is closed.
|
||||
await Task.Delay(-1);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine("Fatal error:");
|
||||
Console.WriteLine(e);
|
||||
Console.ReadLine();
|
||||
}
|
||||
}
|
||||
// Block this task until the program is closed.
|
||||
await Task.Delay(-1);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine("Fatal error:");
|
||||
Console.WriteLine(e);
|
||||
Console.ReadLine();
|
||||
}
|
||||
}
|
||||
|
||||
public static DiscordClient GetClient()
|
||||
{
|
||||
return instance.discordClient;
|
||||
}
|
||||
public static DiscordClient GetClient()
|
||||
{
|
||||
return instance.discordClient;
|
||||
}
|
||||
|
||||
public static string GetVersion()
|
||||
{
|
||||
Version version = Assembly.GetEntryAssembly()?.GetName().Version;
|
||||
return version?.Major + "." + version?.Minor + "." + version?.Build + (version?.Revision == 0 ? "" : "-" + (char)(64 + version?.Revision ?? 0));
|
||||
}
|
||||
public static string GetVersion()
|
||||
{
|
||||
Version version = Assembly.GetEntryAssembly()?.GetName().Version;
|
||||
return version?.Major + "." + version?.Minor + "." + version?.Build + (version?.Revision == 0 ? "" : "-" + (char)(64 + version?.Revision ?? 0));
|
||||
}
|
||||
|
||||
public async void Reload()
|
||||
{
|
||||
if (this.discordClient != null)
|
||||
{
|
||||
await this.discordClient.DisconnectAsync();
|
||||
this.discordClient.Dispose();
|
||||
Console.WriteLine("Discord client disconnected.");
|
||||
}
|
||||
public async void Reload()
|
||||
{
|
||||
if (discordClient != null)
|
||||
{
|
||||
await discordClient.DisconnectAsync();
|
||||
discordClient.Dispose();
|
||||
Console.WriteLine("Discord client disconnected.");
|
||||
}
|
||||
|
||||
Console.WriteLine("Loading config \"" + Directory.GetCurrentDirectory() + Path.DirectorySeparatorChar + "config.yml\"");
|
||||
Config.LoadConfig();
|
||||
Console.WriteLine("Loading config \"" + Directory.GetCurrentDirectory() + Path.DirectorySeparatorChar + "config.yml\"");
|
||||
Config.LoadConfig();
|
||||
|
||||
// Check if token is unset
|
||||
if (Config.token == "<add-token-here>" || Config.token == "")
|
||||
{
|
||||
Console.WriteLine("You need to set your bot token in the config and start the bot again.");
|
||||
throw new ArgumentException("Invalid Discord bot token");
|
||||
}
|
||||
// Check if token is unset
|
||||
if (Config.token == "<add-token-here>" || Config.token == "")
|
||||
{
|
||||
Console.WriteLine("You need to set your bot token in the config and start the bot again.");
|
||||
throw new ArgumentException("Invalid Discord bot token");
|
||||
}
|
||||
|
||||
// Database connection and setup
|
||||
try
|
||||
{
|
||||
Console.WriteLine("Connecting to database... (" + Config.hostName + ":" + Config.port + ")");
|
||||
Database.SetConnectionString(Config.hostName, Config.port, Config.database, Config.username, Config.password);
|
||||
Database.SetupTables();
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine("Could not set up database tables, please confirm connection settings, status of the server and permissions of MySQL user. Error: " + e);
|
||||
throw;
|
||||
}
|
||||
// Database connection and setup
|
||||
try
|
||||
{
|
||||
Console.WriteLine("Connecting to database... (" + Config.hostName + ":" + Config.port + ")");
|
||||
Database.SetConnectionString(Config.hostName, Config.port, Config.database, Config.username, Config.password);
|
||||
Database.SetupTables();
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine("Could not set up database tables, please confirm connection settings, status of the server and permissions of MySQL user. Error: " + e);
|
||||
throw;
|
||||
}
|
||||
|
||||
Console.WriteLine("Setting up Discord client...");
|
||||
Console.WriteLine("Setting up Discord client...");
|
||||
|
||||
// Checking log level
|
||||
if (!Enum.TryParse(Config.logLevel, true, out LogLevel logLevel))
|
||||
{
|
||||
Console.WriteLine("Log level '" + Config.logLevel + "' invalid, using 'Information' instead.");
|
||||
logLevel = LogLevel.Information;
|
||||
}
|
||||
// Checking log level
|
||||
if (!Enum.TryParse(Config.logLevel, true, out LogLevel logLevel))
|
||||
{
|
||||
Console.WriteLine("Log level '" + Config.logLevel + "' invalid, using 'Information' instead.");
|
||||
logLevel = LogLevel.Information;
|
||||
}
|
||||
|
||||
// Setting up client configuration
|
||||
DiscordConfiguration cfg = new DiscordConfiguration
|
||||
{
|
||||
Token = Config.token,
|
||||
TokenType = TokenType.Bot,
|
||||
MinimumLogLevel = logLevel,
|
||||
AutoReconnect = true,
|
||||
Intents = DiscordIntents.All
|
||||
};
|
||||
// Setting up client configuration
|
||||
DiscordConfiguration cfg = new DiscordConfiguration
|
||||
{
|
||||
Token = Config.token,
|
||||
TokenType = TokenType.Bot,
|
||||
MinimumLogLevel = logLevel,
|
||||
AutoReconnect = true,
|
||||
Intents = DiscordIntents.All
|
||||
};
|
||||
|
||||
this.discordClient = new DiscordClient(cfg);
|
||||
discordClient = new DiscordClient(cfg);
|
||||
|
||||
this.eventHandler = new EventHandler(this.discordClient);
|
||||
eventHandler = new EventHandler(discordClient);
|
||||
|
||||
Console.WriteLine("Hooking events...");
|
||||
this.discordClient.Ready += this.eventHandler.OnReady;
|
||||
this.discordClient.GuildAvailable += this.eventHandler.OnGuildAvailable;
|
||||
this.discordClient.ClientErrored += this.eventHandler.OnClientError;
|
||||
this.discordClient.MessageCreated += this.eventHandler.OnMessageCreated;
|
||||
this.discordClient.GuildMemberAdded += this.eventHandler.OnMemberAdded;
|
||||
this.discordClient.GuildMemberRemoved += this.eventHandler.OnMemberRemoved;
|
||||
if (Config.reactionMessage != 0)
|
||||
{
|
||||
this.discordClient.MessageReactionAdded += this.eventHandler.OnReactionAdded;
|
||||
}
|
||||
Console.WriteLine("Hooking events...");
|
||||
discordClient.Ready += eventHandler.OnReady;
|
||||
discordClient.GuildAvailable += eventHandler.OnGuildAvailable;
|
||||
discordClient.ClientErrored += eventHandler.OnClientError;
|
||||
discordClient.MessageCreated += eventHandler.OnMessageCreated;
|
||||
discordClient.GuildMemberAdded += eventHandler.OnMemberAdded;
|
||||
discordClient.GuildMemberRemoved += eventHandler.OnMemberRemoved;
|
||||
if (Config.reactionMessage != 0)
|
||||
{
|
||||
discordClient.MessageReactionAdded += eventHandler.OnReactionAdded;
|
||||
}
|
||||
|
||||
Console.WriteLine("Registering commands...");
|
||||
commands = discordClient.UseCommandsNext(new CommandsNextConfiguration
|
||||
{
|
||||
StringPrefixes = new[] { Config.prefix }
|
||||
});
|
||||
Console.WriteLine("Registering commands...");
|
||||
commands = discordClient.UseCommandsNext(new CommandsNextConfiguration
|
||||
{
|
||||
StringPrefixes = new[] { Config.prefix }
|
||||
});
|
||||
|
||||
this.commands.RegisterCommands<AddCommand>();
|
||||
this.commands.RegisterCommands<AddMessageCommand>();
|
||||
this.commands.RegisterCommands<AddStaffCommand>();
|
||||
this.commands.RegisterCommands<AssignCommand>();
|
||||
this.commands.RegisterCommands<BlacklistCommand>();
|
||||
this.commands.RegisterCommands<CloseCommand>();
|
||||
this.commands.RegisterCommands<ListAssignedCommand>();
|
||||
this.commands.RegisterCommands<ListCommand>();
|
||||
this.commands.RegisterCommands<ListOldestCommand>();
|
||||
this.commands.RegisterCommands<ListUnassignedCommand>();
|
||||
this.commands.RegisterCommands<MoveCommand>();
|
||||
this.commands.RegisterCommands<NewCommand>();
|
||||
this.commands.RegisterCommands<RandomAssignCommand>();
|
||||
this.commands.RegisterCommands<ReloadCommand>();
|
||||
this.commands.RegisterCommands<RemoveMessageCommand>();
|
||||
this.commands.RegisterCommands<RemoveStaffCommand>();
|
||||
this.commands.RegisterCommands<SayCommand>();
|
||||
this.commands.RegisterCommands<SetSummaryCommand>();
|
||||
this.commands.RegisterCommands<SetTicketCommand>();
|
||||
this.commands.RegisterCommands<StatusCommand>();
|
||||
this.commands.RegisterCommands<SummaryCommand>();
|
||||
this.commands.RegisterCommands<ToggleActiveCommand>();
|
||||
this.commands.RegisterCommands<TranscriptCommand>();
|
||||
this.commands.RegisterCommands<UnassignCommand>();
|
||||
this.commands.RegisterCommands<UnblacklistCommand>();
|
||||
this.commands.RegisterCommands<UnsetTicketCommand>();
|
||||
commands.RegisterCommands<AddCommand>();
|
||||
commands.RegisterCommands<AddMessageCommand>();
|
||||
commands.RegisterCommands<AddStaffCommand>();
|
||||
commands.RegisterCommands<AssignCommand>();
|
||||
commands.RegisterCommands<BlacklistCommand>();
|
||||
commands.RegisterCommands<CloseCommand>();
|
||||
commands.RegisterCommands<ListAssignedCommand>();
|
||||
commands.RegisterCommands<ListCommand>();
|
||||
commands.RegisterCommands<ListOldestCommand>();
|
||||
commands.RegisterCommands<ListUnassignedCommand>();
|
||||
commands.RegisterCommands<MoveCommand>();
|
||||
commands.RegisterCommands<NewCommand>();
|
||||
commands.RegisterCommands<RandomAssignCommand>();
|
||||
commands.RegisterCommands<ReloadCommand>();
|
||||
commands.RegisterCommands<RemoveMessageCommand>();
|
||||
commands.RegisterCommands<RemoveStaffCommand>();
|
||||
commands.RegisterCommands<SayCommand>();
|
||||
commands.RegisterCommands<SetSummaryCommand>();
|
||||
commands.RegisterCommands<SetTicketCommand>();
|
||||
commands.RegisterCommands<StatusCommand>();
|
||||
commands.RegisterCommands<SummaryCommand>();
|
||||
commands.RegisterCommands<ToggleActiveCommand>();
|
||||
commands.RegisterCommands<TranscriptCommand>();
|
||||
commands.RegisterCommands<UnassignCommand>();
|
||||
commands.RegisterCommands<UnblacklistCommand>();
|
||||
commands.RegisterCommands<UnsetTicketCommand>();
|
||||
|
||||
Console.WriteLine("Hooking command events...");
|
||||
this.commands.CommandErrored += this.eventHandler.OnCommandError;
|
||||
Console.WriteLine("Hooking command events...");
|
||||
commands.CommandErrored += eventHandler.OnCommandError;
|
||||
|
||||
Console.WriteLine("Connecting to Discord...");
|
||||
await this.discordClient.ConnectAsync();
|
||||
}
|
||||
}
|
||||
Console.WriteLine("Connecting to Discord...");
|
||||
await discordClient.ConnectAsync();
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,11 +1,11 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<ApplicationIcon>ellie_icon.ico</ApplicationIcon>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
|
||||
<Version>1.1.0</Version>
|
||||
<Version>1.2.0</Version>
|
||||
<StartupObject>SupportChild.SupportChild</StartupObject>
|
||||
<Authors>EmotionChild</Authors>
|
||||
<Product />
|
||||
|
@ -13,17 +13,18 @@
|
|||
<RepositoryUrl>https://github.com/EmotionChild/SupportChild</RepositoryUrl>
|
||||
<RepositoryType>Git</RepositoryType>
|
||||
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
||||
<PackageIconUrl></PackageIconUrl>
|
||||
<PackageIconUrl>https://cdn.emotionchild.com/Ellie.png</PackageIconUrl>
|
||||
<Description>A Discord support bot build for the Ellie's Home Discord server</Description>
|
||||
<AssemblyVersion>2.5.0.0</AssemblyVersion>
|
||||
<FileVersion>2.5.0.0</FileVersion>
|
||||
<AssemblyVersion>2.6.1.1</AssemblyVersion>
|
||||
<FileVersion>2.6.1.1</FileVersion>
|
||||
<NeutralLanguage>en</NeutralLanguage>
|
||||
<PackageVersion>1.2.0</PackageVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DSharpPlus" Version="4.1.0" />
|
||||
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.1.0" />
|
||||
<PackageReference Include="DSharpPlus.Interactivity" Version="4.1.0" />
|
||||
<PackageReference Include="DSharpPlus" Version="4.2.0-nightly-01109" />
|
||||
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.2.0-nightly-01109" />
|
||||
<PackageReference Include="DSharpPlus.Interactivity" Version="4.2.0-nightly-01109" />
|
||||
<PackageReference Include="JsonExtensions" Version="1.2.0" />
|
||||
<PackageReference Include="MiniRazor.CodeGen" Version="2.2.1" />
|
||||
<PackageReference Include="MySql.Data" Version="8.0.28" />
|
||||
|
@ -49,6 +50,13 @@
|
|||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="..\LICENSE">
|
||||
<Pack>True</Pack>
|
||||
<PackagePath></PackagePath>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="lib\" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System.IO;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
using DiscordChatExporter.Core.Discord;
|
||||
|
@ -11,52 +11,52 @@ using DiscordChatExporter.Core.Utils.Extensions;
|
|||
|
||||
namespace SupportChild
|
||||
{
|
||||
internal static class Transcriber
|
||||
{
|
||||
internal static async Task ExecuteAsync(ulong channelID, uint ticketID)
|
||||
{
|
||||
DiscordClient discordClient = new DiscordClient(new AuthToken(AuthTokenKind.Bot, Config.token));
|
||||
ChannelExporter Exporter = new ChannelExporter(discordClient);
|
||||
internal static class Transcriber
|
||||
{
|
||||
internal static async Task ExecuteAsync(ulong channelID, uint ticketID)
|
||||
{
|
||||
DiscordClient discordClient = new DiscordClient(new AuthToken(AuthTokenKind.Bot, Config.token));
|
||||
ChannelExporter Exporter = new ChannelExporter(discordClient);
|
||||
|
||||
if (!Directory.Exists("./transcripts"))
|
||||
{
|
||||
Directory.CreateDirectory("./transcripts");
|
||||
}
|
||||
if (!Directory.Exists("./transcripts"))
|
||||
{
|
||||
Directory.CreateDirectory("./transcripts");
|
||||
}
|
||||
|
||||
string dateFormat = "yyyy-MMM-dd HH:mm";
|
||||
string dateFormat = "yyyy-MMM-dd HH:mm";
|
||||
|
||||
// Configure settings
|
||||
if (Config.timestampFormat != "")
|
||||
dateFormat = Config.timestampFormat;
|
||||
// Configure settings
|
||||
if (Config.timestampFormat != "")
|
||||
dateFormat = Config.timestampFormat;
|
||||
|
||||
Channel channel = await discordClient.GetChannelAsync(new Snowflake(channelID));
|
||||
Guild guild = await discordClient.GetGuildAsync(channel.GuildId);
|
||||
Channel channel = await discordClient.GetChannelAsync(new Snowflake(channelID));
|
||||
Guild guild = await discordClient.GetGuildAsync(channel.GuildId);
|
||||
|
||||
ExportRequest request = new ExportRequest(
|
||||
guild: guild,
|
||||
channel: channel,
|
||||
outputPath: GetPath(ticketID),
|
||||
format: ExportFormat.HtmlDark,
|
||||
after: null,
|
||||
before: null,
|
||||
partitionLimit: PartitionLimit.Null,
|
||||
messageFilter: MessageFilter.Null,
|
||||
shouldDownloadMedia: false,
|
||||
shouldReuseMedia: false,
|
||||
dateFormat: dateFormat
|
||||
);
|
||||
ExportRequest request = new ExportRequest(
|
||||
guild: guild,
|
||||
channel: channel,
|
||||
outputPath: GetPath(ticketID),
|
||||
format: ExportFormat.HtmlDark,
|
||||
after: null,
|
||||
before: null,
|
||||
partitionLimit: PartitionLimit.Null,
|
||||
messageFilter: MessageFilter.Null,
|
||||
shouldDownloadMedia: false,
|
||||
shouldReuseMedia: false,
|
||||
dateFormat: dateFormat
|
||||
);
|
||||
|
||||
await Exporter.ExportChannelAsync(request);
|
||||
}
|
||||
await Exporter.ExportChannelAsync(request);
|
||||
}
|
||||
|
||||
internal static string GetPath(uint ticketNumber)
|
||||
{
|
||||
return "./transcripts/" + GetFilename(ticketNumber);
|
||||
}
|
||||
internal static string GetPath(uint ticketNumber)
|
||||
{
|
||||
return "./transcripts/" + GetFilename(ticketNumber);
|
||||
}
|
||||
|
||||
internal static string GetFilename(uint ticketNumber)
|
||||
{
|
||||
return "ticket-" + ticketNumber.ToString("00000") + ".html";
|
||||
}
|
||||
}
|
||||
internal static string GetFilename(uint ticketNumber)
|
||||
{
|
||||
return "ticket-" + ticketNumber.ToString("00000") + ".html";
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,71 +1,71 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Security.Cryptography;
|
||||
using DSharpPlus.Entities;
|
||||
|
||||
namespace SupportChild
|
||||
{
|
||||
public static class Utilities
|
||||
{
|
||||
public static List<T> RandomizeList<T>(List<T> list)
|
||||
{
|
||||
RNGCryptoServiceProvider provider = new RNGCryptoServiceProvider();
|
||||
int n = list.Count;
|
||||
while (n > 1)
|
||||
{
|
||||
byte[] box = new byte[1];
|
||||
do provider.GetBytes(box);
|
||||
while (!(box[0] < n * (Byte.MaxValue / n)));
|
||||
int k = (box[0] % n);
|
||||
n--;
|
||||
T value = list[k];
|
||||
list[k] = list[n];
|
||||
list[n] = value;
|
||||
}
|
||||
public static class Utilities
|
||||
{
|
||||
public static List<T> RandomizeList<T>(List<T> list)
|
||||
{
|
||||
RNGCryptoServiceProvider provider = new RNGCryptoServiceProvider();
|
||||
int n = list.Count;
|
||||
while (n > 1)
|
||||
{
|
||||
byte[] box = new byte[1];
|
||||
do provider.GetBytes(box);
|
||||
while (!(box[0] < n * (byte.MaxValue / n)));
|
||||
int k = box[0] % n;
|
||||
n--;
|
||||
T value = list[k];
|
||||
list[k] = list[n];
|
||||
list[n] = value;
|
||||
}
|
||||
|
||||
return list;
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
public static string[] ParseIDs(string args)
|
||||
{
|
||||
if (string.IsNullOrEmpty(args))
|
||||
{
|
||||
return new string[0];
|
||||
}
|
||||
return args.Trim().Replace("<@!", "").Replace("<@", "").Replace(">", "").Split();
|
||||
}
|
||||
public static string[] ParseIDs(string args)
|
||||
{
|
||||
if (string.IsNullOrEmpty(args))
|
||||
{
|
||||
return new string[0];
|
||||
}
|
||||
return args.Trim().Replace("<@!", "").Replace("<@", "").Replace(">", "").Split();
|
||||
}
|
||||
|
||||
public static LinkedList<string> ParseListIntoMessages(List<string> listItems)
|
||||
{
|
||||
LinkedList<string> messages = new LinkedList<string>();
|
||||
public static LinkedList<string> ParseListIntoMessages(List<string> listItems)
|
||||
{
|
||||
LinkedList<string> messages = new LinkedList<string>();
|
||||
|
||||
foreach (string listItem in listItems)
|
||||
{
|
||||
if (messages.Last?.Value?.Length + listItem?.Length < 2048)
|
||||
{
|
||||
messages.Last.Value += listItem;
|
||||
}
|
||||
else
|
||||
{
|
||||
messages.AddLast(listItem);
|
||||
}
|
||||
}
|
||||
foreach (string listItem in listItems)
|
||||
{
|
||||
if (messages.Last?.Value?.Length + listItem?.Length < 2048)
|
||||
{
|
||||
messages.Last.Value += listItem;
|
||||
}
|
||||
else
|
||||
{
|
||||
messages.AddLast(listItem);
|
||||
}
|
||||
}
|
||||
|
||||
return messages;
|
||||
}
|
||||
return messages;
|
||||
}
|
||||
|
||||
public static DiscordRole GetRoleByName(DiscordGuild guild, string Name)
|
||||
{
|
||||
Name = Name.Trim().ToLower();
|
||||
foreach (DiscordRole role in guild.Roles.Values)
|
||||
{
|
||||
if (role.Name.ToLower().StartsWith(Name))
|
||||
{
|
||||
return role;
|
||||
}
|
||||
}
|
||||
public static DiscordRole GetRoleByName(DiscordGuild guild, string Name)
|
||||
{
|
||||
Name = Name.Trim().ToLower();
|
||||
foreach (DiscordRole role in guild.Roles.Values)
|
||||
{
|
||||
if (role.Name.ToLower().StartsWith(Name))
|
||||
{
|
||||
return role;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -2,7 +2,7 @@ bot:
|
|||
# Bot token.
|
||||
token: "<add-token-here>"
|
||||
# Command prefix.
|
||||
prefix: "+"
|
||||
prefix: "-"
|
||||
# Channel where ticket logs are posted (recommended)
|
||||
log-channel: 000000000000000000
|
||||
# Category where the ticket will be created, it will have the same permissions of that ticket plus read permissions for the user opening the ticket (recommended)
|
||||
|
@ -25,7 +25,7 @@ bot:
|
|||
# Possible values are: Playing, Streaming, ListeningTo, Watching, Competing
|
||||
presence-type: "ListeningTo"
|
||||
# Sets the activity text shown in the bot's status
|
||||
presence-text: "+new"
|
||||
presence-text: "-new"
|
||||
|
||||
notifications:
|
||||
# Notifies the assigned staff member when a new message is posted in a ticket if the ticket has been silent for a configurable amount of time
|
||||
|
|
Loading…
Reference in a new issue