better-auth
Version:
The most comprehensive authentication framework for TypeScript.
386 lines (375 loc) • 12.9 kB
JavaScript
import { HIDE_METADATA } from "../../utils/hide-metadata.mjs";
import { isProduction } from "@better-auth/core/env";
import { createAuthEndpoint } from "@better-auth/core/api";
//#region src/api/routes/error.ts
function sanitize(input) {
return input.replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'").replace(/&(?!amp;|lt;|gt;|quot;|#39;|#x[0-9a-fA-F]+;|#[0-9]+;)/g, "&");
}
const html = (options, code = "Unknown", description = null) => {
const custom = options.onAPIError?.customizeDefaultErrorPage;
return `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error</title>
<style>
* {
box-sizing: border-box;
}
body {
font-family: ${custom?.font?.defaultFamily || "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif"};
background: ${custom?.colors?.background || "var(--background)"};
color: var(--foreground);
margin: 0;
}
:root,
:host {
--spacing: 0.25rem;
--container-md: 28rem;
--text-sm: ${custom?.size?.textSm || "0.875rem"};
--text-sm--line-height: calc(1.25 / 0.875);
--text-2xl: ${custom?.size?.text2xl || "1.5rem"};
--text-2xl--line-height: calc(2 / 1.5);
--text-4xl: ${custom?.size?.text4xl || "2.25rem"};
--text-4xl--line-height: calc(2.5 / 2.25);
--text-6xl: ${custom?.size?.text6xl || "3rem"};
--text-6xl--line-height: 1;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
--default-transition-duration: 150ms;
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
--radius: ${custom?.size?.radiusSm || "0.625rem"};
--default-mono-font-family: ${custom?.font?.monoFamily || "var(--font-geist-mono)"};
--primary: ${custom?.colors?.primary || "black"};
--primary-foreground: ${custom?.colors?.primaryForeground || "white"};
--background: ${custom?.colors?.background || "white"};
--foreground: ${custom?.colors?.foreground || "oklch(0.271 0 0)"};
--border: ${custom?.colors?.border || "oklch(0.89 0 0)"};
--destructive: ${custom?.colors?.destructive || "oklch(0.55 0.15 25.723)"};
--muted-foreground: ${custom?.colors?.mutedForeground || "oklch(0.545 0 0)"};
--corner-border: ${custom?.colors?.cornerBorder || "#404040"};
}
button, .btn {
cursor: pointer;
background: none;
border: none;
color: inherit;
font: inherit;
transition: all var(--default-transition-duration)
var(--default-transition-timing-function);
}
button:hover, .btn:hover {
opacity: 0.8;
}
@media (prefers-color-scheme: dark) {
:root,
:host {
--primary: ${custom?.colors?.primary || "white"};
--primary-foreground: ${custom?.colors?.primaryForeground || "black"};
--background: ${custom?.colors?.background || "oklch(0.15 0 0)"};
--foreground: ${custom?.colors?.foreground || "oklch(0.98 0 0)"};
--border: ${custom?.colors?.border || "oklch(0.27 0 0)"};
--destructive: ${custom?.colors?.destructive || "oklch(0.65 0.15 25.723)"};
--muted-foreground: ${custom?.colors?.mutedForeground || "oklch(0.65 0 0)"};
--corner-border: ${custom?.colors?.cornerBorder || "#a0a0a0"};
}
}
@media (max-width: 640px) {
:root, :host {
--text-6xl: 2.5rem;
--text-2xl: 1.25rem;
--text-sm: 0.8125rem;
}
}
@media (max-width: 480px) {
:root, :host {
--text-6xl: 2rem;
--text-2xl: 1.125rem;
}
}
</style>
</head>
<body style="width: 100vw; min-height: 100vh; overflow-x: hidden; overflow-y: auto;">
<div
style="
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1.5rem;
position: relative;
width: 100%;
min-height: 100vh;
padding: 1rem;
"
>
${custom?.disableBackgroundGrid ? "" : `
<div
style="
position: absolute;
inset: 0;
background-image: linear-gradient(to right, ${custom?.colors?.gridColor || "var(--border)"} 1px, transparent 1px),
linear-gradient(to bottom, ${custom?.colors?.gridColor || "var(--border)"} 1px, transparent 1px);
background-size: 40px 40px;
opacity: 0.6;
pointer-events: none;
width: 100vw;
height: 100vh;
"
></div>
<div
style="
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: ${custom?.colors?.background || "var(--background)"};
mask-image: radial-gradient(ellipse at center, transparent 20%, black);
-webkit-mask-image: radial-gradient(ellipse at center, transparent 20%, black);
pointer-events: none;
"
></div>
`}
<div
style="
position: relative;
z-index: 10;
border: 2px solid var(--border);
background: ${custom?.colors?.cardBackground || "var(--background)"};
padding: 1.5rem;
max-width: 42rem;
width: 100%;
"
>
${custom?.disableCornerDecorations ? "" : `
<!-- Corner decorations -->
<div
style="
position: absolute;
top: -2px;
left: -2px;
width: 2rem;
height: 2rem;
border-top: 4px solid var(--corner-border);
border-left: 4px solid var(--corner-border);
"
></div>
<div
style="
position: absolute;
top: -2px;
right: -2px;
width: 2rem;
height: 2rem;
border-top: 4px solid var(--corner-border);
border-right: 4px solid var(--corner-border);
"
></div>
<div
style="
position: absolute;
bottom: -2px;
left: -2px;
width: 2rem;
height: 2rem;
border-bottom: 4px solid var(--corner-border);
border-left: 4px solid var(--corner-border);
"
></div>
<div
style="
position: absolute;
bottom: -2px;
right: -2px;
width: 2rem;
height: 2rem;
border-bottom: 4px solid var(--corner-border);
border-right: 4px solid var(--corner-border);
"
></div>`}
<div style="text-align: center; margin-bottom: 1.5rem;">
<div style="margin-bottom: 1.5rem;">
<div
style="
display: inline-block;
border: 2px solid ${custom?.disableTitleBorder ? "transparent" : custom?.colors?.titleBorder || "var(--destructive)"};
padding: 0.375rem 1rem;
"
>
<h1
style="
font-size: var(--text-6xl);
font-weight: var(--font-weight-semibold);
color: ${custom?.colors?.titleColor || "var(--foreground)"};
letter-spacing: -0.02em;
margin: 0;
"
>
ERROR
</h1>
</div>
<div
style="
height: 2px;
background-color: var(--border);
width: calc(100% + 3rem);
margin-left: -1.5rem;
margin-top: 1.5rem;
"
></div>
</div>
<h2
style="
font-size: var(--text-2xl);
font-weight: var(--font-weight-semibold);
color: var(--foreground);
margin: 0 0 1rem;
"
>
Something went wrong
</h2>
<div
style="
display: inline-flex;
align-items: center;
gap: 0.5rem;
border: 2px solid var(--border);
background-color: var(--muted);
padding: 0.375rem 0.75rem;
margin: 0 0 1rem;
flex-wrap: wrap;
justify-content: center;
"
>
<span
style="
font-size: 0.75rem;
color: var(--muted-foreground);
font-weight: var(--font-weight-semibold);
"
>
CODE:
</span>
<span
style="
font-size: var(--text-sm);
font-family: var(--default-mono-font-family, monospace);
color: var(--foreground);
word-break: break-all;
"
>
${sanitize(code)}
</span>
</div>
<p
style="
color: var(--muted-foreground);
max-width: 28rem;
margin: 0 auto;
font-size: var(--text-sm);
line-height: 1.5;
text-wrap: pretty;
"
>
${!description ? `We encountered an unexpected error. Please try again or return to the home page. If you're a developer, you can find more information about the error <a href='https://better-auth.com/docs/errors/${encodeURIComponent(code)}' target='_blank' rel="noopener noreferrer" style='color: var(--foreground); text-decoration: underline;'>here</a>.` : description}
</p>
</div>
<div
style="
display: flex;
gap: 0.75rem;
margin-top: 1.5rem;
justify-content: center;
flex-wrap: wrap;
"
>
<a
href="/"
style="
text-decoration: none;
"
>
<div
style="
border: 2px solid var(--border);
background: var(--primary);
color: var(--primary-foreground);
padding: 0.5rem 1rem;
border-radius: 0;
white-space: nowrap;
"
class="btn"
>
Go Home
</div>
</a>
<a
href="https://better-auth.com/docs/errors/${encodeURIComponent(code)}?askai=${encodeURIComponent(`What does the error code ${code} mean?`)}"
target="_blank"
rel="noopener noreferrer"
style="
text-decoration: none;
"
>
<div
style="
border: 2px solid var(--border);
background: transparent;
color: var(--foreground);
padding: 0.5rem 1rem;
border-radius: 0;
white-space: nowrap;
"
class="btn"
>
Ask AI
</div>
</a>
</div>
</div>
</div>
</body>
</html>`;
};
const error = createAuthEndpoint("/error", {
method: "GET",
metadata: {
...HIDE_METADATA,
openapi: {
description: "Displays an error page",
responses: { "200": {
description: "Success",
content: { "text/html": { schema: {
type: "string",
description: "The HTML content of the error page"
} } }
} }
}
}
}, async (c) => {
const url = new URL(c.request?.url || "");
const unsanitizedCode = url.searchParams.get("error") || "UNKNOWN";
const unsanitizedDescription = url.searchParams.get("error_description") || null;
const safeCode = /^[\'A-Za-z0-9_-]+$/.test(unsanitizedCode || "") ? unsanitizedCode : "UNKNOWN";
const safeDescription = unsanitizedDescription ? sanitize(unsanitizedDescription) : null;
const queryParams = new URLSearchParams();
queryParams.set("error", safeCode);
if (unsanitizedDescription) queryParams.set("error_description", unsanitizedDescription);
const options = c.context.options;
const errorURL = options.onAPIError?.errorURL;
if (errorURL) return new Response(null, {
status: 302,
headers: { Location: `${errorURL}${errorURL.includes("?") ? "&" : "?"}${queryParams.toString()}` }
});
if (isProduction && !options.onAPIError?.customizeDefaultErrorPage) return new Response(null, {
status: 302,
headers: { Location: `/?${queryParams.toString()}` }
});
return new Response(html(c.context.options, safeCode, safeDescription), { headers: { "Content-Type": "text/html" } });
});
//#endregion
export { error };
//# sourceMappingURL=error.mjs.map