1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2022 OSN Inc. |
5 |
|
|
* |
6 |
|
|
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
|
|
* under the terms of the GNU Affero General Public License as published by |
8 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* SudoBot is distributed in the hope that it will be useful, but |
12 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU Affero General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU Affero General Public License |
17 |
|
|
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
|
|
import BaseCommand from "./structures/BaseCommand"; |
21 |
|
|
import BaseEvent from "./structures/BaseEvent"; |
22 |
|
|
import { fill, green, red, yellow } from "./util"; |
23 |
|
|
|
24 |
|
|
let colLengths = [19, 33, 10]; |
25 |
|
|
let totalLength = colLengths.reduce((acc, val) => acc + val); |
26 |
|
|
|
27 |
|
|
export async function registrationStart() { |
28 |
|
|
if (process.env.ENV === 'prod' || !process.argv.includes('--verbose')) |
29 |
|
|
return; |
30 |
|
|
|
31 |
|
|
console.log(`+-----------------------------------------------------+`); |
32 |
|
|
console.log(`|Name |Time |Status |`); |
33 |
|
|
} |
34 |
|
|
|
35 |
|
|
export async function registered(command: BaseCommand | BaseEvent, startTime: number = 0, endTime: number = 0) { |
36 |
|
|
if (process.env.ENV === 'prod' || !process.argv.includes('--verbose')) |
37 |
|
|
return; |
38 |
|
|
|
39 |
|
|
console.log(`|-------------------+----------------------+----------|`); |
40 |
|
|
|
41 |
|
|
let name = command.getName(); |
42 |
|
|
let time: number = endTime - startTime; |
43 |
|
|
let timeString = time + 'ms'; |
44 |
|
|
|
45 |
|
|
if (time >= 100) { |
46 |
|
|
timeString = red(timeString); |
47 |
|
|
} |
48 |
|
|
else if (time >= 50) { |
49 |
|
|
timeString = yellow(timeString); |
50 |
|
|
} |
51 |
|
|
else { |
52 |
|
|
timeString = green(timeString); |
53 |
|
|
} |
54 |
|
|
|
55 |
|
|
let status = 'Success'; |
56 |
|
|
|
57 |
|
|
if (colLengths[0] > name.length) { |
58 |
|
|
name = fill(colLengths[0], name); |
59 |
|
|
} |
60 |
|
|
|
61 |
|
|
if (colLengths[1] > timeString.length) { |
62 |
|
|
timeString = fill(colLengths[1], timeString); |
63 |
|
|
} |
64 |
|
|
|
65 |
|
|
if (colLengths[2] > status.length) { |
66 |
|
|
status = fill(colLengths[2], status); |
67 |
|
|
} |
68 |
|
|
|
69 |
|
|
console.log(`|${green(name)}|${timeString}|${green(status)}|`); |
70 |
|
|
} |
71 |
|
|
|
72 |
|
|
export async function registrationEnd() { |
73 |
|
|
if (process.env.ENV === 'prod' || !process.argv.includes('--verbose')) |
74 |
|
|
return; |
75 |
|
|
|
76 |
|
|
console.log(`+-----------------------------------------------------+`); |
77 |
|
|
console.log(`\n`); |
78 |
|
|
} |