1 |
const fs = require('fs'); |
2 |
const path = require('path'); |
3 |
|
4 |
if (process.argv.length < 3) { |
5 |
console.log("A command name and group is required to generate!"); |
6 |
process.exit(-1); |
7 |
} |
8 |
|
9 |
if (process.argv.length < 4) { |
10 |
console.log("A command name is required to generate!"); |
11 |
process.exit(-1); |
12 |
} |
13 |
|
14 |
const template = `/** |
15 |
* This file is part of SudoBot. |
16 |
* |
17 |
* Copyright (C) 2021-${new Date().getFullYear()} OSN Developers. |
18 |
* |
19 |
* SudoBot is free software; you can redistribute it and/or modify it |
20 |
* under the terms of the GNU Affero General Public License as published by |
21 |
* the Free Software Foundation, either version 3 of the License, or |
22 |
* (at your option) any later version. |
23 |
* |
24 |
* SudoBot is distributed in the hope that it will be useful, but |
25 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
26 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
27 |
* GNU Affero General Public License for more details. |
28 |
* |
29 |
* You should have received a copy of the GNU Affero General Public License |
30 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
31 |
*/ |
32 |
|
33 |
import { EmbedBuilder, PermissionsBitField } from "discord.js"; |
34 |
import Command, { AnyCommandContext, ArgumentType, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
35 |
|
36 |
export default class %commandName%Command extends Command { |
37 |
public readonly name = "%commandNameLowerCase%"; |
38 |
public readonly validationRules: ValidationRule[] = []; |
39 |
public readonly permissions = []; |
40 |
|
41 |
async execute(message: CommandMessage, context: AnyCommandContext): Promise<CommandReturn> { |
42 |
|
43 |
} |
44 |
} |
45 |
` |
46 |
.replace('%commandName%', process.argv[3]) |
47 |
.replace('%commandNameLowerCase%', process.argv[3].toLowerCase()); |
48 |
|
49 |
fs.writeFileSync(path.join(__dirname, fs.existsSync(path.join(__dirname, "src")) ? "." : "..", "src/commands", process.argv[2], process.argv[3] + "Command.ts"), template); |
50 |
console.log("Successfully created: ", process.argv[3] + "Command"); |