Initial commit
This commit is contained in:
commit
79e7cffb4e
49 changed files with 6399 additions and 0 deletions
125
Commands/Music/SkipCommand.cs
Normal file
125
Commands/Music/SkipCommand.cs
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
// Project Makoto
|
||||
// Copyright (C) 2024 Fortunevale
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY
|
||||
|
||||
namespace ProjectMakoto.Plugins.Music;
|
||||
|
||||
internal sealed class SkipCommand : BaseCommand
|
||||
{
|
||||
public override Task<bool> BeforeExecution(SharedCommandContext ctx) => this.CheckVoiceState();
|
||||
|
||||
public override Task ExecuteCommand(SharedCommandContext ctx, Dictionary<string, object> arguments)
|
||||
{
|
||||
var CommandKey = ((Entities.Translations)MusicPlugin.Plugin!.Translations).Commands.Music;
|
||||
|
||||
return Task.Run(async () =>
|
||||
{
|
||||
if (await ctx.DbUser.Cooldown.WaitForModerate(ctx))
|
||||
return;
|
||||
|
||||
var lava = ctx.Client.GetLavalink();
|
||||
var session = lava.ConnectedSessions.Values.First(x => x.IsConnected);
|
||||
var conn = session.GetGuildPlayer(ctx.Member.VoiceState.Guild);
|
||||
|
||||
if (conn is null || conn.Channel.Id != ctx.Member.VoiceState.Channel.Id)
|
||||
{
|
||||
_ = await this.RespondOrEdit(embed: new DiscordEmbedBuilder
|
||||
{
|
||||
Description = this.GetString(CommandKey.NotSameChannel, true),
|
||||
}.AsError(ctx));
|
||||
return;
|
||||
}
|
||||
|
||||
if (MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].collectedSkips.Contains(ctx.User.Id))
|
||||
{
|
||||
_ = await this.RespondOrEdit(embed: new DiscordEmbedBuilder
|
||||
{
|
||||
Description = this.GetString(CommandKey.Skip.AlreadyVoted),
|
||||
}.AsError(ctx));
|
||||
return;
|
||||
}
|
||||
|
||||
MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].collectedSkips.Add(ctx.User.Id);
|
||||
|
||||
if (MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].collectedSkips.Count >= (conn.Channel.Users.Count - 1) * 0.51)
|
||||
{
|
||||
_ = await conn.StopAsync();
|
||||
|
||||
_ = await this.RespondOrEdit(embed: new DiscordEmbedBuilder
|
||||
{
|
||||
Description = this.GetString(CommandKey.Skip.Skipped, true),
|
||||
}.AsSuccess(ctx));
|
||||
return;
|
||||
}
|
||||
|
||||
var embed = new DiscordEmbedBuilder()
|
||||
{
|
||||
Description = $"`{this.GetGuildString(CommandKey.Skip.VoteStarted)} ({MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].collectedSkips.Count}/{Math.Ceiling((conn.Channel.Users.Count - 1.0) * 0.51)})`",
|
||||
}.AsAwaitingInput(ctx);
|
||||
|
||||
var builder = new DiscordMessageBuilder().WithEmbed(embed);
|
||||
|
||||
DiscordButtonComponent SkipSongVote = new(ButtonStyle.Danger, Guid.NewGuid().ToString(), this.GetGuildString(CommandKey.Skip.VoteButton), false, new DiscordComponentEmoji(DiscordEmoji.FromUnicode("⏩")));
|
||||
_ = builder.AddComponents(SkipSongVote);
|
||||
|
||||
_ = await this.RespondOrEdit(builder);
|
||||
|
||||
_ = Task.Delay(TimeSpan.FromMinutes(10)).ContinueWith(x =>
|
||||
{
|
||||
if (x.IsCompletedSuccessfully)
|
||||
{
|
||||
ctx.Client.ComponentInteractionCreated -= RunInteraction;
|
||||
this.ModifyToTimedOut();
|
||||
}
|
||||
});
|
||||
|
||||
ctx.Client.ComponentInteractionCreated += RunInteraction;
|
||||
|
||||
async Task RunInteraction(DiscordClient s, ComponentInteractionCreateEventArgs e)
|
||||
{
|
||||
_ = Task.Run(async () =>
|
||||
{
|
||||
if (e.Message.Id == ctx.ResponseMessage.Id)
|
||||
{
|
||||
_ = e.Interaction.CreateResponseAsync(InteractionResponseType.DeferredMessageUpdate);
|
||||
|
||||
if (MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].collectedSkips.Contains(e.User.Id))
|
||||
{
|
||||
_ = e.Interaction.CreateFollowupMessageAsync(new DiscordFollowupMessageBuilder().WithContent($"❌ {this.GetString(CommandKey.Skip.AlreadyVoted, true)}").AsEphemeral());
|
||||
return;
|
||||
}
|
||||
|
||||
var member = await e.User.ConvertToMember(ctx.Guild);
|
||||
|
||||
if (member.VoiceState is null || member.VoiceState.Channel.Id != conn.Channel.Id)
|
||||
{
|
||||
_ = e.Interaction.CreateFollowupMessageAsync(new DiscordFollowupMessageBuilder().WithContent($"❌ {this.GetString(CommandKey.NotSameChannel, true)}").AsEphemeral());
|
||||
return;
|
||||
}
|
||||
|
||||
MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].collectedSkips.Add(e.User.Id);
|
||||
|
||||
if (MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].collectedSkips.Count >= (conn.Channel.Users.Count - 1) * 0.51)
|
||||
{
|
||||
_ = await conn.StopAsync();
|
||||
|
||||
_ = await this.RespondOrEdit(new DiscordMessageBuilder().WithEmbed(new DiscordEmbedBuilder
|
||||
{
|
||||
Description = this.GetString(CommandKey.Skip.Skipped, true),
|
||||
}.AsSuccess(ctx)));
|
||||
return;
|
||||
}
|
||||
|
||||
embed.Description = $"`{this.GetGuildString(CommandKey.Skip.VoteStarted)} ({MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].collectedSkips.Count}/{Math.Ceiling((conn.Channel.Users.Count - 1.0) * 0.51)})`";
|
||||
_ = await this.RespondOrEdit(new DiscordMessageBuilder().WithEmbed(embed).AddComponents(SkipSongVote));
|
||||
}
|
||||
}).Add(ctx.Bot);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue