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