-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathares-install.js
executable file
·223 lines (201 loc) · 6.02 KB
/
ares-install.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
#!/usr/bin/env node
/*
* Copyright (c) 2020-2024 LG Electronics Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
const async = require('async'),
fs = require('fs'),
nopt = require('nopt'),
log = require('npmlog'),
path = require('path'),
installLib = require('./../lib/install'),
commonTools = require('./../lib/base/common-tools'),
convertJsonToList = require('./../lib/util/json').convertJsonToList,
spinner = require('../lib/util/spinner');
const version = commonTools.version,
cliControl = commonTools.cliControl,
help = commonTools.help,
setupDevice = commonTools.setupDevice,
appdata = commonTools.appdata,
errHndl = commonTools.errMsg;
const processName = path.basename(process.argv[1]).replace(/.js/, '');
process.on('uncaughtException', function(err) {
spinner.stop();
log.error('uncaughtException', err.toString());
log.verbose('uncaughtException', err.stack);
cliControl.end(-1);
});
if (process.argv.length === 2) {
process.argv.splice(2, 0, '--help');
}
const knownOpts = {
"device": [String, null],
"device-list": Boolean,
"list": Boolean,
"listfull": Boolean,
"type": [String, null],
"install": path,
"remove": String,
"opkg": Boolean,
"opkg-param": [String, null],
"version": Boolean,
"help": Boolean,
"hidden-help": Boolean,
"level": ['silly', 'verbose', 'info', 'http', 'warn', 'error']
};
const shortHands = {
"d": ["--device"],
"i": ["--install"],
"r": ["--remove"],
"o": ["--opkg"],
"op": ["--opkg-param"],
"l": ["--list"],
"F": ["--listfull"],
"t": ["--type"],
"D": ["--device-list"],
"V": ["--version"],
"h": ["--help"],
"hh": ["--hidden-help"],
"v": ["--level", "verbose"]
};
const argv = nopt(knownOpts, shortHands, process.argv, 2 /* drop 'node' & 'ares-*.js' */);
log.heading = processName;
log.level = argv.level || 'warn';
installLib.log.level = log.level;
log.verbose("argv", argv);
/**
* For consistent of "$command -v", argv is used.
* By nopt, argv is parsed and set key-value in argv object.
* If -v or --level option is input with command, it is set key-value in argv.
* After it is deleted, If remained key is only one in argv object
* (If any other are remained, it's mean another options is input)
* and there is no remaining after parsing the input command by nopt
* (If any other are remained, it's mean another parameters ares input),
* each command of webOS CLI print help message with log message.
*/
if (argv.level) {
delete argv.level;
if (argv.argv.remain.length === 0 && (Object.keys(argv)).length === 1) {
argv.help = true;
}
}
const options = {
appId: 'com.ares.defaultName',
device: argv.device,
opkg: argv.opkg || false,
opkg_param: argv['opkg-param']
};
let op;
if (argv.help || argv['hidden-help']) {
showUsage(argv['hidden-help']);
cliControl.end();
} else if (argv.list) {
op = list;
} else if (argv.listfull) {
op = listFull;
} else if (argv.install) {
op = install;
} else if (argv.remove) {
op = remove;
} else if (argv['device-list']) {
op = deviceList;
} else if (argv.version) {
version.showVersionAndExit();
} else {
op = install;
}
if (op) {
version.checkNodeVersion(function() {
async.series([
op.bind(this)
],finish);
});
}
function showUsage(hiddenFlag) {
if (hiddenFlag) {
help.display(processName, appdata.getConfig(true).profile, hiddenFlag);
} else {
help.display(processName, appdata.getConfig(true).profile);
}
}
function deviceList() {
setupDevice.showDeviceList(finish);
}
function install() {
const pkgPath = argv.install || argv.argv.remain[0];
log.info("install()", "pkgPath:", pkgPath);
if (!pkgPath) {
return finish(errHndl.getErrMsg("EMPTY_VALUE", "PACKAGE_FILE"));
} else {
if (!fs.existsSync(path.normalize(pkgPath))) {
return finish(errHndl.getErrMsg("NOT_EXIST_PATH", pkgPath));
}
installLib.install(options, pkgPath, finish, outputTxt);
}
}
function list() {
installLib.list(options, function(err, pkgs) {
let strPkgs = "";
if (Array.isArray(pkgs)) {
pkgs.forEach(function(pkg) {
if (argv.type) {
if (argv.type !== pkg.type) {
return;
}
}
strPkgs += pkg.id + '\n';
});
}
finish(err, {msg: strPkgs.trim()});
}, outputTxt);
}
function listFull() {
installLib.list(options, function(err, pkgs) {
let strPkgs = "";
if (Array.isArray(pkgs)) {
pkgs.forEach(function(pkg) {
strPkgs += "id : "+ pkg.id + '\n';
delete pkg.id;
strPkgs += convertJsonToList(pkg, 0) + '\n';
});
}
finish(err, {msg: strPkgs.trim()});
}, outputTxt);
}
function remove() {
const pkgId = (argv.remove === 'true') ? argv.argv.remain[0] : argv.remove;
log.info("remove()", "pkgId:", pkgId);
if (!pkgId) {
return finish(errHndl.getErrMsg("EMPTY_VALUE", "APP_ID"));
}
installLib.remove(options, pkgId, finish, outputTxt);
}
function outputTxt(value) {
log.info("outputTxt()", "value:", value);
console.log(value);
}
function finish(err, value) {
spinner.stop();
log.info("finish()");
if (err) {
// handle err from getErrMsg()
if (Array.isArray(err) && err.length > 0) {
for (const index in err) {
log.error(err[index].heading, err[index].message);
}
log.verbose(err[0].stack);
} else {
// handle general err (string & object)
log.error(err.toString());
log.verbose(err.stack);
}
cliControl.end(-1);
} else {
log.verbose("finish()", "value:", value);
if (value && value.msg) {
console.log(value.msg);
}
cliControl.end();
}
}