forked from lastboy/package-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpkgscript.js
executable file
·425 lines (364 loc) · 12 KB
/
pkgscript.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
/*
* Package Script Module
*
*/
"use strict";
var logger = require("./utils/Logger.js"),
globalutils = require("./utils/Global.js"),
utils = require("./utils/Utils.js"),
_ = require('underscore'),
isLinux = utils.isLinux(),
spawn,
sudoopt = {
cachePassword: true,
prompt: 'Additional global npm(s) about to be installed, set your root password: ',
spawnOptions: { /* other options for spawn */ }
},
cprocess,
commands = [],
next= 0, size,
cparg = require('child_process'),
sudoarg = require('sudo'),
jsutils = require("js.utils");
/**
* The default system value for the admin user is true
*
* @returns {boolean} The default admin value
*/
function getDefaultAdmin() {
return true;
}
function getDefaultInit() {
return {
log: true
};
}
/**
* Set the current spawn object.
* Can be sudo for getting the admin prompt or child_process
*
* @param admin
*/
function setSpawnObject(admin) {
admin = ((admin === undefined) ? getDefaultAdmin() : admin);
if (isLinux && admin) {
spawn = sudoarg;
} else {
spawn = cparg.spawn;
}
return admin;
}
/**
* Initialization functionality
*/
function init() {
var log = "Package Script installer Initialized ....";
logger.logall(log);
setSpawnObject();
}
/**
* Run a single spawn operation according to the given configuration
*
* @param items The passed configuration items
* @param callback The functionality to be called on complete
*/
function install(items, callback) {
var item = items[next],
command = item.command,
args = item.args,
admin = item.admin,
spawnopt = (item.spawnopt || {}),
print;
// set the spawn object according to the passed admin argument
admin = setSpawnObject(admin);
// run the command
if (isLinux) {
if (admin) {
// use sudo
args.unshift(command);
print = args.join(" ");
logger.console.log("[package-script] Running Installer command: " + print);
sudoopt.spawnOptions = {};
jsutils.Object.copy(spawnopt, sudoopt.spawnOptions);
cprocess = spawn(args, sudoopt);
} else {
//use child_process
print = args.join(" ");
logger.console.log("[package-script] Running Installer command: " + command + " " + print);
cprocess = spawn(command, args, spawnopt);
}
} else {
args.unshift(command);
args.unshift("/c");
command = "cmd";
print = [command, args.join(" ")].join(" ");
logger.console.log("[package-script] Running Installer command: " + print);
cprocess = spawn(command, args, spawnopt);
}
// -- Spawn Listeners
cprocess.stdout.on('data', function (data) {
var log = 'CAT Installer: ' + data;
logger.logall(log);
});
cprocess.stderr.on('data', function (data) {
if (data && (new String(data)).indexOf("npm ERR") != -1) {
logger.logall('Package Script : ' + data);
} else {
logger.log2file('Package Script : ' + data);
}
});
cprocess.on('close', function (code) {
logger.log2file('Package Script Complete ' + code);
next++;
if (next < size) {
install(items, callback);
} else {
// callback
if (callback && _.isFunction(callback)) {
callback.call(this, code);
}
}
});
}
function initialize(config) {
var defaults = getDefaultInit(),
key;
if (config) {
for (key in defaults) {
globalutils.set(key, ( (key in config) ? config[key] : defaults[key] ));
if (jsutils) {
jsutils.init(config);
}
}
}
}
// Initialization
(function() {
init();
initialize({});
})();
function _packageProcess(config, callback) {
var configval = [],
names = [],
baseobj = {
command: "npm",
args: [config.action]
},
isinstalled = config.isinstalled,
spawnconfig = config.config,
isglobal = config.global,
isDebug = ('debug' in config ? (config.debug || 0) : 0),
depth = ('depth' in config ? (config.depth || "10") : "10"),
entry;
if (spawnconfig && _.isArray(spawnconfig)) {
spawnconfig.forEach(function(item) {
if (item) {
entry = {args:[]};
jsutils.Object.copy(baseobj, entry);
if (isglobal) {
entry.args.push("-g");
}
if (item.args) {
entry.args = entry.args.concat(item.args);
}
if (item.name) {
entry.args.push(item.name);
entry.name = item.name;
names.push (item.name);
} else {
logger.console.error("[package-script install] 'name' is require parameter");
}
entry.admin = (('admin' in item) ? item.admin : undefined);
entry.spawnopt = (('spawnopt' in item) ? item.spawnopt : undefined);
configval.push(entry);
}
});
} else {
logger.logall("[package-script] No valid configuration for 'install' function, see the docs for more information ");
}
jsutils.NPM.installed({global: isglobal, list: names, depth:depth, debug:isDebug}, function() {
var data = this.data,
newarr = [];
if (data) {
configval.forEach(function(item){
if (item) {
if (item.name) {
if (!isinstalled) {
if (!data[item.name]) {
newarr.push(item);
}
} else {
if (data[item.name]) {
newarr.push(item);
}
}
}
}
});
}
if (callback) {
callback.call({data: newarr});
}
});
}
/**
* Executing multiple calls synchronously according to a given configuration
*
* @type {module.exports}
*/
module.exports = function() {
return {
/**
* Initialization Settings
*
* @param config The initialization configuration
* e.g. {
* log: false
* }
*/
init: function(config) {
return initialize(config)
},
/**
* spawn additional command according to the config
*
* @param config The configuration for the spawn
* e.g. [{
* admin: true, [optional (for now, linux support only)],
* spawnopt: {cwd: '.'} [optional] (see child_process spawn docs)
* command: 'npm',
* args: ["--version"]
* }]
*
* @param init The initial configuration, can be set in separate method (see 'init')
* @param callback The callback functionality
*/
spawn: function(config, init, callback) {
var me = this;
// first initialize
if (init) {
this.init(init);
}
logger.log2file("\n\n************ Package Script ************************************* process id: " + process.pid);
if (config && _.isArray(config)) {
commands = commands.concat(config);
size = commands.length;
if (size > 0) {
install(commands, function() {
logger.logall("[package-script] process completed, see pkgscript.log for more information");
if (callback) {
callback.call(me);
}
});
}
} else {
logger.logall("[package-script] No valid configuration for 'install' function, see the docs for more information ");
}
},
// TODO unify to generic - the configuration passed to the install/uninstall
/**
* Install packages
*
* @param config {Array} The configuration for the install
* name {String} The package name
* admin {Boolean} Get admin prompt (default to true)
* spawnopt {Object} {cwd: '.'} [optional] (see child_process spawn docs)
*
* e.g. [{
* admin: false,
* name: "test"
* }]
*
* @param opt The optional configuration
* init The initial settings
* global {Boolean} specify if the given packages are global or not
* log {Boolean} specify if to set the log to off or on optional values [true/false]
*
* callback The callback functionality
*/
install: function(config, opt) {
var me = this,
configvar = {},
callback,
init;
if (opt) {
init = (opt.init || undefined);
callback = (opt.callback || undefined);
} else {
opt = {};
}
configvar.action = "install";
configvar.isinstalled = false;
configvar.config = config,
configvar.global = ((init && 'global' in init) ? init.global : false);
configvar.debug = opt.debug;
configvar.depth = opt.depth;
if (init) {
this.init(init);
}
_packageProcess(configvar, function() {
if (this.data && _.isArray(this.data) && this.data.length > 0) {
me.spawn(this.data, init, function(){
if (callback) {
callback.call(me);
}
});
} else {
if (callback) {
callback.call(me);
}
}
});
},
/**
* UnInstall packages
*
* @param config {Array} The configuration for the uninstall
* name {String} The package name
* admin {Boolean} Get admin prompt (default to true)
* spawnopt {Object} {cwd: '.'} [optional] (see child_process spawn docs)
*
* e.g. [{
* admin: false,
* name: "test"
* }]
*
* @param opt The optional configuration
* init The initial settings
* global {Boolean} specify if the given packages are global or not
* log {Boolean} specify if to set the log to off or on optional values [true/false]
*
* callback The callback functionality
*/
uninstall: function(config, opt) {
var me = this,
configvar = {},
callback,
init;
if (opt) {
init = (opt.init || undefined);
callback = (opt.callback || undefined);
} else {
opt = {};
}
configvar.action = "rm";
configvar.isinstalled = true;
configvar.config = config,
configvar.global = ((init && 'global' in init) ? init.global : false);
configvar.debug = opt.debug;
configvar.depth = opt.depth;
if (init) {
this.init(init);
}
_packageProcess(configvar, function() {
if (this.data) {
me.spawn(this.data, init, function() {
if (callback) {
callback.call(me);
}
});
}
});
}
};
}();