77 lines
No EOL
3 KiB
C#
77 lines
No EOL
3 KiB
C#
// 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 JoinCommand : BaseCommand
|
|
{
|
|
public override async Task<bool> BeforeExecution(SharedCommandContext ctx) => (await this.CheckVoiceState() && await this.CheckOwnPermissions(Permissions.UseVoice) && await this.CheckOwnPermissions(Permissions.UseVoiceDetection));
|
|
|
|
public override Task ExecuteCommand(SharedCommandContext ctx, Dictionary<string, object> arguments)
|
|
{
|
|
var CommandKey = ((Entities.Translations)MusicPlugin.Plugin!.Translations).Commands.Music;
|
|
|
|
return Task.Run(async () =>
|
|
{
|
|
var Announce = arguments?.ContainsKey("announce") ?? false;
|
|
|
|
if (Announce)
|
|
if (await ctx.DbUser.Cooldown.WaitForModerate(ctx))
|
|
return;
|
|
|
|
var lava = ctx.Client.GetLavalink();
|
|
|
|
while (!lava.ConnectedSessions.Values.Any(x => x.IsConnected))
|
|
await Task.Delay(1000);
|
|
|
|
var node = lava.ConnectedSessions.Values.First(x => x.IsConnected);
|
|
var conn = node.GetGuildPlayer(ctx.Member.VoiceState.Guild);
|
|
|
|
if (conn is null)
|
|
{
|
|
if (!lava.ConnectedSessions.Any())
|
|
{
|
|
throw new Exception("Lavalink connection isn't established.");
|
|
}
|
|
|
|
conn = await node.ConnectAsync(ctx.Member.VoiceState.Channel);
|
|
MusicPlugin.Plugin!.Guilds![ctx.Guild.Id].QueueHandler(ctx.Bot, ctx.Client, node, conn);
|
|
|
|
if (Announce)
|
|
_ = await this.RespondOrEdit(new DiscordEmbedBuilder
|
|
{
|
|
Description = this.GetString(CommandKey.Join.Joined, true),
|
|
}.AsSuccess(ctx));
|
|
return;
|
|
}
|
|
|
|
if (conn.Channel.Users.Count >= 2 && !(ctx.Member.VoiceState.Channel.Id == conn.Channel.Id))
|
|
{
|
|
_ = await this.RespondOrEdit(new DiscordEmbedBuilder
|
|
{
|
|
Description = this.GetString(CommandKey.Join.AlreadyUsed, true),
|
|
}.AsError(ctx));
|
|
|
|
throw new CancelException();
|
|
}
|
|
|
|
if (ctx.Member.VoiceState.Channel.Id != conn.Channel.Id)
|
|
{
|
|
await conn.DisconnectAsync();
|
|
conn = await node.ConnectAsync(ctx.Member.VoiceState.Channel);
|
|
}
|
|
|
|
if (Announce)
|
|
_ = await this.RespondOrEdit(new DiscordEmbedBuilder
|
|
{
|
|
Description = this.GetString(CommandKey.Join.Joined, true),
|
|
}.AsSuccess(ctx));
|
|
});
|
|
}
|
|
} |