node/deps/npm/lib/utils/read-user-info.js
Ruy Adorno 730ba5c039
deps: upgrade npm to 7.5.3
PR-URL: https://github.com/nodejs/node/pull/37283
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2021-02-09 10:23:19 -05:00

66 lines
2.0 KiB
JavaScript

const { promisify } = require('util')
const readAsync = promisify(require('read'))
const userValidate = require('npm-user-validate')
const log = require('npmlog')
exports.otp = readOTP
exports.password = readPassword
exports.username = readUsername
exports.email = readEmail
const otpPrompt = `This command requires a one-time password (OTP) from your authenticator app.
Enter one below. You can also pass one on the command line by appending --otp=123456.
For more information, see:
https://docs.npmjs.com/getting-started/using-two-factor-authentication
Enter OTP: `
const passwordPrompt = 'npm password: '
const usernamePrompt = 'npm username: '
const emailPrompt = 'email (this IS public): '
function read (opts) {
log.clearProgress()
return readAsync(opts).finally(() => log.showProgress())
}
function readOTP (msg = otpPrompt, otp, isRetry) {
if (isRetry && otp && /^[\d ]+$|^[A-Fa-f0-9]{64,64}$/.test(otp))
return otp.replace(/\s+/g, '')
return read({ prompt: msg, default: otp || '' })
.then((otp) => readOTP(msg, otp, true))
}
function readPassword (msg = passwordPrompt, password, isRetry) {
if (isRetry && password)
return password
return read({ prompt: msg, silent: true, default: password || '' })
.then((password) => readPassword(msg, password, true))
}
function readUsername (msg = usernamePrompt, username, opts = {}, isRetry) {
if (isRetry && username) {
const error = userValidate.username(username)
if (error)
opts.log && opts.log.warn(error.message)
else
return Promise.resolve(username.trim())
}
return read({ prompt: msg, default: username || '' })
.then((username) => readUsername(msg, username, opts, true))
}
function readEmail (msg = emailPrompt, email, opts = {}, isRetry) {
if (isRetry && email) {
const error = userValidate.email(email)
if (error)
opts.log && opts.log.warn(error.message)
else
return email.trim()
}
return read({ prompt: msg, default: email || '' })
.then((username) => readEmail(msg, username, opts, true))
}