-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: clean up owner command and otplease (#4528)
- Loading branch information
Showing
2 changed files
with
64 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
const prompt = 'This operation requires a one-time password.\nEnter OTP:' | ||
const readUserInfo = require('./read-user-info.js') | ||
|
||
const isOtpError = err => | ||
err.code === 'EOTP' || (err.code === 'E401' && /one-time pass/.test(err.body)) | ||
|
||
module.exports = otplease | ||
function otplease (opts, fn) { | ||
opts = { prompt, ...opts } | ||
return Promise.resolve().then(() => fn(opts)).catch(err => { | ||
if (!isOtpError(err)) { | ||
async function otplease (opts, fn) { | ||
try { | ||
await 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(opts.prompt) | ||
.then(otp => fn({ ...opts, otp })) | ||
const otp = await readUserInfo.otp('This operation requires a one-time password.\nEnter OTP:') | ||
return fn({ ...opts, otp }) | ||
} | ||
}) | ||
} | ||
} |