-
Notifications
You must be signed in to change notification settings - Fork 66
/
cli.js
executable file
·137 lines (124 loc) · 4.04 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
* Copyright 2018 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
import yargs from 'yargs';
import camelcase from 'camelcase';
import path from 'path';
import chalk from 'chalk-template';
import { resetContext } from './fetch-utils.js';
const MIN_MSG = 'You need at least one command.';
function envAwareStrict(args, aliases) {
const specialKeys = ['$0', '--', '_'];
const hlxEnv = {};
Object
.keys(process.env)
.forEach((key) => {
if (key.startsWith('HLX_')) {
throw new Error(chalk`{red warning:} The environment prefix "HLX_" is not supported anymore. Please use "AEM_" instead.`);
}
if (key.startsWith('AEM_')) {
hlxEnv[camelcase(key.substring(4))] = key;
}
});
const unknown = [];
Object.keys(args).forEach((key) => {
if (specialKeys.indexOf(key) === -1 && !(key in hlxEnv) && !(key in aliases)) {
unknown.push(key);
}
});
if (unknown.length > 0) {
return unknown.length === 1 ? `Unknown argument: ${unknown[0]}` : `Unknown arguments: ${unknown.join(', ')}`;
}
if (path.basename(process.argv[1]) === 'hlx') {
return chalk`{red warning:} The "hlx" command is deprecated. Please use "aem" instead.`;
}
return true;
}
/**
* Adds the default logging options.
* @param argv Yargs
* @returns {Yargs} the args
*/
function logArgs(argv) {
return argv
.option('log-file', {
alias: 'logFile',
describe: 'Log file (use "-" for stdout)',
type: 'string',
array: true,
default: '-',
})
.option('log-level', {
alias: 'logLevel',
describe: 'Log level',
type: 'string',
choices: ['silly', 'debug', 'verbose', 'info', 'warn', 'error'],
default: 'info',
});
}
export default class CLI {
constructor() {
this._failFn = (message, err, argv) => {
const msg = err && err.message ? err.message : message;
if (msg) {
// eslint-disable-next-line no-console
console.error(msg);
}
if (msg === MIN_MSG || /.*Unknown argument.*/.test(msg) || /.*Not enough non-option arguments:.*/.test(msg)) {
// eslint-disable-next-line no-console
console.error('\n%s', argv.help());
}
process.exit(1);
};
}
withCommandExecutor(name, exec) {
this._commands[name].executor = exec;
return this;
}
onFail(fn) {
this._failFn = fn;
return this;
}
async initCommands() {
if (!this._commands) {
this._commands = {};
for (const cmd of ['up', 'hack', 'import']) {
if (!this._commands[cmd]) {
// eslint-disable-next-line no-await-in-loop
this._commands[cmd] = (await import(`./${cmd}.js`)).default();
}
}
}
return this;
}
async run(args) {
await this.initCommands();
const argv = yargs();
Object.values(this._commands)
.forEach((cmd) => argv.command(cmd));
logArgs(argv)
.strictCommands(true)
.scriptName('aem')
.usage('Usage: $0 <command> [options]')
.parserConfiguration({ 'camel-case-expansion': false })
.env('AEM_')
.check((a) => envAwareStrict(a, argv.parsed.aliases))
.showHelpOnFail(true)
.fail(this._failFn)
.exitProcess(args.indexOf('--get-yargs-completions') > -1)
.demandCommand(1, MIN_MSG)
.epilogue('use <command> --help to get command specific details.\n\nfor more information, find our manual at https://github.com/adobe/helix-cli')
.help()
.parse(args);
// reset fetch connections so that process can terminate
await resetContext();
}
}