-
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.
- Loading branch information
1 parent
aac01b8
commit 8b65bfd
Showing
2 changed files
with
27 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
const readUserInfo = require('./read-user-info.js') | ||
|
||
module.exports = otplease | ||
async function otplease (opts, fn) { | ||
try { | ||
await fn(opts) | ||
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 fn({ ...opts, otp }) | ||
return await fn({ ...opts, otp }) | ||
} | ||
} | ||
} | ||
|
||
module.exports = otplease |
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