%PDF- %PDF-
| Direktori : /opt/plesk/node/17/lib/node_modules/npm/lib/utils/ |
| Current File : //opt/plesk/node/17/lib/node_modules/npm/lib/utils/otplease.js |
async function otplease (opts, fn) {
try {
return await fn(opts)
} catch (err) {
const readUserInfo = require('./read-user-info.js')
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 {
const otp = await readUserInfo.otp('This operation requires a one-time password.\nEnter OTP:')
return await fn({ ...opts, otp })
}
}
}
module.exports = otplease