2021-11-09 16:49:17 +00:00
|
|
|
import { Rest } from "lavacord";
|
|
|
|
import MusicCommand from "../../classes/musicCommand.js";
|
|
|
|
|
|
|
|
class SeekCommand extends MusicCommand {
|
|
|
|
async run() {
|
2022-03-31 05:42:03 +00:00
|
|
|
if (!this.channel.guild) return "This command only works in servers!";
|
2022-04-05 03:05:28 +00:00
|
|
|
if (!this.member.voiceState.channelID) return "You need to be in a voice channel first!";
|
2022-03-31 05:42:03 +00:00
|
|
|
if (!this.channel.guild.members.get(this.client.user.id).voiceState.channelID) return "I'm not in a voice channel!";
|
|
|
|
if (this.connection.host !== this.author.id) return "Only the current voice session host can seek the music!";
|
2021-11-09 16:49:17 +00:00
|
|
|
const player = this.connection.player;
|
|
|
|
const track = await Rest.decode(player.node, player.track);
|
|
|
|
if (!track.isSeekable) return "This track isn't seekable!";
|
2022-04-05 03:05:28 +00:00
|
|
|
const seconds = parseFloat(this.type === "classic" ? this.args[0] : this.options.position);
|
2021-11-09 16:49:17 +00:00
|
|
|
if (isNaN(seconds) || (seconds * 1000) > track.length || (seconds * 1000) < 0) return "That's not a valid position!";
|
2021-12-13 22:09:12 +00:00
|
|
|
await player.seek(seconds * 1000);
|
2021-11-09 23:42:18 +00:00
|
|
|
return `🔊 Seeked track to ${seconds} second(s).`;
|
2021-11-09 16:49:17 +00:00
|
|
|
}
|
|
|
|
|
2022-04-05 03:05:28 +00:00
|
|
|
static flags = [{
|
|
|
|
name: "position",
|
|
|
|
type: 10,
|
|
|
|
description: "Seek to this position",
|
|
|
|
required: true,
|
|
|
|
min_value: 0
|
|
|
|
}];
|
2021-11-09 16:49:17 +00:00
|
|
|
static description = "Seeks to a different position in the music";
|
|
|
|
static aliases = ["pos"];
|
|
|
|
static arguments = ["[seconds]"];
|
|
|
|
}
|
|
|
|
|
2021-12-13 22:09:12 +00:00
|
|
|
export default SeekCommand;
|