@descope/nextjs-sdk 0.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +493 -0
- package/dist/cjs/client/index.js +52 -0
- package/dist/cjs/client/index.js.map +1 -0
- package/dist/cjs/index.js +20 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/server/authMiddleware.js +97 -0
- package/dist/cjs/server/authMiddleware.js.map +1 -0
- package/dist/cjs/server/constants.js +16 -0
- package/dist/cjs/server/constants.js.map +1 -0
- package/dist/cjs/server/index.js +13 -0
- package/dist/cjs/server/index.js.map +1 -0
- package/dist/cjs/server/logger.js +28 -0
- package/dist/cjs/server/logger.js.map +1 -0
- package/dist/cjs/server/sdk.js +29 -0
- package/dist/cjs/server/sdk.js.map +1 -0
- package/dist/cjs/server/session.js +62 -0
- package/dist/cjs/server/session.js.map +1 -0
- package/dist/cjs/server/utils.js +24 -0
- package/dist/cjs/server/utils.js.map +1 -0
- package/dist/cjs/shared/AuthProvider.js +15 -0
- package/dist/cjs/shared/AuthProvider.js.map +1 -0
- package/dist/cjs/shared/DescopeFlows.js +50 -0
- package/dist/cjs/shared/DescopeFlows.js.map +1 -0
- package/dist/cjs/shared/DescopeWidgets.js +27 -0
- package/dist/cjs/shared/DescopeWidgets.js.map +1 -0
- package/dist/cjs/shared/constants.js +10 -0
- package/dist/cjs/shared/constants.js.map +1 -0
- package/dist/client/dts/src/client/index.d.ts +12 -0
- package/dist/client/dts/src/index.d.ts +1 -0
- package/dist/client/dts/src/server/authMiddleware.d.ts +12 -0
- package/dist/client/dts/src/server/constants.d.ts +9 -0
- package/dist/client/dts/src/server/index.d.ts +3 -0
- package/dist/client/dts/src/server/sdk.d.ts +10 -0
- package/dist/client/dts/src/server/session.d.ts +6 -0
- package/dist/client/dts/src/server/utils.d.ts +1 -0
- package/dist/client/dts/src/shared/AuthProvider.d.ts +3 -0
- package/dist/client/dts/src/shared/DescopeFlows.d.ts +130 -0
- package/dist/client/dts/src/shared/DescopeWidgets.d.ts +72 -0
- package/dist/client/dts/src/shared/constants.d.ts +4 -0
- package/dist/client/dts/src/shared/index.d.ts +3 -0
- package/dist/client/dts/src/types.d.ts +1 -0
- package/dist/client/index.d.ts +12 -0
- package/dist/client/index.js +14 -0
- package/dist/client/index.js.map +1 -0
- package/dist/dts/src/client/index.d.ts +12 -0
- package/dist/dts/src/index.d.ts +1 -0
- package/dist/dts/src/server/authMiddleware.d.ts +12 -0
- package/dist/dts/src/server/constants.d.ts +9 -0
- package/dist/dts/src/server/index.d.ts +3 -0
- package/dist/dts/src/server/sdk.d.ts +10 -0
- package/dist/dts/src/server/session.d.ts +6 -0
- package/dist/dts/src/server/utils.d.ts +1 -0
- package/dist/dts/src/shared/AuthProvider.d.ts +3 -0
- package/dist/dts/src/shared/DescopeFlows.d.ts +130 -0
- package/dist/dts/src/shared/DescopeWidgets.d.ts +72 -0
- package/dist/dts/src/shared/constants.d.ts +4 -0
- package/dist/dts/src/shared/index.d.ts +3 -0
- package/dist/dts/src/types.d.ts +1 -0
- package/dist/esm/client/index.js +3 -0
- package/dist/esm/client/index.js.map +1 -0
- package/dist/esm/index.js +4 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/server/authMiddleware.js +95 -0
- package/dist/esm/server/authMiddleware.js.map +1 -0
- package/dist/esm/server/constants.js +12 -0
- package/dist/esm/server/constants.js.map +1 -0
- package/dist/esm/server/index.js +4 -0
- package/dist/esm/server/index.js.map +1 -0
- package/dist/esm/server/logger.js +25 -0
- package/dist/esm/server/logger.js.map +1 -0
- package/dist/esm/server/sdk.js +26 -0
- package/dist/esm/server/sdk.js.map +1 -0
- package/dist/esm/server/session.js +59 -0
- package/dist/esm/server/session.js.map +1 -0
- package/dist/esm/server/utils.js +22 -0
- package/dist/esm/server/utils.js.map +1 -0
- package/dist/esm/shared/AuthProvider.js +13 -0
- package/dist/esm/shared/AuthProvider.js.map +1 -0
- package/dist/esm/shared/DescopeFlows.js +45 -0
- package/dist/esm/shared/DescopeFlows.js.map +1 -0
- package/dist/esm/shared/DescopeWidgets.js +20 -0
- package/dist/esm/shared/DescopeWidgets.js.map +1 -0
- package/dist/esm/shared/constants.js +8 -0
- package/dist/esm/shared/constants.js.map +1 -0
- package/dist/index.d.ts +212 -0
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -0
- package/dist/server/authMiddleware.js +98 -0
- package/dist/server/authMiddleware.js.map +1 -0
- package/dist/server/constants.js +12 -0
- package/dist/server/constants.js.map +1 -0
- package/dist/server/dts/src/client/index.d.ts +12 -0
- package/dist/server/dts/src/index.d.ts +1 -0
- package/dist/server/dts/src/server/authMiddleware.d.ts +12 -0
- package/dist/server/dts/src/server/constants.d.ts +9 -0
- package/dist/server/dts/src/server/index.d.ts +3 -0
- package/dist/server/dts/src/server/sdk.d.ts +10 -0
- package/dist/server/dts/src/server/session.d.ts +6 -0
- package/dist/server/dts/src/server/utils.d.ts +1 -0
- package/dist/server/dts/src/shared/AuthProvider.d.ts +3 -0
- package/dist/server/dts/src/shared/DescopeFlows.d.ts +130 -0
- package/dist/server/dts/src/shared/DescopeWidgets.d.ts +72 -0
- package/dist/server/dts/src/shared/constants.d.ts +4 -0
- package/dist/server/dts/src/shared/index.d.ts +3 -0
- package/dist/server/dts/src/types.d.ts +1 -0
- package/dist/server/index.d.ts +32 -0
- package/dist/server/index.js +4 -0
- package/dist/server/index.js.map +1 -0
- package/dist/server/sdk.js +27 -0
- package/dist/server/sdk.js.map +1 -0
- package/dist/server/session.js +32 -0
- package/dist/server/session.js.map +1 -0
- package/dist/server/utils.js +22 -0
- package/dist/server/utils.js.map +1 -0
- package/dist/shared/AuthProvider.js +19 -0
- package/dist/shared/AuthProvider.js.map +1 -0
- package/dist/shared/DescopeFlows.js +53 -0
- package/dist/shared/DescopeFlows.js.map +1 -0
- package/dist/shared/DescopeWidgets.js +35 -0
- package/dist/shared/DescopeWidgets.js.map +1 -0
- package/dist/shared/constants.js +8 -0
- package/dist/shared/constants.js.map +1 -0
- package/dist/types/client/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/server/authMiddleware.d.ts +12 -0
- package/dist/types/server/constants.d.ts +9 -0
- package/dist/types/server/index.d.ts +3 -0
- package/dist/types/server/logger.d.ts +25 -0
- package/dist/types/server/sdk.d.ts +9 -0
- package/dist/types/server/session.d.ts +10 -0
- package/dist/types/server/utils.d.ts +1 -0
- package/dist/types/shared/AuthProvider.d.ts +3 -0
- package/dist/types/shared/DescopeFlows.d.ts +141 -0
- package/dist/types/shared/DescopeWidgets.d.ts +54 -0
- package/dist/types/shared/constants.d.ts +4 -0
- package/dist/types/shared/index.d.ts +3 -0
- package/dist/types/types.d.ts +1 -0
- package/package.json +152 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authMiddleware.js","sources":["../../../src/server/authMiddleware.ts"],"sourcesContent":["import { NextRequest, NextResponse } from 'next/server';\nimport descopeSdk from '@descope/node-sdk';\nimport type { AuthenticationInfo } from '@descope/node-sdk';\nimport { DEFAULT_PUBLIC_ROUTES, DESCOPE_SESSION_HEADER } from './constants';\nimport { getGlobalSdk } from './sdk';\nimport { mergeSearchParams } from './utils';\nimport { LogLevel } from '../types';\nimport { logger, setLogger } from './logger';\n\ntype MiddlewareOptions = {\n\t// The Descope project ID to use for authentication\n\t// Defaults to process.env.DESCOPE_PROJECT_ID\n\tprojectId?: string;\n\n\t// The base URL to use for authentication\n\t// Defaults to process.env.DESCOPE_BASE_URL\n\tbaseUrl?: string;\n\n\t// The URL to redirect to if the user is not authenticated\n\t// Defaults to process.env.SIGN_IN_ROUTE or '/sign-in' if not provided\n\t// NOTE: In case it contains query parameters that exist in the original URL, they will override the original query parameters. e.g. if the original URL is /page?param1=1¶m2=2 and the redirect URL is /sign-in?param1=3, the final redirect URL will be /sign-in?param1=3¶m2=2\n\tredirectUrl?: string;\n\n\t// An array of public routes that do not require authentication\n\t// In addition to the default public routes:\n\t// - process.env.SIGN_IN_ROUTE or /sign-in if not provided\n\t// - process.env.SIGN_UP_ROUTE or /sign-up if not provided\n\tpublicRoutes?: string[];\n\n\t// An array of private routes that require authentication\n\t// If privateRoutes is defined, routes not listed in this array will default to public routes\n\tprivateRoutes?: string[];\n\n\t// The log level to use for the middleware\n\t// Defaults to 'info'\n\tlogLevel?: LogLevel;\n};\n\nconst getSessionJwt = (req: NextRequest): string | undefined => {\n\tlet jwt = req.headers?.get('Authorization')?.split(' ')[1];\n\tif (jwt) {\n\t\treturn jwt;\n\t}\n\n\tjwt = req.cookies?.get(descopeSdk.SessionTokenCookieName)?.value;\n\tif (jwt) {\n\t\treturn jwt;\n\t}\n\treturn undefined;\n};\n\nconst matchWildcardRoute = (route: string, path: string) => {\n\tlet regexPattern = route.replace(/[.+?^${}()|[\\]\\\\]/g, '\\\\$&');\n\n\t// Convert wildcard (*) to match path segments only\n\tregexPattern = regexPattern.replace(/\\*/g, '[^/]*');\n\tconst regex = new RegExp(`^${regexPattern}$`);\n\n\treturn regex.test(path);\n};\n\nconst isPublicRoute = (req: NextRequest, options: MiddlewareOptions) => {\n\t// Ensure publicRoutes and privateRoutes are arrays, defaulting to empty arrays if not defined\n\tconst { publicRoutes = [], privateRoutes = [] } = options;\n\tconst { pathname } = req.nextUrl;\n\n\tconst isDefaultPublicRoute = Object.values(DEFAULT_PUBLIC_ROUTES).includes(\n\t\tpathname\n\t);\n\n\tif (publicRoutes.length > 0) {\n\t\tif (privateRoutes.length > 0) {\n\t\t\tlogger.warn(\n\t\t\t\t'Both publicRoutes and privateRoutes are defined. Ignoring privateRoutes.'\n\t\t\t);\n\t\t}\n\t\treturn (\n\t\t\tisDefaultPublicRoute ||\n\t\t\tpublicRoutes.some((route) => matchWildcardRoute(route, pathname))\n\t\t);\n\t}\n\n\tif (privateRoutes.length > 0) {\n\t\treturn (\n\t\t\tisDefaultPublicRoute ||\n\t\t\t!privateRoutes.some((route) => matchWildcardRoute(route, pathname))\n\t\t);\n\t}\n\n\t// If no routes are provided, all routes are private\n\treturn isDefaultPublicRoute;\n};\n\nconst addSessionToHeadersIfExists = (\n\theaders: Headers,\n\tsession: AuthenticationInfo | undefined\n): Headers => {\n\tif (session) {\n\t\tconst requestHeaders = new Headers(headers);\n\t\trequestHeaders.set(\n\t\t\tDESCOPE_SESSION_HEADER,\n\t\t\tBuffer.from(JSON.stringify(session)).toString('base64')\n\t\t);\n\t\treturn requestHeaders;\n\t}\n\treturn headers;\n};\n\n// returns a Middleware that checks if the user is authenticated\n// if the user is not authenticated, it redirects to the redirectUrl\n// if the user is authenticated, it adds the session to the headers\nconst createAuthMiddleware =\n\t(options: MiddlewareOptions = {}) =>\n\tasync (req: NextRequest) => {\n\t\tsetLogger(options.logLevel);\n\t\tlogger.debug('Auth middleware starts');\n\n\t\tconst jwt = getSessionJwt(req);\n\n\t\t// check if the user is authenticated\n\t\tlet session: AuthenticationInfo | undefined;\n\t\ttry {\n\t\t\tsession = await getGlobalSdk({\n\t\t\t\tprojectId: options.projectId,\n\t\t\t\tbaseUrl: options.baseUrl\n\t\t\t}).validateJwt(jwt);\n\t\t} catch (err) {\n\t\t\tlogger.debug('Auth middleware, Failed to validate JWT', err);\n\t\t\tif (!isPublicRoute(req, options)) {\n\t\t\t\tconst redirectUrl = options.redirectUrl || DEFAULT_PUBLIC_ROUTES.signIn;\n\t\t\t\tconst url = req.nextUrl.clone();\n\t\t\t\t// Create a URL object for redirectUrl. 'http://example.com' is just a placeholder.\n\t\t\t\tconst parsedRedirectUrl = new URL(redirectUrl, 'http://example.com');\n\t\t\t\turl.pathname = parsedRedirectUrl.pathname;\n\n\t\t\t\tconst searchParams = mergeSearchParams(\n\t\t\t\t\turl.search,\n\t\t\t\t\tparsedRedirectUrl.search\n\t\t\t\t);\n\t\t\t\tif (searchParams) {\n\t\t\t\t\turl.search = searchParams;\n\t\t\t\t}\n\t\t\t\tlogger.debug(`Auth middleware, Redirecting to ${redirectUrl}`);\n\t\t\t\treturn NextResponse.redirect(url);\n\t\t\t}\n\t\t}\n\n\t\tlogger.debug('Auth middleware finishes');\n\t\t// add the session to the request, if it exists\n\t\tconst headers = addSessionToHeadersIfExists(req.headers, session);\n\t\treturn NextResponse.next({\n\t\t\trequest: {\n\t\t\t\theaders\n\t\t\t}\n\t\t});\n\t};\n\nexport default createAuthMiddleware;\n"],"names":["DEFAULT_PUBLIC_ROUTES","logger","DESCOPE_SESSION_HEADER","setLogger","getGlobalSdk","mergeSearchParams","NextResponse"],"mappings":"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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const DESCOPE_SESSION_HEADER = 'x-descope-session';
|
|
4
|
+
const baseHeaders = {
|
|
5
|
+
'x-descope-sdk-name': 'nextjs',
|
|
6
|
+
'x-descope-sdk-version': "0.0.0-alpha.1"
|
|
7
|
+
};
|
|
8
|
+
const DEFAULT_PUBLIC_ROUTES = {
|
|
9
|
+
signIn: process.env.SIGN_IN_ROUTE || '/sign-in',
|
|
10
|
+
signUp: process.env.SIGN_UP_ROUTE || '/sign-up'
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
exports.DEFAULT_PUBLIC_ROUTES = DEFAULT_PUBLIC_ROUTES;
|
|
14
|
+
exports.DESCOPE_SESSION_HEADER = DESCOPE_SESSION_HEADER;
|
|
15
|
+
exports.baseHeaders = baseHeaders;
|
|
16
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sources":["../../../src/server/constants.ts"],"sourcesContent":["// Replaced in build time\ndeclare const BUILD_VERSION: string;\n\nexport const DESCOPE_SESSION_HEADER = 'x-descope-session';\n\nexport const baseHeaders = {\n\t'x-descope-sdk-name': 'nextjs',\n\t'x-descope-sdk-version': BUILD_VERSION\n};\n\nexport const DEFAULT_PUBLIC_ROUTES = {\n\tsignIn: process.env.SIGN_IN_ROUTE || '/sign-in',\n\tsignUp: process.env.SIGN_UP_ROUTE || '/sign-up'\n};\n"],"names":[],"mappings":";;AAGO,MAAM,sBAAsB,GAAG,oBAAoB;AAE7C,MAAA,WAAW,GAAG;AAC1B,IAAA,oBAAoB,EAAE,QAAQ;AAC9B,IAAA,uBAAuB,EAAE,eAAa;EACrC;AAEW,MAAA,qBAAqB,GAAG;AACpC,IAAA,MAAM,EAAE,OAAO,CAAC,GAAG,CAAC,aAAa,IAAI,UAAU;AAC/C,IAAA,MAAM,EAAE,OAAO,CAAC,GAAG,CAAC,aAAa,IAAI,UAAU;;;;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var authMiddleware = require('./authMiddleware.js');
|
|
4
|
+
var session = require('./session.js');
|
|
5
|
+
var sdk = require('./sdk.js');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
exports.authMiddleware = authMiddleware;
|
|
10
|
+
exports.getSession = session.getSession;
|
|
11
|
+
exports.session = session.session;
|
|
12
|
+
exports.createSdk = sdk.createSdk;
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// order of levels is important
|
|
4
|
+
const levels = ['debug', 'info', 'warn', 'error'];
|
|
5
|
+
const logger = {
|
|
6
|
+
debug: console.debug,
|
|
7
|
+
info: console.info,
|
|
8
|
+
log: console.log,
|
|
9
|
+
warn: console.warn,
|
|
10
|
+
error: console.error
|
|
11
|
+
};
|
|
12
|
+
const noop = () => { };
|
|
13
|
+
// override global logger according to the level
|
|
14
|
+
const setLogger = (level = 'info') => {
|
|
15
|
+
Object.keys(logger).forEach((key) => {
|
|
16
|
+
const keyToCompare = key === 'log' ? 'info' : key; // log is an alias for info
|
|
17
|
+
if (levels.indexOf(keyToCompare) < levels.indexOf(level)) {
|
|
18
|
+
logger[key] = noop;
|
|
19
|
+
}
|
|
20
|
+
else {
|
|
21
|
+
logger[key] = console[key];
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
exports.logger = logger;
|
|
27
|
+
exports.setLogger = setLogger;
|
|
28
|
+
//# sourceMappingURL=logger.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.js","sources":["../../../src/server/logger.ts"],"sourcesContent":["/* eslint-disable no-console */\nimport { LogLevel } from '../types';\n\n// order of levels is important\nconst levels = ['debug', 'info', 'warn', 'error'];\n\nconst logger = {\n\tdebug: console.debug,\n\tinfo: console.info,\n\tlog: console.log,\n\twarn: console.warn,\n\terror: console.error\n};\n\nconst noop = () => {};\n\n// override global logger according to the level\nexport const setLogger = (level: LogLevel = 'info') => {\n\tObject.keys(logger).forEach((key) => {\n\t\tconst keyToCompare = key === 'log' ? 'info' : key; // log is an alias for info\n\t\tif (levels.indexOf(keyToCompare) < levels.indexOf(level)) {\n\t\t\tlogger[key] = noop;\n\t\t} else {\n\t\t\tlogger[key] = console[key];\n\t\t}\n\t});\n};\n\nexport { logger };\n"],"names":[],"mappings":";;AAGA;AACA,MAAM,MAAM,GAAG,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC;AAElD,MAAM,MAAM,GAAG;IACd,KAAK,EAAE,OAAO,CAAC,KAAK;IACpB,IAAI,EAAE,OAAO,CAAC,IAAI;IAClB,GAAG,EAAE,OAAO,CAAC,GAAG;IAChB,IAAI,EAAE,OAAO,CAAC,IAAI;IAClB,KAAK,EAAE,OAAO,CAAC,KAAK;EACnB;AAEF,MAAM,IAAI,GAAG,MAAK,GAAG,CAAC;AAEtB;MACa,SAAS,GAAG,CAAC,KAAkB,GAAA,MAAM,KAAI;IACrD,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,KAAI;AACnC,QAAA,MAAM,YAAY,GAAG,GAAG,KAAK,KAAK,GAAG,MAAM,GAAG,GAAG,CAAC;AAClD,QAAA,IAAI,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;AACzD,YAAA,MAAM,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;SACnB;aAAM;YACN,MAAM,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;SAC3B;AACF,KAAC,CAAC,CAAC;AACJ;;;;;"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var descopeSdk = require('@descope/node-sdk');
|
|
4
|
+
var constants = require('./constants.js');
|
|
5
|
+
|
|
6
|
+
let globalSdk;
|
|
7
|
+
const createSdk = (config) => descopeSdk({
|
|
8
|
+
...config,
|
|
9
|
+
projectId: config?.projectId || process.env.DESCOPE_PROJECT_ID,
|
|
10
|
+
managementKey: config?.managementKey || process.env.DESCOPE_MANAGEMENT_KEY,
|
|
11
|
+
baseUrl: config?.baseUrl || process.env.DESCOPE_BASE_URL,
|
|
12
|
+
baseHeaders: {
|
|
13
|
+
...config?.baseHeaders,
|
|
14
|
+
...constants.baseHeaders
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
const getGlobalSdk = (config) => {
|
|
18
|
+
if (!globalSdk) {
|
|
19
|
+
if (!config?.projectId && !process.env.DESCOPE_PROJECT_ID) {
|
|
20
|
+
throw new Error('Descope project ID is required to create the SDK');
|
|
21
|
+
}
|
|
22
|
+
globalSdk = createSdk(config);
|
|
23
|
+
}
|
|
24
|
+
return globalSdk;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
exports.createSdk = createSdk;
|
|
28
|
+
exports.getGlobalSdk = getGlobalSdk;
|
|
29
|
+
//# sourceMappingURL=sdk.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sdk.js","sources":["../../../src/server/sdk.ts"],"sourcesContent":["import descopeSdk from '@descope/node-sdk';\nimport { baseHeaders } from './constants';\n\ntype Sdk = ReturnType<typeof descopeSdk>;\ntype CreateServerSdkParams = Omit<\n\tParameters<typeof descopeSdk>[0],\n\t'projectId'\n> & {\n\tprojectId?: string | undefined;\n};\n\ntype CreateSdkParams = Pick<CreateServerSdkParams, 'projectId' | 'baseUrl'>;\n\nlet globalSdk: Sdk;\n\nexport const createSdk = (config?: CreateServerSdkParams): Sdk =>\n\tdescopeSdk({\n\t\t...config,\n\t\tprojectId: config?.projectId || process.env.DESCOPE_PROJECT_ID,\n\t\tmanagementKey: config?.managementKey || process.env.DESCOPE_MANAGEMENT_KEY,\n\t\tbaseUrl: config?.baseUrl || process.env.DESCOPE_BASE_URL,\n\t\tbaseHeaders: {\n\t\t\t...config?.baseHeaders,\n\t\t\t...baseHeaders\n\t\t}\n\t});\n\nexport const getGlobalSdk = (config?: CreateSdkParams): Sdk => {\n\tif (!globalSdk) {\n\t\tif (!config?.projectId && !process.env.DESCOPE_PROJECT_ID) {\n\t\t\tthrow new Error('Descope project ID is required to create the SDK');\n\t\t}\n\t\tglobalSdk = createSdk(config);\n\t}\n\n\treturn globalSdk;\n};\n\nexport type { CreateSdkParams };\n"],"names":["baseHeaders"],"mappings":";;;;;AAaA,IAAI,SAAc,CAAC;AAEN,MAAA,SAAS,GAAG,CAAC,MAA8B,KACvD,UAAU,CAAC;AACV,IAAA,GAAG,MAAM;IACT,SAAS,EAAE,MAAM,EAAE,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,kBAAkB;IAC9D,aAAa,EAAE,MAAM,EAAE,aAAa,IAAI,OAAO,CAAC,GAAG,CAAC,sBAAsB;IAC1E,OAAO,EAAE,MAAM,EAAE,OAAO,IAAI,OAAO,CAAC,GAAG,CAAC,gBAAgB;AACxD,IAAA,WAAW,EAAE;QACZ,GAAG,MAAM,EAAE,WAAW;AACtB,QAAA,GAAGA,qBAAW;AACd,KAAA;AACD,CAAA,EAAE;AAES,MAAA,YAAY,GAAG,CAAC,MAAwB,KAAS;IAC7D,IAAI,CAAC,SAAS,EAAE;AACf,QAAA,IAAI,CAAC,MAAM,EAAE,SAAS,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,kBAAkB,EAAE;AAC1D,YAAA,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;SACpE;AACD,QAAA,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC;KAC9B;AAED,IAAA,OAAO,SAAS,CAAC;AAClB;;;;;"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var descopeSdk = require('@descope/node-sdk');
|
|
4
|
+
var headers_js = require('next/headers.js');
|
|
5
|
+
var constants = require('./constants.js');
|
|
6
|
+
var sdk = require('./sdk.js');
|
|
7
|
+
var logger = require('./logger.js');
|
|
8
|
+
|
|
9
|
+
const extractSession = (descopeSession) => {
|
|
10
|
+
if (!descopeSession) {
|
|
11
|
+
return undefined;
|
|
12
|
+
}
|
|
13
|
+
try {
|
|
14
|
+
const authInfo = JSON.parse(Buffer.from(descopeSession, 'base64').toString());
|
|
15
|
+
return authInfo;
|
|
16
|
+
}
|
|
17
|
+
catch (err) {
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
const getSessionFromCookie = async (config) => {
|
|
22
|
+
logger.logger.debug('attempting to get session from cookie');
|
|
23
|
+
try {
|
|
24
|
+
const sessionCookie = (await headers_js.cookies()).get(descopeSdk.SessionTokenCookieName);
|
|
25
|
+
if (!sessionCookie?.value) {
|
|
26
|
+
logger.logger.debug('Session cookie not found');
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
const sdk$1 = sdk.getGlobalSdk(config);
|
|
30
|
+
return await sdk$1.validateJwt(sessionCookie.value);
|
|
31
|
+
}
|
|
32
|
+
catch (err) {
|
|
33
|
+
logger.logger.debug('Error getting session from cookie', err);
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
// tries to extract the session header,
|
|
38
|
+
// if it doesn't exist, it will attempt to get the session from the cookie
|
|
39
|
+
const extractOrGetSession = async (sessionHeader, config) => {
|
|
40
|
+
const session = extractSession(sessionHeader);
|
|
41
|
+
if (session) {
|
|
42
|
+
return session;
|
|
43
|
+
}
|
|
44
|
+
return getSessionFromCookie(config);
|
|
45
|
+
};
|
|
46
|
+
// returns the session token if it exists in the headers
|
|
47
|
+
const session = async (config) => {
|
|
48
|
+
logger.setLogger(config?.logLevel);
|
|
49
|
+
// first attempt to get the session from the headers
|
|
50
|
+
const reqHeaders = await headers_js.headers();
|
|
51
|
+
const sessionHeader = reqHeaders.get(constants.DESCOPE_SESSION_HEADER);
|
|
52
|
+
return extractOrGetSession(sessionHeader, config);
|
|
53
|
+
};
|
|
54
|
+
// returns the session token if it exists in the request headers
|
|
55
|
+
const getSession = async (req, config) => {
|
|
56
|
+
logger.setLogger(config?.logLevel);
|
|
57
|
+
return extractOrGetSession(req.headers[constants.DESCOPE_SESSION_HEADER.toLowerCase()], config);
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
exports.getSession = getSession;
|
|
61
|
+
exports.session = session;
|
|
62
|
+
//# sourceMappingURL=session.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"session.js","sources":["../../../src/server/session.ts"],"sourcesContent":["import descopeSdk, { AuthenticationInfo } from '@descope/node-sdk';\nimport { NextApiRequest } from 'next';\nimport { cookies, headers } from 'next/headers';\nimport { DESCOPE_SESSION_HEADER } from './constants';\nimport { getGlobalSdk, CreateSdkParams } from './sdk';\nimport { LogLevel } from '../types';\nimport { logger, setLogger } from './logger';\n\ntype SessionConfig = CreateSdkParams & {\n\t// The log level to use for the middleware\n\t// Defaults to 'info'\n\tlogLevel?: LogLevel;\n};\n\nconst extractSession = (\n\tdescopeSession?: string\n): AuthenticationInfo | undefined => {\n\tif (!descopeSession) {\n\t\treturn undefined;\n\t}\n\ttry {\n\t\tconst authInfo = JSON.parse(\n\t\t\tBuffer.from(descopeSession, 'base64').toString()\n\t\t) as AuthenticationInfo;\n\t\treturn authInfo;\n\t} catch (err) {\n\t\treturn undefined;\n\t}\n};\n\nconst getSessionFromCookie = async (\n\tconfig?: CreateSdkParams\n): Promise<AuthenticationInfo | undefined> => {\n\tlogger.debug('attempting to get session from cookie');\n\ttry {\n\t\tconst sessionCookie = (await cookies()).get(\n\t\t\tdescopeSdk.SessionTokenCookieName\n\t\t);\n\t\tif (!sessionCookie?.value) {\n\t\t\tlogger.debug('Session cookie not found');\n\t\t\treturn undefined;\n\t\t}\n\t\tconst sdk = getGlobalSdk(config);\n\t\treturn await sdk.validateJwt(sessionCookie.value);\n\t} catch (err) {\n\t\tlogger.debug('Error getting session from cookie', err);\n\t\treturn undefined;\n\t}\n};\n\n// tries to extract the session header,\n// if it doesn't exist, it will attempt to get the session from the cookie\nconst extractOrGetSession = async (\n\tsessionHeader?: string,\n\tconfig?: SessionConfig\n): Promise<AuthenticationInfo | undefined> => {\n\tconst session = extractSession(sessionHeader);\n\tif (session) {\n\t\treturn session;\n\t}\n\n\treturn getSessionFromCookie(config);\n};\n\n// returns the session token if it exists in the headers\nexport const session = async (\n\tconfig?: SessionConfig\n): Promise<AuthenticationInfo | undefined> => {\n\tsetLogger(config?.logLevel);\n\t// first attempt to get the session from the headers\n\tconst reqHeaders = await headers();\n\tconst sessionHeader = reqHeaders.get(DESCOPE_SESSION_HEADER);\n\treturn extractOrGetSession(sessionHeader, config);\n};\n\n// returns the session token if it exists in the request headers\nexport const getSession = async (\n\treq: NextApiRequest,\n\tconfig?: SessionConfig\n): Promise<AuthenticationInfo | undefined> => {\n\tsetLogger(config?.logLevel);\n\treturn extractOrGetSession(\n\t\treq.headers[DESCOPE_SESSION_HEADER.toLowerCase()] as string,\n\t\tconfig\n\t);\n};\n"],"names":["logger","cookies","sdk","getGlobalSdk","setLogger","headers","DESCOPE_SESSION_HEADER"],"mappings":";;;;;;;;AAcA,MAAM,cAAc,GAAG,CACtB,cAAuB,KACY;IACnC,IAAI,CAAC,cAAc,EAAE;AACpB,QAAA,OAAO,SAAS,CAAC;KACjB;AACD,IAAA,IAAI;AACH,QAAA,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAC1B,MAAM,CAAC,IAAI,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC,QAAQ,EAAE,CAC1B,CAAC;AACxB,QAAA,OAAO,QAAQ,CAAC;KAChB;IAAC,OAAO,GAAG,EAAE;AACb,QAAA,OAAO,SAAS,CAAC;KACjB;AACF,CAAC,CAAC;AAEF,MAAM,oBAAoB,GAAG,OAC5B,MAAwB,KACoB;AAC5C,IAAAA,aAAM,CAAC,KAAK,CAAC,uCAAuC,CAAC,CAAC;AACtD,IAAA,IAAI;AACH,QAAA,MAAM,aAAa,GAAG,CAAC,MAAMC,kBAAO,EAAE,EAAE,GAAG,CAC1C,UAAU,CAAC,sBAAsB,CACjC,CAAC;AACF,QAAA,IAAI,CAAC,aAAa,EAAE,KAAK,EAAE;AAC1B,YAAAD,aAAM,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC;AACzC,YAAA,OAAO,SAAS,CAAC;SACjB;AACD,QAAA,MAAME,KAAG,GAAGC,gBAAY,CAAC,MAAM,CAAC,CAAC;QACjC,OAAO,MAAMD,KAAG,CAAC,WAAW,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;KAClD;IAAC,OAAO,GAAG,EAAE;AACb,QAAAF,aAAM,CAAC,KAAK,CAAC,mCAAmC,EAAE,GAAG,CAAC,CAAC;AACvD,QAAA,OAAO,SAAS,CAAC;KACjB;AACF,CAAC,CAAC;AAEF;AACA;AACA,MAAM,mBAAmB,GAAG,OAC3B,aAAsB,EACtB,MAAsB,KACsB;AAC5C,IAAA,MAAM,OAAO,GAAG,cAAc,CAAC,aAAa,CAAC,CAAC;IAC9C,IAAI,OAAO,EAAE;AACZ,QAAA,OAAO,OAAO,CAAC;KACf;AAED,IAAA,OAAO,oBAAoB,CAAC,MAAM,CAAC,CAAC;AACrC,CAAC,CAAC;AAEF;MACa,OAAO,GAAG,OACtB,MAAsB,KACsB;AAC5C,IAAAI,gBAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;;AAE5B,IAAA,MAAM,UAAU,GAAG,MAAMC,kBAAO,EAAE,CAAC;IACnC,MAAM,aAAa,GAAG,UAAU,CAAC,GAAG,CAACC,gCAAsB,CAAC,CAAC;AAC7D,IAAA,OAAO,mBAAmB,CAAC,aAAa,EAAE,MAAM,CAAC,CAAC;AACnD,EAAE;AAEF;AACa,MAAA,UAAU,GAAG,OACzB,GAAmB,EACnB,MAAsB,KACsB;AAC5C,IAAAF,gBAAS,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;AAC5B,IAAA,OAAO,mBAAmB,CACzB,GAAG,CAAC,OAAO,CAACE,gCAAsB,CAAC,WAAW,EAAE,CAAW,EAC3D,MAAM,CACN,CAAC;AACH;;;;;"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/* eslint-disable import/prefer-default-export */
|
|
4
|
+
/*
|
|
5
|
+
Merges multiple search params into one.
|
|
6
|
+
It will override according to the order of the search params
|
|
7
|
+
Examples:
|
|
8
|
+
- mergeSearchParams('?a=1', '?b=2') => 'a=1&b=2'
|
|
9
|
+
- mergeSearchParams('?a=1', '?a=2') => 'a=2'
|
|
10
|
+
- mergeSearchParams('?a=1', '?a=2', '?b=3') => 'a=2&b=3'
|
|
11
|
+
*/
|
|
12
|
+
const mergeSearchParams = (...searchParams) => {
|
|
13
|
+
const res = searchParams.reduce((acc, curr) => {
|
|
14
|
+
const currParams = new URLSearchParams(curr);
|
|
15
|
+
currParams.forEach((value, key) => {
|
|
16
|
+
acc.set(key, value);
|
|
17
|
+
});
|
|
18
|
+
return acc;
|
|
19
|
+
}, new URLSearchParams());
|
|
20
|
+
return res.toString();
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
exports.mergeSearchParams = mergeSearchParams;
|
|
24
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sources":["../../../src/server/utils.ts"],"sourcesContent":["/* eslint-disable import/prefer-default-export */\n\n/*\nMerges multiple search params into one.\nIt will override according to the order of the search params\nExamples:\n - mergeSearchParams('?a=1', '?b=2') => 'a=1&b=2'\n - mergeSearchParams('?a=1', '?a=2') => 'a=2'\n - mergeSearchParams('?a=1', '?a=2', '?b=3') => 'a=2&b=3'\n*/\nexport const mergeSearchParams = (...searchParams: string[]): string => {\n\tconst res = searchParams.reduce((acc, curr) => {\n\t\tconst currParams = new URLSearchParams(curr);\n\t\tcurrParams.forEach((value, key) => {\n\t\t\tacc.set(key, value);\n\t\t});\n\t\treturn acc;\n\t}, new URLSearchParams());\n\n\treturn res.toString();\n};\n"],"names":[],"mappings":";;AAAA;AAEA;;;;;;;AAOE;MACW,iBAAiB,GAAG,CAAC,GAAG,YAAsB,KAAY;IACtE,MAAM,GAAG,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,KAAI;AAC7C,QAAA,MAAM,UAAU,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,CAAC;QAC7C,UAAU,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,GAAG,KAAI;AACjC,YAAA,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;AACrB,SAAC,CAAC,CAAC;AACH,QAAA,OAAO,GAAG,CAAC;AACZ,KAAC,EAAE,IAAI,eAAe,EAAE,CAAC,CAAC;AAE1B,IAAA,OAAO,GAAG,CAAC,QAAQ,EAAE,CAAC;AACvB;;;;"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
var reactSdk = require('@descope/react-sdk');
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var constants = require('./constants.js');
|
|
7
|
+
|
|
8
|
+
// Override baseHeaders
|
|
9
|
+
Object.assign(reactSdk.baseHeaders, constants.baseHeaders);
|
|
10
|
+
const AuthProvider = ({ ...props }) => (
|
|
11
|
+
// by default we use sessionTokenViaCookie, so middleware will work out of the box
|
|
12
|
+
React.createElement(reactSdk.AuthProvider, { sessionTokenViaCookie: true, ...props }));
|
|
13
|
+
|
|
14
|
+
module.exports = AuthProvider;
|
|
15
|
+
//# sourceMappingURL=AuthProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AuthProvider.js","sources":["../../../src/shared/AuthProvider.tsx"],"sourcesContent":["'use client';\n\nimport {\n\tAuthProvider as AuthProviderComp,\n\tbaseHeaders\n} from '@descope/react-sdk';\nimport React from 'react';\nimport { baseHeaders as nextBaseHeaders } from './constants';\n\n// Override baseHeaders\nObject.assign(baseHeaders, nextBaseHeaders);\n\nconst AuthProvider: typeof AuthProviderComp = ({ ...props }) => (\n\t// by default we use sessionTokenViaCookie, so middleware will work out of the box\n\t<AuthProviderComp sessionTokenViaCookie {...props} />\n);\n\nexport default AuthProvider;\n"],"names":[],"mappings":";;;;;;;AASA;AACA;AAEM;AACL;AACA;;"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
var React = require('react');
|
|
5
|
+
var dynamic = require('next/dynamic.js');
|
|
6
|
+
var navigation_js = require('next/navigation.js');
|
|
7
|
+
var constants = require('./constants.js');
|
|
8
|
+
|
|
9
|
+
// Generalized function to dynamically import components from @descope/react-sdk
|
|
10
|
+
// Dynamic is needed because the Descope components has a side effect us
|
|
11
|
+
// and NextJS will load the page on the server even if it is a client side only page
|
|
12
|
+
const dynamicDescopeComponent = (componentName) => dynamic(async () => {
|
|
13
|
+
const DescopeComponents = await import('@descope/react-sdk');
|
|
14
|
+
// Override baseHeaders
|
|
15
|
+
Object.assign(DescopeComponents.baseHeaders, constants.baseHeaders);
|
|
16
|
+
const Component = DescopeComponents[componentName];
|
|
17
|
+
return ({ redirectAfterSuccess = '', redirectAfterError = '', ...props }) => {
|
|
18
|
+
const router = navigation_js.useRouter();
|
|
19
|
+
const modifiedProps = { ...props };
|
|
20
|
+
if (redirectAfterSuccess) {
|
|
21
|
+
modifiedProps.onSuccess = (...args) => {
|
|
22
|
+
if (props.onSuccess) {
|
|
23
|
+
props.onSuccess(...args);
|
|
24
|
+
}
|
|
25
|
+
router.push(redirectAfterSuccess);
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
if (redirectAfterError) {
|
|
29
|
+
modifiedProps.onError = (...args) => {
|
|
30
|
+
if (props.onError) {
|
|
31
|
+
props.onError(...args);
|
|
32
|
+
}
|
|
33
|
+
router.push(redirectAfterError);
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
return React.createElement(Component, { ...modifiedProps });
|
|
37
|
+
};
|
|
38
|
+
}, {
|
|
39
|
+
ssr: false
|
|
40
|
+
});
|
|
41
|
+
const Descope = dynamicDescopeComponent('Descope');
|
|
42
|
+
const SignInFlow = dynamicDescopeComponent('SignInFlow');
|
|
43
|
+
const SignUpFlow = dynamicDescopeComponent('SignUpFlow');
|
|
44
|
+
const SignUpOrInFlow = dynamicDescopeComponent('SignUpOrInFlow');
|
|
45
|
+
|
|
46
|
+
exports.Descope = Descope;
|
|
47
|
+
exports.SignInFlow = SignInFlow;
|
|
48
|
+
exports.SignUpFlow = SignUpFlow;
|
|
49
|
+
exports.SignUpOrInFlow = SignUpOrInFlow;
|
|
50
|
+
//# sourceMappingURL=DescopeFlows.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescopeFlows.js","sources":["../../../src/shared/DescopeFlows.tsx"],"sourcesContent":["'use client';\n\n// workaround for TS issue https://github.com/microsoft/TypeScript/issues/42873\n// eslint-disable-next-line\nimport type * as _1 from '@descope/react-sdk/node_modules/@types/react';\n// eslint-disable-next-line\nimport type * as _2 from '@descope/react-sdk/node_modules/@descope/web-component/dist';\n\nimport React, { ComponentType, ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\nimport { useRouter } from 'next/navigation';\nimport {\n\tDescope as DescopeWC,\n\tSignInFlow as SignInFlowWC,\n\tSignUpFlow as SignUpFlowWC,\n\tSignUpOrInFlow as SignUpOrInFlowWC\n} from '@descope/react-sdk';\nimport { baseHeaders as nextBaseHeaders } from './constants';\n\ntype DescopeWCProps = ComponentProps<typeof DescopeWC>;\ntype SignInFlowProps = ComponentProps<typeof SignInFlowWC>;\ntype SignUpFlowProps = ComponentProps<typeof SignUpFlowWC>;\ntype SignUpOrInFlowProps = ComponentProps<typeof SignUpOrInFlowWC>;\n\ntype AdditionalProps = {\n\tredirectAfterSuccess?: string;\n\tredirectAfterError?: string;\n};\n\ntype DynamicComponentProps = {\n\tonSuccess?: (...args: any[]) => void;\n\tonError?: (...args: any[]) => void;\n};\n\n// Generalized function to dynamically import components from @descope/react-sdk\n// Dynamic is needed because the Descope components has a side effect us\n// and NextJS will load the page on the server even if it is a client side only page\nconst dynamicDescopeComponent = <\n\tT extends ComponentType<DynamicComponentProps>\n>(\n\tcomponentName: string\n) =>\n\tdynamic<ComponentProps<T> & AdditionalProps>(\n\t\tasync () => {\n\t\t\tconst DescopeComponents = await import('@descope/react-sdk');\n\n\t\t\t// Override baseHeaders\n\t\t\tObject.assign(DescopeComponents.baseHeaders, nextBaseHeaders);\n\n\t\t\tconst Component = DescopeComponents[componentName];\n\t\t\treturn ({\n\t\t\t\tredirectAfterSuccess = '',\n\t\t\t\tredirectAfterError = '',\n\t\t\t\t...props\n\t\t\t}: ComponentProps<T> & AdditionalProps) => {\n\t\t\t\tconst router = useRouter();\n\t\t\t\tconst modifiedProps = { ...props };\n\n\t\t\t\tif (redirectAfterSuccess) {\n\t\t\t\t\tmodifiedProps.onSuccess = (...args) => {\n\t\t\t\t\t\tif (props.onSuccess) {\n\t\t\t\t\t\t\tprops.onSuccess(...args);\n\t\t\t\t\t\t}\n\t\t\t\t\t\trouter.push(redirectAfterSuccess);\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\tif (redirectAfterError) {\n\t\t\t\t\tmodifiedProps.onError = (...args) => {\n\t\t\t\t\t\tif (props.onError) {\n\t\t\t\t\t\t\tprops.onError(...args);\n\t\t\t\t\t\t}\n\t\t\t\t\t\trouter.push(redirectAfterError);\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t\treturn <Component {...modifiedProps} />;\n\t\t\t};\n\t\t},\n\t\t{\n\t\t\tssr: false\n\t\t}\n\t);\n\nexport const Descope =\n\tdynamicDescopeComponent<React.ComponentType<DescopeWCProps>>('Descope');\nexport const SignInFlow =\n\tdynamicDescopeComponent<React.ComponentType<SignInFlowProps>>('SignInFlow');\nexport const SignUpFlow =\n\tdynamicDescopeComponent<React.ComponentType<SignUpFlowProps>>('SignUpFlow');\nexport const SignUpOrInFlow =\n\tdynamicDescopeComponent<React.ComponentType<SignUpOrInFlowProps>>(\n\t\t'SignUpOrInFlow'\n\t);\n"],"names":[],"mappings":";;;;;;;;AAkCA;AACA;AACA;AACA;AAOG;;;AAKA;AACA;AAKC;AACA;;AAGC;AACC;AACC;;AAED;AACD;;;AAIA;AACC;AACC;;AAED;AACD;;AAED;AACD;AACD;AAEC;AACA;;;;;;;;;"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
var dynamic = require('next/dynamic.js');
|
|
5
|
+
var reactSdk = require('@descope/react-sdk');
|
|
6
|
+
|
|
7
|
+
// a helper function to dynamically load the components
|
|
8
|
+
// This function prevents Next.js from trying to server-side render these components
|
|
9
|
+
// Update the helper function to use generics for preserving component prop types
|
|
10
|
+
const dynamicWidgetComponent = (Component) => dynamic(() => Promise.resolve(Component), {
|
|
11
|
+
ssr: false // Disable server-side rendering for this component
|
|
12
|
+
});
|
|
13
|
+
// Use the helper function to create dynamically loaded components
|
|
14
|
+
const UserManagement = dynamicWidgetComponent(reactSdk.UserManagement);
|
|
15
|
+
const RoleManagement = dynamicWidgetComponent(reactSdk.RoleManagement);
|
|
16
|
+
const AccessKeyManagement = dynamicWidgetComponent(reactSdk.AccessKeyManagement);
|
|
17
|
+
const AuditManagement = dynamicWidgetComponent(reactSdk.AuditManagement);
|
|
18
|
+
const UserProfile = dynamicWidgetComponent(reactSdk.UserProfile);
|
|
19
|
+
const ApplicationsPortal = dynamicWidgetComponent(reactSdk.ApplicationsPortal);
|
|
20
|
+
|
|
21
|
+
exports.AccessKeyManagement = AccessKeyManagement;
|
|
22
|
+
exports.ApplicationsPortal = ApplicationsPortal;
|
|
23
|
+
exports.AuditManagement = AuditManagement;
|
|
24
|
+
exports.RoleManagement = RoleManagement;
|
|
25
|
+
exports.UserManagement = UserManagement;
|
|
26
|
+
exports.UserProfile = UserProfile;
|
|
27
|
+
//# sourceMappingURL=DescopeWidgets.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DescopeWidgets.js","sources":["../../../src/shared/DescopeWidgets.tsx"],"sourcesContent":["'use client';\n\n// eslint-disable-next-line\nimport type * as _1 from '@descope/react-sdk/node_modules/@types/react';\n\nimport { ComponentType } from 'react';\nimport dynamic from 'next/dynamic';\nimport {\n\tUserManagement as UserManagementWC,\n\tRoleManagement as RoleManagementWC,\n\tAccessKeyManagement as AccessKeyManagementWC,\n\tAuditManagement as AuditManagementWC,\n\tUserProfile as UserProfileWc,\n\tApplicationsPortal as ApplicationsPortalWc\n} from '@descope/react-sdk';\n\n// a helper function to dynamically load the components\n// This function prevents Next.js from trying to server-side render these components\n// Update the helper function to use generics for preserving component prop types\nconst dynamicWidgetComponent = <P extends {}>(Component: ComponentType<P>) =>\n\tdynamic<P>(() => Promise.resolve(Component), {\n\t\tssr: false // Disable server-side rendering for this component\n\t});\n\n// Use the helper function to create dynamically loaded components\nexport const UserManagement = dynamicWidgetComponent(UserManagementWC);\nexport const RoleManagement = dynamicWidgetComponent(RoleManagementWC);\nexport const AccessKeyManagement = dynamicWidgetComponent(\n\tAccessKeyManagementWC\n);\nexport const AuditManagement = dynamicWidgetComponent(AuditManagementWC);\nexport const UserProfile = dynamicWidgetComponent(UserProfileWc);\nexport const ApplicationsPortal = dynamicWidgetComponent(ApplicationsPortalWc);\n"],"names":[],"mappings":";;;;;;AAgBA;AACA;AACA;AACA;;AAGE;AAEF;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sources":["../../../src/shared/constants.ts"],"sourcesContent":["// Replaced in build time\ndeclare const BUILD_VERSION: string;\n\n// eslint-disable-next-line import/prefer-default-export\nexport const baseHeaders = {\n\t'x-descope-sdk-name': 'nextjs',\n\t'x-descope-sdk-version': BUILD_VERSION\n};\n"],"names":[],"mappings":";;AAGA;AACa,MAAA,WAAW,GAAG;AAC1B,IAAA,oBAAoB,EAAE,QAAQ;AAC9B,IAAA,uBAAuB,EAAE,eAAa;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './shared';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NextRequest, NextResponse } from 'next/server';
|
|
2
|
+
type MiddlewareOptions = {
|
|
3
|
+
projectId?: string;
|
|
4
|
+
baseUrl?: string;
|
|
5
|
+
redirectUrl?: string;
|
|
6
|
+
publicRoutes?: string[];
|
|
7
|
+
privateRoutes?: string[];
|
|
8
|
+
};
|
|
9
|
+
declare const createAuthMiddleware: (
|
|
10
|
+
options?: MiddlewareOptions
|
|
11
|
+
) => (req: NextRequest) => Promise<NextResponse<unknown>>;
|
|
12
|
+
export default createAuthMiddleware;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const DESCOPE_SESSION_HEADER = 'x-descope-session';
|
|
2
|
+
export declare const baseHeaders: {
|
|
3
|
+
'x-descope-sdk-name': string;
|
|
4
|
+
'x-descope-sdk-version': string;
|
|
5
|
+
};
|
|
6
|
+
export declare const DEFAULT_PUBLIC_ROUTES: {
|
|
7
|
+
signIn: string;
|
|
8
|
+
signUp: string;
|
|
9
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import descopeSdk from '@descope/node-sdk';
|
|
2
|
+
type Sdk = ReturnType<typeof descopeSdk>;
|
|
3
|
+
type CreateSdkParams = Omit<Parameters<typeof descopeSdk>[0], 'projectId'> & {
|
|
4
|
+
projectId?: string | undefined;
|
|
5
|
+
};
|
|
6
|
+
export declare const createSdk: (config?: CreateSdkParams) => Sdk;
|
|
7
|
+
export declare const getGlobalSdk: (
|
|
8
|
+
config?: Pick<CreateSdkParams, 'projectId' | 'baseUrl'>
|
|
9
|
+
) => Sdk;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const mergeSearchParams: (...searchParams: string[]) => string;
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type * as _1 from '@descope/react-sdk/node_modules/@types/react';
|
|
3
|
+
import type * as _2 from '@descope/react-sdk/node_modules/@descope/web-component/dist';
|
|
4
|
+
type AdditionalProps = {
|
|
5
|
+
redirectAfterSuccess?: string;
|
|
6
|
+
redirectAfterError?: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const Descope: _1.ComponentType<
|
|
9
|
+
{
|
|
10
|
+
flowId: string;
|
|
11
|
+
onSuccess?: (
|
|
12
|
+
e: CustomEvent<import('@descope/core-js-sdk').JWTResponse>
|
|
13
|
+
) => void;
|
|
14
|
+
onError?: (
|
|
15
|
+
e: CustomEvent<{
|
|
16
|
+
errorCode: string;
|
|
17
|
+
errorDescription: string;
|
|
18
|
+
errorMessage?: string;
|
|
19
|
+
retryAfter?: string;
|
|
20
|
+
}>
|
|
21
|
+
) => void;
|
|
22
|
+
onReady?: (e: CustomEvent<{}>) => void;
|
|
23
|
+
logger?: Partial<any>;
|
|
24
|
+
tenant?: string;
|
|
25
|
+
theme?: _2.ThemeOptions;
|
|
26
|
+
locale?: string;
|
|
27
|
+
autoFocus?: _2.AutoFocusOptions;
|
|
28
|
+
validateOnBlur?: boolean;
|
|
29
|
+
restartOnError?: boolean;
|
|
30
|
+
debug?: boolean;
|
|
31
|
+
telemetryKey?: string;
|
|
32
|
+
redirectUrl?: string;
|
|
33
|
+
errorTransformer?: (error: { text: string; type: string }) => string;
|
|
34
|
+
form?: Record<string, any>;
|
|
35
|
+
client?: Record<string, any>;
|
|
36
|
+
styleId?: string;
|
|
37
|
+
} & _1.RefAttributes<HTMLElement> &
|
|
38
|
+
AdditionalProps
|
|
39
|
+
>;
|
|
40
|
+
export declare const SignInFlow: _1.ComponentType<
|
|
41
|
+
{
|
|
42
|
+
form?: Record<string, any>;
|
|
43
|
+
onSuccess?: (
|
|
44
|
+
e: CustomEvent<import('@descope/core-js-sdk').JWTResponse>
|
|
45
|
+
) => void;
|
|
46
|
+
onError?: (
|
|
47
|
+
e: CustomEvent<{
|
|
48
|
+
errorCode: string;
|
|
49
|
+
errorDescription: string;
|
|
50
|
+
errorMessage?: string;
|
|
51
|
+
retryAfter?: string;
|
|
52
|
+
}>
|
|
53
|
+
) => void;
|
|
54
|
+
onReady?: (e: CustomEvent<{}>) => void;
|
|
55
|
+
logger?: Partial<any>;
|
|
56
|
+
tenant?: string;
|
|
57
|
+
theme?: _2.ThemeOptions;
|
|
58
|
+
locale?: string;
|
|
59
|
+
autoFocus?: _2.AutoFocusOptions;
|
|
60
|
+
validateOnBlur?: boolean;
|
|
61
|
+
restartOnError?: boolean;
|
|
62
|
+
debug?: boolean;
|
|
63
|
+
telemetryKey?: string;
|
|
64
|
+
redirectUrl?: string;
|
|
65
|
+
errorTransformer?: (error: { text: string; type: string }) => string;
|
|
66
|
+
client?: Record<string, any>;
|
|
67
|
+
styleId?: string;
|
|
68
|
+
} & AdditionalProps
|
|
69
|
+
>;
|
|
70
|
+
export declare const SignUpFlow: _1.ComponentType<
|
|
71
|
+
{
|
|
72
|
+
form?: Record<string, any>;
|
|
73
|
+
onSuccess?: (
|
|
74
|
+
e: CustomEvent<import('@descope/core-js-sdk').JWTResponse>
|
|
75
|
+
) => void;
|
|
76
|
+
onError?: (
|
|
77
|
+
e: CustomEvent<{
|
|
78
|
+
errorCode: string;
|
|
79
|
+
errorDescription: string;
|
|
80
|
+
errorMessage?: string;
|
|
81
|
+
retryAfter?: string;
|
|
82
|
+
}>
|
|
83
|
+
) => void;
|
|
84
|
+
onReady?: (e: CustomEvent<{}>) => void;
|
|
85
|
+
logger?: Partial<any>;
|
|
86
|
+
tenant?: string;
|
|
87
|
+
theme?: _2.ThemeOptions;
|
|
88
|
+
locale?: string;
|
|
89
|
+
autoFocus?: _2.AutoFocusOptions;
|
|
90
|
+
validateOnBlur?: boolean;
|
|
91
|
+
restartOnError?: boolean;
|
|
92
|
+
debug?: boolean;
|
|
93
|
+
telemetryKey?: string;
|
|
94
|
+
redirectUrl?: string;
|
|
95
|
+
errorTransformer?: (error: { text: string; type: string }) => string;
|
|
96
|
+
client?: Record<string, any>;
|
|
97
|
+
styleId?: string;
|
|
98
|
+
} & AdditionalProps
|
|
99
|
+
>;
|
|
100
|
+
export declare const SignUpOrInFlow: _1.ComponentType<
|
|
101
|
+
{
|
|
102
|
+
form?: Record<string, any>;
|
|
103
|
+
onSuccess?: (
|
|
104
|
+
e: CustomEvent<import('@descope/core-js-sdk').JWTResponse>
|
|
105
|
+
) => void;
|
|
106
|
+
onError?: (
|
|
107
|
+
e: CustomEvent<{
|
|
108
|
+
errorCode: string;
|
|
109
|
+
errorDescription: string;
|
|
110
|
+
errorMessage?: string;
|
|
111
|
+
retryAfter?: string;
|
|
112
|
+
}>
|
|
113
|
+
) => void;
|
|
114
|
+
onReady?: (e: CustomEvent<{}>) => void;
|
|
115
|
+
logger?: Partial<any>;
|
|
116
|
+
tenant?: string;
|
|
117
|
+
theme?: _2.ThemeOptions;
|
|
118
|
+
locale?: string;
|
|
119
|
+
autoFocus?: _2.AutoFocusOptions;
|
|
120
|
+
validateOnBlur?: boolean;
|
|
121
|
+
restartOnError?: boolean;
|
|
122
|
+
debug?: boolean;
|
|
123
|
+
telemetryKey?: string;
|
|
124
|
+
redirectUrl?: string;
|
|
125
|
+
errorTransformer?: (error: { text: string; type: string }) => string;
|
|
126
|
+
client?: Record<string, any>;
|
|
127
|
+
styleId?: string;
|
|
128
|
+
} & AdditionalProps
|
|
129
|
+
>;
|
|
130
|
+
export {};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type * as _1 from '@descope/react-sdk/node_modules/@types/react';
|
|
3
|
+
export declare const UserManagement: _1.ComponentType<
|
|
4
|
+
{
|
|
5
|
+
logger?: Partial<any>;
|
|
6
|
+
tenant: string;
|
|
7
|
+
widgetId: string;
|
|
8
|
+
theme?: import('@descope/web-component').ThemeOptions;
|
|
9
|
+
debug?: boolean;
|
|
10
|
+
styleId?: string;
|
|
11
|
+
} & _1.RefAttributes<HTMLElement>
|
|
12
|
+
>;
|
|
13
|
+
export declare const RoleManagement: _1.ComponentType<
|
|
14
|
+
{
|
|
15
|
+
logger?: Partial<any>;
|
|
16
|
+
tenant: string;
|
|
17
|
+
widgetId: string;
|
|
18
|
+
theme?: import('@descope/web-component').ThemeOptions;
|
|
19
|
+
debug?: boolean;
|
|
20
|
+
styleId?: string;
|
|
21
|
+
} & _1.RefAttributes<HTMLElement>
|
|
22
|
+
>;
|
|
23
|
+
export declare const AccessKeyManagement: _1.ComponentType<
|
|
24
|
+
{
|
|
25
|
+
logger?: Partial<any>;
|
|
26
|
+
tenant: string;
|
|
27
|
+
widgetId: string;
|
|
28
|
+
theme?: import('@descope/web-component').ThemeOptions;
|
|
29
|
+
debug?: boolean;
|
|
30
|
+
styleId?: string;
|
|
31
|
+
} & _1.RefAttributes<HTMLElement>
|
|
32
|
+
>;
|
|
33
|
+
export declare const AuditManagement: _1.ComponentType<
|
|
34
|
+
{
|
|
35
|
+
logger?: Partial<any>;
|
|
36
|
+
tenant: string;
|
|
37
|
+
widgetId: string;
|
|
38
|
+
theme?: import('@descope/web-component').ThemeOptions;
|
|
39
|
+
debug?: boolean;
|
|
40
|
+
styleId?: string;
|
|
41
|
+
} & _1.RefAttributes<HTMLElement>
|
|
42
|
+
>;
|
|
43
|
+
export declare const UserProfile: _1.ComponentType<
|
|
44
|
+
Omit<
|
|
45
|
+
{
|
|
46
|
+
logger?: Partial<any>;
|
|
47
|
+
tenant: string;
|
|
48
|
+
widgetId: string;
|
|
49
|
+
theme?: import('@descope/web-component').ThemeOptions;
|
|
50
|
+
debug?: boolean;
|
|
51
|
+
styleId?: string;
|
|
52
|
+
},
|
|
53
|
+
'tenant'
|
|
54
|
+
> & {
|
|
55
|
+
onLogout?: (e: CustomEvent<any>) => void;
|
|
56
|
+
} & _1.RefAttributes<HTMLElement>
|
|
57
|
+
>;
|
|
58
|
+
export declare const ApplicationsPortal: _1.ComponentType<
|
|
59
|
+
Omit<
|
|
60
|
+
{
|
|
61
|
+
logger?: Partial<any>;
|
|
62
|
+
tenant: string;
|
|
63
|
+
widgetId: string;
|
|
64
|
+
theme?: import('@descope/web-component').ThemeOptions;
|
|
65
|
+
debug?: boolean;
|
|
66
|
+
styleId?: string;
|
|
67
|
+
},
|
|
68
|
+
'tenant'
|
|
69
|
+
> & {
|
|
70
|
+
onLogout?: (e: CustomEvent<any>) => void;
|
|
71
|
+
} & _1.RefAttributes<HTMLElement>
|
|
72
|
+
>;
|