muse/src/commands/seek.ts
Kevin Kendzia eb2885b206
fix command permission handling and push discord to v10 (#640)
Co-authored-by: Max Isom <hi@maxisom.me>
2022-05-13 19:44:14 -05:00

63 lines
1.8 KiB
TypeScript

import {ChatInputCommandInteraction} from 'discord.js';
import {TYPES} from '../types.js';
import {inject, injectable} from 'inversify';
import PlayerManager from '../managers/player.js';
import Command from '.';
import {parseTime, prettyTime} from '../utils/time.js';
import {SlashCommandBuilder} from '@discordjs/builders';
import durationStringToSeconds from '../utils/duration-string-to-seconds.js';
@injectable()
export default class implements Command {
public readonly slashCommand = new SlashCommandBuilder()
.setName('seek')
.setDescription('seek to a position from beginning of song')
.addStringOption(option =>
option.setName('time')
.setDescription('an interval expression or number of seconds (1m, 30s, 100)')
.setRequired(true),
);
public requiresVC = true;
private readonly playerManager: PlayerManager;
constructor(@inject(TYPES.Managers.Player) playerManager: PlayerManager) {
this.playerManager = playerManager;
}
public async execute(interaction: ChatInputCommandInteraction): Promise<void> {
const player = this.playerManager.get(interaction.guild!.id);
const currentSong = player.getCurrent();
if (!currentSong) {
throw new Error('nothing is playing');
}
if (currentSong.isLive) {
throw new Error('can\'t seek in a livestream');
}
const time = interaction.options.getString('time')!;
let seekTime = 0;
if (time.includes(':')) {
seekTime = parseTime(time);
} else {
seekTime = durationStringToSeconds(time);
}
if (seekTime > currentSong.length) {
throw new Error('can\'t seek past the end of the song');
}
await Promise.all([
player.seek(seekTime),
interaction.deferReply(),
]);
await interaction.editReply(`👍 seeked to ${prettyTime(player.getPosition())}`);
}
}