mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-12 21:05:29 +01:00
Refactor seek command as slash command
This commit is contained in:
parent
e7a87c4f52
commit
65e1f975b9
|
@ -1,21 +1,22 @@
|
|||
import {Message, TextChannel} from 'discord.js';
|
||||
import {CommandInteraction} from 'discord.js';
|
||||
import {TYPES} from '../types.js';
|
||||
import {inject, injectable} from 'inversify';
|
||||
import PlayerManager from '../managers/player.js';
|
||||
import LoadingMessage from '../utils/loading-message.js';
|
||||
import errorMsg from '../utils/error-msg.js';
|
||||
import Command from '.';
|
||||
import {parseTime} from '../utils/time.js';
|
||||
import {parseTime, prettyTime} from '../utils/time.js';
|
||||
import {SlashCommandBuilder} from '@discordjs/builders';
|
||||
|
||||
@injectable()
|
||||
export default class implements Command {
|
||||
public name = 'seek';
|
||||
public aliases = [];
|
||||
public examples = [
|
||||
['seek 10', 'seeks to 10 seconds from beginning of song'],
|
||||
['seek 1:30', 'seeks to 1 minute and 30 seconds from beginning of song'],
|
||||
['seek 1:00:00', 'seeks to 1 hour from beginning of song'],
|
||||
];
|
||||
public readonly slashCommand = new SlashCommandBuilder()
|
||||
.setName('seek')
|
||||
.setDescription('seek to a position from beginning of song')
|
||||
.addStringOption(option =>
|
||||
option.setName('time')
|
||||
.setDescription('time to seek')
|
||||
.setRequired(true),
|
||||
);
|
||||
|
||||
public requiresVC = true;
|
||||
|
||||
|
@ -25,22 +26,28 @@ export default class implements Command {
|
|||
this.playerManager = playerManager;
|
||||
}
|
||||
|
||||
public async execute(msg: Message, args: string []): Promise<void> {
|
||||
const player = this.playerManager.get(msg.guild!.id);
|
||||
public async executeFromInteraction(interaction: CommandInteraction): Promise<void> {
|
||||
const player = this.playerManager.get(interaction.guild!.id);
|
||||
|
||||
const currentSong = player.getCurrent();
|
||||
|
||||
if (!currentSong) {
|
||||
await msg.channel.send(errorMsg('nothing is playing'));
|
||||
await interaction.reply({
|
||||
content: errorMsg('nothing is playing'),
|
||||
ephemeral: true,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (currentSong.isLive) {
|
||||
await msg.channel.send(errorMsg('can\'t seek in a livestream'));
|
||||
await interaction.reply({
|
||||
content: errorMsg('can\'t seek in a livestream'),
|
||||
ephemeral: true,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
const time = args[0];
|
||||
const time = interaction.options.getString('time')!;
|
||||
|
||||
let seekTime = 0;
|
||||
|
||||
|
@ -51,20 +58,18 @@ export default class implements Command {
|
|||
}
|
||||
|
||||
if (seekTime > currentSong.length) {
|
||||
await msg.channel.send(errorMsg('can\'t seek past the end of the song'));
|
||||
await interaction.reply({
|
||||
content: errorMsg('can\'t seek past the end of the song'),
|
||||
ephemeral: true,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
const loading = new LoadingMessage(msg.channel as TextChannel);
|
||||
await Promise.all([
|
||||
player.seek(seekTime),
|
||||
interaction.deferReply(),
|
||||
]);
|
||||
|
||||
await loading.start();
|
||||
|
||||
try {
|
||||
await player.seek(seekTime);
|
||||
|
||||
await loading.stop();
|
||||
} catch (error: unknown) {
|
||||
await loading.stop(errorMsg(error as Error));
|
||||
}
|
||||
await interaction.editReply(`👍 seeked to ${prettyTime(player.getPosition())}`);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue