summaryrefslogtreecommitdiff
path: root/deps/npm/lib/utils/otplease.js
blob: d0477a896d004944254ae3fa4c33458109526e9a (plain)
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
'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})))
    }
  })
}