You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
const Discord = require('discord.js');
|
|
|
|
const cp = require("child_process");
|
|
|
|
module.exports = {
|
|
name: "execute",
|
|
aliases: ['exec'],
|
|
meta: {
|
|
category: 'Developer',
|
|
description: "Execute a console command",
|
|
syntax: '`Execute <command>`',
|
|
extra: null
|
|
},
|
|
help: "Dev only! Executes a console command",
|
|
async execute(message, msg, args, cmd, prefix, mention, client) {
|
|
if (!client.developers.includes(message.author.id)) {return message.channel.send("You must be a developer to do this!");}
|
|
if (!args.length) {return message.channel.send(`Syntax: \`${prefix}execute <command>\``);}
|
|
if (args.join(" ").match(/^rm\s+/gm)) {return message.channel.send(":(");}
|
|
return cp.exec(args.join(" "), function(error, stdout, stderr) {
|
|
if (error) {
|
|
return message.channel.send({embeds: [new Discord.MessageEmbed()
|
|
.setTitle("Error")
|
|
.setDescription(`\`\`\`${error}\`\`\``)
|
|
.setColor("ff446a")
|
|
.setFooter({text: "Natsuki", iconURL: client.user.avatarURL()})
|
|
.setTimestamp()]}
|
|
);
|
|
}
|
|
|
|
return message.channel.send({embeds: [new Discord.MessageEmbed()
|
|
.setTitle("Execution Successful")
|
|
.setDescription(`\`\`\`${stdout}\`\`\``)
|
|
.setColor("c375f0")
|
|
.setFooter({text: "Natsuki", iconURL: client.user.avatarURL()})
|
|
.setTimestamp()]}
|
|
);
|
|
});
|
|
}
|
|
}; |