2015-09-29 17:03:14 +00:00
|
|
|
Promise = require('bluebird')
|
2015-10-01 17:07:53 +00:00
|
|
|
capitano = Promise.promisifyAll(require('capitano'))
|
2015-08-27 14:01:33 +00:00
|
|
|
_ = require('lodash')
|
2015-08-20 19:54:42 +00:00
|
|
|
_.str = require('underscore.string')
|
2015-10-26 13:47:49 +00:00
|
|
|
president = Promise.promisifyAll(require('president'))
|
2015-08-20 19:54:42 +00:00
|
|
|
os = require('os')
|
|
|
|
chalk = require('chalk')
|
|
|
|
|
2015-10-19 17:38:09 +00:00
|
|
|
exports.getGroupDefaults = (group) ->
|
|
|
|
return _.chain(group)
|
|
|
|
.get('options')
|
|
|
|
.map (question) ->
|
|
|
|
return [ question.name, question.default ]
|
|
|
|
.object()
|
|
|
|
.value()
|
|
|
|
|
2015-08-20 19:54:42 +00:00
|
|
|
exports.stateToString = (state) ->
|
|
|
|
percentage = _.str.lpad(state.percentage, 3, '0') + '%'
|
|
|
|
result = "#{chalk.blue(percentage)} #{chalk.cyan(state.operation.command)}"
|
|
|
|
|
|
|
|
switch state.operation.command
|
|
|
|
when 'copy'
|
|
|
|
return "#{result} #{state.operation.from.path} -> #{state.operation.to.path}"
|
|
|
|
when 'replace'
|
|
|
|
return "#{result} #{state.operation.file.path}, #{state.operation.copy} -> #{state.operation.replace}"
|
|
|
|
when 'run-script'
|
|
|
|
return "#{result} #{state.operation.script}"
|
|
|
|
else
|
|
|
|
throw new Error("Unsupported operation: #{state.operation.type}")
|
2015-09-29 17:03:14 +00:00
|
|
|
|
2015-10-01 17:07:53 +00:00
|
|
|
exports.sudo = (command) ->
|
|
|
|
command = _.union(_.take(process.argv, 2), command)
|
|
|
|
|
2015-11-12 17:30:48 +00:00
|
|
|
if os.platform() isnt 'win32'
|
|
|
|
console.log('Type your computer password to continue')
|
|
|
|
|
2015-10-26 13:47:49 +00:00
|
|
|
return president.executeAsync(command)
|