Files
hanko/docs/static/jsdoc/hanko-frontend-sdk/lib_client_PasscodeClient.ts.html
bjoern-m 2df6f9118c Feat conditional UI (#255)
* feat: Add conditional UI support
2022-10-07 15:32:46 +02:00

254 lines
10 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> lib/client/PasscodeClient.ts</title>
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script src="./build/entry.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,400,700|Inconsolata,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="https://jmblog.github.io/color-themes-for-google-code-prettify/themes/tomorrow-night.min.css">
<link type="text/css" rel="stylesheet" href="styles/app.min.css">
<link type="text/css" rel="stylesheet" href="styles/iframe.css">
<link type="text/css" rel="stylesheet" href="">
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body class="layout small-header">
<div id="stickyNavbarOverlay"></div>
<div class="top-nav">
<div class="inner">
<a id="hamburger" role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
<div class="logo">
</div>
<div class="menu">
<div class="navigation">
<a
href="index.html"
class="link"
>
Documentation
</a>
</div>
</div>
</div>
</div>
<div id="main">
<div
class="sidebar "
id="sidebarNav"
>
<nav>
<h2><a href="index.html">Documentation</a></h2><div class="category"><h3>Classes</h3><ul><li><a href="Hanko.html">Hanko</a></li></ul></div><div class="category"><h2>SDK</h2><h3>Classes / Internal</h3><ul><li><a href="Client.html">Client</a></li><li><a href="Headers.html">Headers</a></li><li><a href="HttpClient.html">HttpClient</a></li><li><a href="PasscodeState.html">PasscodeState</a></li><li><a href="PasswordState.html">PasswordState</a></li><li><a href="Response.html">Response</a></li><li><a href="State.html">State</a></li><li><a href="UserState.html">UserState</a></li><li><a href="WebauthnState.html">WebauthnState</a></li></ul><h3>Classes / Clients</h3><ul><li><a href="ConfigClient.html">ConfigClient</a></li><li><a href="PasscodeClient.html">PasscodeClient</a></li><li><a href="PasswordClient.html">PasswordClient</a></li><li><a href="UserClient.html">UserClient</a></li><li><a href="WebauthnClient.html">WebauthnClient</a></li></ul><h3>Classes / Errors</h3><ul><li><a href="ConflictError.html">ConflictError</a></li><li><a href="HankoError.html">HankoError</a></li><li><a href="InvalidPasscodeError.html">InvalidPasscodeError</a></li><li><a href="InvalidPasswordError.html">InvalidPasswordError</a></li><li><a href="InvalidWebauthnCredentialError.html">InvalidWebauthnCredentialError</a></li><li><a href="MaxNumOfPasscodeAttemptsReachedError.html">MaxNumOfPasscodeAttemptsReachedError</a></li><li><a href="NotFoundError.html">NotFoundError</a></li><li><a href="PasscodeExpiredError.html">PasscodeExpiredError</a></li><li><a href="RequestTimeoutError.html">RequestTimeoutError</a></li><li><a href="TechnicalError.html">TechnicalError</a></li><li><a href="TooManyRequestsError.html">TooManyRequestsError</a></li><li><a href="UnauthorizedError.html">UnauthorizedError</a></li><li><a href="WebauthnRequestCancelledError.html">WebauthnRequestCancelledError</a></li></ul><h3>Classes / Utilities</h3><ul><li><a href="WebauthnSupport.html">WebauthnSupport</a></li></ul><h3>Interfaces / DTO</h3><ul><li><a href="Config.html">Config</a></li><li><a href="Credential.html">Credential</a></li><li><a href="Passcode.html">Passcode</a></li><li><a href="PasswordConfig.html">PasswordConfig</a></li><li><a href="User.html">User</a></li><li><a href="UserInfo.html">UserInfo</a></li><li><a href="WebauthnFinalized.html">WebauthnFinalized</a></li></ul><h3>Interfaces / Internal</h3><ul><li><a href="LocalStorage.html">LocalStorage</a></li><li><a href="LocalStoragePasscode.html">LocalStoragePasscode</a></li><li><a href="LocalStoragePassword.html">LocalStoragePassword</a></li><li><a href="LocalStorageUser.html">LocalStorageUser</a></li><li><a href="LocalStorageUsers.html">LocalStorageUsers</a></li><li><a href="LocalStorageWebauthn.html">LocalStorageWebauthn</a></li></ul></div>
</nav>
</div>
<div class="core" id="main-content-wrapper">
<div class="content">
<header class="page-title">
<p>Source</p>
<h1>lib/client/PasscodeClient.ts</h1>
</header>
<section>
<article>
<pre class="prettyprint source linenums"><code>import { PasscodeState } from "../state/PasscodeState";
import { Passcode } from "../Dto";
import {
InvalidPasscodeError,
MaxNumOfPasscodeAttemptsReachedError,
TechnicalError,
TooManyRequestsError,
} from "../Errors";
import { Client } from "./Client";
/**
* A class to handle passcodes.
*
* @constructor
* @category SDK
* @subcategory Clients
* @extends {Client}
*/
class PasscodeClient extends Client {
private state: PasscodeState;
// eslint-disable-next-line require-jsdoc
constructor(api: string, timeout: number) {
super(api, timeout);
/**
* @private
* @type {PasscodeState}
*/
this.state = new PasscodeState();
}
/**
* Causes the API to send a new passcode to the user's email address.
*
* @param {string} userID - The UUID of the user.
* @return {Promise&lt;Passcode>}
* @throws {TooManyRequestsError}
* @throws {RequestTimeoutError}
* @throws {TechnicalError}
* @see https://docs.hanko.io/api/public#tag/Passcode/operation/passcodeInit
*/
initialize(userID: string): Promise&lt;Passcode> {
return new Promise&lt;Passcode>((resolve, reject) => {
this.client
.post("/passcode/login/initialize", { user_id: userID })
.then((response) => {
if (response.ok) {
return response.json();
} else if (response.status === 429) {
const retryAfter = parseInt(
response.headers.get("X-Retry-After") || "0",
10
);
this.state.read().setResendAfter(userID, retryAfter).write();
throw new TooManyRequestsError(retryAfter);
} else {
throw new TechnicalError();
}
})
.then((passcode: Passcode) => {
this.state
.read()
.setActiveID(userID, passcode.id)
.setTTL(userID, passcode.ttl)
.write();
return resolve(passcode);
})
.catch((e) => {
reject(e);
});
});
}
/**
* Validates the passcode obtained from the email.
*
* @param {string} userID - The UUID of the user.
* @param {string} code - The passcode digests.
* @return {Promise&lt;void>}
* @throws {InvalidPasscodeError}
* @throws {MaxNumOfPasscodeAttemptsReachedError}
* @throws {RequestTimeoutError}
* @throws {TechnicalError}
* @see https://docs.hanko.io/api/public#tag/Passcode/operation/passcodeFinal
*/
finalize(userID: string, code: string): Promise&lt;void> {
const passcodeID = this.state.read().getActiveID(userID);
return new Promise&lt;void>((resolve, reject) => {
this.client
.post("/passcode/login/finalize", { id: passcodeID, code })
.then((response) => {
if (response.ok) {
this.state.reset(userID).write();
return resolve();
} else if (response.status === 401) {
throw new InvalidPasscodeError();
} else if (response.status === 410) {
this.state.reset(userID).write();
throw new MaxNumOfPasscodeAttemptsReachedError();
} else {
throw new TechnicalError();
}
})
.catch((e) => {
reject(e);
});
});
}
/**
* Returns the number of seconds the current passcode is active for.
*
* @param {string} userID - The UUID of the user.
* @return {number}
*/
getTTL(userID: string) {
return this.state.read().getTTL(userID);
}
/**
* Returns the number of seconds the rate limiting is active for.
*
* @param {string} userID - The UUID of the user.
* @return {number}
*/
getResendAfter(userID: string) {
return this.state.read().getResendAfter(userID);
}
}
export { PasscodeClient };
</code></pre>
</article>
</section>
</div>
<footer class="footer">
<div class="content has-text-centered">
<p>Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a></p>
<p class="sidebar-created-by">
<a href="https://github.com/SoftwareBrothers/better-docs" target="_blank">BetterDocs theme</a> provided with <i class="fas fa-heart"></i> by
<a href="http://softwarebrothers.co" target="_blank">SoftwareBrothers - JavaScript Development Agency</a>
</p>
</div>
</footer>
</div>
<div id="side-nav" class="side-nav">
</div>
</div>
<script src="scripts/app.min.js"></script>
<script>PR.prettyPrint();</script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>