node/deps/npm/lib/utils/otplease.js
Kat Marchán 43dd49c978
deps: upgrade npm to 6.7.0
PR-URL: https://github.com/nodejs/node/pull/25804
Reviewed-By: Myles Borins <myles.borins@gmail.com>
2019-02-12 00:06:29 -08:00

28 lines
721 B
JavaScript

'use strict'
const BB = require('bluebird')
const optCheck = require('figgy-pudding')({
prompt: {default: 'This operation requires a one-time password.\nEnter OTP:'},
otp: {}
})
const readUserInfo = require('./read-user-info.js')
module.exports = otplease
function otplease (opts, fn) {
opts = opts.concat ? opts : optCheck(opts)
return BB.try(() => {
return fn(opts)
}).catch(err => {
if (err.code !== 'EOTP' && !(err.code === 'E401' && /one-time pass/.test(err.body))) {
throw err
} else if (!process.stdin.isTTY || !process.stdout.isTTY) {
throw err
} else {
return readUserInfo.otp(
optCheck(opts).prompt
).then(otp => fn(opts.concat({otp})))
}
})
}