2022-04-18 10:52:03 +00:00
using System ;
2022-02-21 08:40:09 +00:00
using System.Collections.Generic ;
2024-12-26 05:36:20 +00:00
using System.ComponentModel ;
2022-02-21 08:40:09 +00:00
using System.Linq ;
using System.Threading.Tasks ;
2024-12-26 05:36:20 +00:00
using DSharpPlus.Commands ;
using DSharpPlus.Commands.ContextChecks ;
using DSharpPlus.Commands.Processors.SlashCommands ;
2022-02-21 08:40:09 +00:00
using DSharpPlus.Entities ;
using DSharpPlus.Exceptions ;
using Microsoft.Extensions.Logging ;
2022-08-21 07:34:11 +00:00
namespace SupportChild.Commands ;
2024-12-26 05:36:20 +00:00
public class RandomAssignCommand
2022-02-21 08:40:09 +00:00
{
2024-12-26 05:36:20 +00:00
[RequireGuild]
[Command("rassign")]
[Description("Randomly assigns a staff member to a ticket.")]
public async Task OnExecute ( SlashCommandContext command , [ Parameter ( "role" ) ] [ Description ( "(Optional) Limit the random assignment to a specific role." ) ] DiscordRole role = null )
2024-10-29 09:10:37 +00:00
{
// Check if ticket exists in the database
if ( ! Database . TryGetOpenTicket ( command . Channel . Id , out Database . Ticket ticket ) )
{
2024-12-26 05:36:20 +00:00
await command . RespondAsync ( new DiscordEmbedBuilder
2024-10-29 09:10:37 +00:00
{
Color = DiscordColor . Red ,
Description = "Error: This channel is not a ticket."
} , true ) ;
return ;
}
2022-02-21 08:40:09 +00:00
2024-10-29 09:10:37 +00:00
// Get a random staff member who is verified to have the correct role if applicable
DiscordMember staffMember = await GetRandomVerifiedStaffMember ( command , role , ticket ) ;
if ( staffMember = = null )
{
return ;
}
2022-02-21 08:40:09 +00:00
2024-10-29 09:10:37 +00:00
// Attempt to assign the staff member to the ticket
if ( ! Database . AssignStaff ( ticket , staffMember . Id ) )
{
2024-12-26 05:36:20 +00:00
await command . RespondAsync ( new DiscordEmbedBuilder
2024-10-29 09:10:37 +00:00
{
Color = DiscordColor . Red ,
Description = "Error: Failed to assign " + staffMember . Mention + " to ticket."
} , true ) ;
return ;
}
2022-02-21 08:40:09 +00:00
2024-10-29 09:10:37 +00:00
// Respond that the command was successful
2024-12-26 05:36:20 +00:00
await command . RespondAsync ( new DiscordEmbedBuilder
2024-10-29 09:10:37 +00:00
{
Color = DiscordColor . Green ,
Description = "Randomly assigned " + staffMember . Mention + " to ticket."
} ) ;
2022-02-21 08:40:09 +00:00
2024-10-29 09:10:37 +00:00
// Send a notification to the staff member if applicable
if ( Config . assignmentNotifications )
{
try
{
await staffMember . SendMessageAsync ( new DiscordEmbedBuilder
{
Color = DiscordColor . Green ,
Description = "You have been randomly assigned to a support ticket: " + command . Channel . Mention
} ) ;
}
catch ( UnauthorizedException ) { }
}
2022-02-21 08:40:09 +00:00
2024-12-26 05:57:41 +00:00
try
2024-10-29 09:10:37 +00:00
{
2024-12-26 05:57:41 +00:00
// Log it if the log channel exists
DiscordChannel logChannel = await SupportChild . client . GetChannelAsync ( Config . logChannel ) ;
2024-10-29 09:10:37 +00:00
await logChannel . SendMessageAsync ( new DiscordEmbedBuilder
{
Color = DiscordColor . Green ,
2024-12-26 12:21:37 +00:00
Description = staffMember . Mention + " was randomly assigned to " + command . Channel . Mention + " by " + command . User . Mention + "." ,
Footer = new DiscordEmbedBuilder . EmbedFooter
{
Text = "Ticket: " + ticket . id . ToString ( "00000" )
}
2024-10-29 09:10:37 +00:00
} ) ;
}
2024-12-26 05:57:41 +00:00
catch ( NotFoundException )
{
2024-12-27 03:53:40 +00:00
Logger . Error ( "Could not send message in log channel." ) ;
2024-12-26 05:57:41 +00:00
}
2024-10-29 09:10:37 +00:00
}
2022-02-21 08:40:09 +00:00
2024-12-26 05:36:20 +00:00
private static async Task < DiscordMember > GetRandomVerifiedStaffMember ( SlashCommandContext command , DiscordRole targetRole , Database . Ticket ticket )
2024-10-29 09:10:37 +00:00
{
if ( targetRole ! = null ) // A role was provided
{
// Check if role rassign should override staff's active status
List < Database . StaffMember > staffMembers = Config . randomAssignRoleOverride
? Database . GetAllStaff ( ticket . assignedStaffID , ticket . creatorID )
: Database . GetActiveStaff ( ticket . assignedStaffID , ticket . creatorID ) ;
2022-02-21 08:40:09 +00:00
2024-10-29 09:10:37 +00:00
// Randomize the list before checking for roles in order to reduce number of API calls
staffMembers . Shuffle ( ) ;
2022-02-21 08:40:09 +00:00
2024-10-29 09:10:37 +00:00
// 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 = = targetRole . Id ) ? ? 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 , ticket . creatorID ) ;
if ( staffEntry = = null )
{
2024-12-26 05:36:20 +00:00
await command . RespondAsync ( new DiscordEmbedBuilder
2024-10-29 09:10:37 +00:00
{
Color = DiscordColor . Red ,
Description = "Error: There are no other staff members to choose from."
} , true ) ;
return null ;
}
2022-02-21 08:40:09 +00:00
2024-10-29 09:10:37 +00:00
// Get the staff member from discord
try
{
return await command . Guild . GetMemberAsync ( staffEntry . userID ) ;
}
catch ( NotFoundException ) { }
}
2022-08-21 07:34:11 +00:00
2024-10-29 09:10:37 +00:00
// Send a more generic error if we get to this point and still haven't found the staff member
2024-12-26 05:36:20 +00:00
await command . RespondAsync ( new DiscordEmbedBuilder
2024-10-29 09:10:37 +00:00
{
Color = DiscordColor . Red ,
Description = "Error: Could not find an applicable staff member."
} , true ) ;
return null ;
}
2022-05-19 11:38:59 +00:00
}