const fmlogin = require("../../util/lastfm/fmlogin"); const getCurrentScrobble = require("../../util/lastfm/getCurrentScrobble"); const getTopTracks = require("../../util/lastfm/getTopTracks"); module.exports = { name: 'fm', description: 'Last fm commands. See `help fm` for more info.', moreHelp: ["Info: Having a space between fm and the subcommand makes no difference.", "They behave the same (for example: `fmtt` and `fm tt`)", "Set username: `fmset `", "Get current scrobble: `fm`", "Get top tracks: `fmtt`" ], async execute({ message, args, prefix }) { let sendText = "Something went wrong."; switch (args[0]) { case "help": sendText = this.moreHelp.join("\n").replace(//g, prefix); break; case "set": sendText = await fmlogin(message.author.id, args[1]); break; case "toptracks": case "tt": args.shift(); sendText = await getTopTracks(message.author.id, args); break; default: sendText = `${args[0]} is not a valid subcommand.\nSee \`${prefix}help fm\` for more info.`; break; } if(args.length < 1){ sendText = await getCurrentScrobble(message.author.id); } message.channel.send(sendText); } };