-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·303 lines (283 loc) · 7.37 KB
/
index.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
#!/usr/bin/env node
var path = require('path');
var appDir = path.dirname(require.main.filename);
const fs = require('fs');
const jsonPath = appDir+'/tmp/jdata.json'
const jdata = require(jsonPath);
const { spawn } = require('child_process');
const inq = require('inquirer');
const { version } = require('./package.json');
var argv = (process.argv.slice(2))
if(argv.length===0){
help()
}else{
try{
switch(argv[0]){
case "add":
addCmd()
break;
case "update":
updateCmd();
break;
case "all":
showAllName();
break;
case "delete":
deleteCmd()
break;
case "-h":
help()
break;
case "-v":
console.log(`App version: ${version}`)
break;
case "--version":
console.log(`App version: ${version}`)
break;
default:
executeCmd(argv[0])
}
}catch(err){
console.log(err)
}
}
function help(){
console.log('my add to add new name with commands')
console.log('my <command name> to execute nameing command')
console.log('my delete to delete name with commands')
console.log('my all to see all executable command names with commands')
console.log('my update to update existing names with commands')
console.log('my -h to get help')
console.log('my -v to see version of this pakcage')
}
//help
function addCmd(){
//create object
var data = {
"name": "fuck",
"command":[]
}
function dataAdd(data){
if(data === [])
jdata = []
jdata.push(data)
var buffer = Buffer.from(JSON.stringify(jdata))
fs.writeFileSync(jsonPath, buffer, {flag : 'w'})
}
inq.prompt([
{
type: "input",
name: 'client',
message: "What will be the name? "
}
]).then(answer => {
if(answer.client===""){
console.log(string.empty_name)
return;
}
if(answer.client==="add" || answer.client==="all" || answer.client==="delete" || answer.client==="update" || answer.client==="-h" || answer.client==="-v"){
console.log('This is reserve command. Try something else.')
return;
}
for(var i=0; i<jdata.length; i++){
if(jdata[i].name===answer.client){
console.log('You have used this name already.')
return;
}
}
data.name=answer.client;
console.log(data)
var callCMD = async ()=>{
while (true) {
const answer = await inq.prompt([
{
type: "input",
name: 'command',
message: "Give executable command: "
}
])
data.command.push(answer)
// console.log(data)
const nextAnswer = await inq.prompt([
{
type: "input",
name: 'question',
message: "Do you want to add more command?(y/n)"
}
])
if(nextAnswer.question!="y"){
dataAdd(data)
break
}
}
}
try{
callCMD()
}catch(err){
console.log(err)
}
}).catch(error => {
console.log(error)
})
}
// addcmd
function updateCmd(){
inq.prompt([
{
type: 'input',
name: 'update_client',
message: 'Which naming commands you want to change?'
}
]).then(answer =>{
if(answer.update_client==="add" || answer.update_client==="all" || answer.update_client==="delete" || answer.update_client==="update" || answer.update_client==="-h" || answer.update_client==="-v"){
console.log('This is reserved command.')
return;
}
for(var i=0; i<jdata.length; i++){
if(jdata[i].name===answer.update_client){
try{
updateCmdName(i);
}catch(err){
console.log(err)
}
return;
}
}
console.log('No command found by this name.')
}).catch(error =>{
console.log(error)
})
}
function updateCmdName(i){
inq.prompt([
{
type: 'input',
name: 'update',
message: 'Which naming commands you want to change?'
}
]).then(answer => {
if(answer.update===''){
console.log('No command found, give a valid command.')
return;
}
if(answer.update != jdata[i].name){
jdata[i].name = answer.update
fs.writeFileSync(jsonPath, JSON.stringify(jdata))
}
})
}
// updateCmdName
async function executeCmd(commandName){
for(var i=0; i<jdata.length; i++){
if(jdata[i].name===commandName){
if (!/^win/.test(process.platform)) { // linux
await cmdRun(i)
} else { // windows
await cmdRunWin(i)
}
return
// return await cmdRun(i);
}
}
console.log('No command found by this name')
}
//executeCmd
async function cmdRunWin(number) {
for(var i=0;i<jdata[number].command.length;i++){
var runcmd = await spawn(
'cmd',
[
'-c',
`${jdata[number].command[i].command}`,
], {
detached: true,
shell: true,
stdio: ['inherit', 'inherit', 'inherit']
},
(error, stdout, stderr, exit) => {
if(error){
console.log(`Output of ${jdata[0].command[i].command}: ${error}`)
}
if(stdout){
console.log(`Output of ${jdata[0].command[i].command}: ${stdout}`);
}
if(stderr){
console.log(`Output of ${jdata[0].command[i].command}: ${stderr}`);
}
});
runcmd.on('exit', (code) => {
console.log(`child process exited with code ${code}`);
});
}
}
async function cmdRun(number) {
for(var i=0;i<jdata[number].command.length;i++){
var runcmd = await spawn(
'sh',
[
'-c',
`${jdata[number].command[i].command}`,
], {
detached: true,
stdio: ['inherit', 'inherit', 'inherit']
},
(error, stdout, stderr, exit) => {
if(error){
console.log(`Output of ${jdata[0].command[i].command}: ${error}`)
}
if(stdout){
console.log(`Output of ${jdata[0].command[i].command}: ${stdout}`);
}
if(stderr){
console.log(`Output of ${jdata[0].command[i].command}: ${stderr}`);
}
if(exit){
console.log('command exited')
}
});
runcmd.on('exit', (code) => {
console.log(`child process exited with code ${code}`);
});
}
}
//executeRun
function deleteCmd(){
inq.prompt([
{
type: 'input',
name:'nameofpacket',
message: 'Which command packet you want to delete?'
}
]).then(answer=>{
if(answer.nameofpacket==="add" || answer.nameofpacket==="all" || answer.nameofpacket==="delete" || answer.nameofpacket==="update" || answer.nameofpacket==="-h" || answer.nameofpacket==="-v"){
console.log('This is a reserved command.')
return;
}
console.log(answer.nameofpacket)
for(var i=0;i<jdata.length;i++){
if(jdata[i].name===answer.nameofpacket){
jdata.splice(i,1)
fs.writeFileSync(jsonPath, JSON.stringify(jdata))
console.log(`Deleted this "${answer.nameofpacket}" name command packet`)
return;
}
}
console.log('No command found by this name.')
}).catch(error=>{
console.log(error)
})
}
//deleteCmd
function showAllName(){
if(jdata.length==0){
console.log('No command is available')
return;
}
for(var i=0; i<jdata.length; i++){
console.log(`my ${jdata[i].name}:`)
for(var cmd=0;cmd<jdata[i].command.length; cmd++){
console.log(` --- ${jdata[i].command[cmd].command}`)
}
console.log(`\n`)
}
}