@clerk/nextjs
Version:
Clerk SDK for NextJS
1 lines • 6.96 kB
Source Map (JSON)
{"version":3,"sources":["../../../src/server/createGetAuth.ts"],"sourcesContent":["import type { AuthObject } from '@clerk/backend';\nimport { constants } from '@clerk/backend/internal';\nimport { isTruthy } from '@clerk/shared/underscore';\n\nimport { withLogger } from '../utils/debugLogger';\nimport { isNextWithUnstableServerActions } from '../utils/sdk-versions';\nimport { getAuthDataFromRequest } from './data/getAuthDataFromRequest';\nimport { getAuthAuthHeaderMissing } from './errors';\nimport { detectClerkMiddleware, getHeader } from './headers-utils';\nimport type { RequestLike } from './types';\nimport { assertAuthStatus } from './utils';\n\n/**\n * The async variant of our old `createGetAuth` allows for asynchronous code inside its callback.\n * Should be used with function like `auth()` that are already asynchronous.\n */\nexport const createAsyncGetAuth = ({\n debugLoggerName,\n noAuthStatusMessage,\n}: {\n debugLoggerName: string;\n noAuthStatusMessage: string;\n}) =>\n withLogger(debugLoggerName, logger => {\n return async (req: RequestLike, opts?: { secretKey?: string }): Promise<AuthObject> => {\n if (isTruthy(getHeader(req, constants.Headers.EnableDebug))) {\n logger.enable();\n }\n\n if (!detectClerkMiddleware(req)) {\n // Keep the same behaviour for versions that may have issues with bundling `node:fs`\n if (isNextWithUnstableServerActions) {\n assertAuthStatus(req, noAuthStatusMessage);\n }\n\n const missConfiguredMiddlewareLocation = await import('./fs/middleware-location.js')\n .then(m => m.suggestMiddlewareLocation())\n .catch(() => undefined);\n\n if (missConfiguredMiddlewareLocation) {\n throw new Error(missConfiguredMiddlewareLocation);\n }\n\n // still throw there is no suggested move location\n assertAuthStatus(req, noAuthStatusMessage);\n }\n\n return getAuthDataFromRequest(req, { ...opts, logger });\n };\n });\n\n/**\n * Previous known as `createGetAuth`. We needed to create a sync and async variant in order to allow for improvements\n * that required dynamic imports (using `require` would not work).\n * It powers the synchronous top-level api `getAuh()`.\n */\nexport const createSyncGetAuth = ({\n debugLoggerName,\n noAuthStatusMessage,\n}: {\n debugLoggerName: string;\n noAuthStatusMessage: string;\n}) =>\n withLogger(debugLoggerName, logger => {\n return (req: RequestLike, opts?: { secretKey?: string }): AuthObject => {\n if (isTruthy(getHeader(req, constants.Headers.EnableDebug))) {\n logger.enable();\n }\n\n assertAuthStatus(req, noAuthStatusMessage);\n return getAuthDataFromRequest(req, { ...opts, logger });\n };\n });\n\n/**\n * The `getAuth()` helper retrieves authentication state from the request object.\n *\n * @note\n * If you are using App Router, use the [`auth()` helper](https://clerk.com/docs/references/nextjs/auth) instead.\n *\n * @param req - The Next.js request object.\n * @param [options] - An optional object that can be used to configure the behavior of the `getAuth()` function.\n * @param [options.secretKey] - A string that represents the Secret Key used to sign the session token. If not provided, the Secret Key is retrieved from the environment variable `CLERK_SECRET_KEY`.\n * @returns The `Auth` object. See the [Auth reference](https://clerk.com/docs/references/backend/types/auth-object) for more information.\n *\n * @example\n * **Protect API routes**\n *\n * The following example demonstrates how to protect an API route by checking if the `userId` is present in the `getAuth()` response.\n *\n * ```tsx\n * // app/api/example/route.ts\n * import { getAuth } from '@clerk/nextjs/server'\n * import type { NextApiRequest, NextApiResponse } from 'next'\n *\n * export default async function handler(req: NextApiRequest, res: NextApiResponse) {\n * const { userId } = getAuth(req)\n *\n * if (!userId) {\n * return res.status(401).json({ error: 'Not authenticated' })\n * }\n *\n * // Add logic that retrieves the data for the API route\n *\n * return res.status(200).json({ userId: userId })\n * }\n * ```\n *\n * @example\n * **Usage with `getToken()`**\n *\n * `getAuth()` returns [`getToken()`](https://clerk.com/docs/references/backend/types/auth-object#get-token), which is a method that returns the current user's session token or a custom JWT template.\n *\n * ```tsx\n * // app/api/example/route.ts\n *\n * import { getAuth } from '@clerk/nextjs/server'\n * import type { NextApiRequest, NextApiResponse } from 'next'\n *\n * export default async function handler(req: NextApiRequest, res: NextApiResponse) {\n * const { getToken } = getAuth(req)\n *\n * const token = await getToken({ template: 'supabase' })\n *\n * // Add logic that retrieves the data\n * // from your database using the token\n *\n * return res.status(200).json({})\n * }\n * ```\n *\n * @example\n * **Usage with `clerkClient`**\n *\n * `clerkClient` is used to access the [Backend SDK](https://clerk.com/docs/references/backend/overview), which exposes Clerk's Backend API resources. You can use `getAuth()` to pass authentication information that many of the Backend SDK methods require, like the user's ID.\n *\n * ```tsx\n * // app/api/example/route.ts\n *\n * import { clerkClient, getAuth } from '@clerk/nextjs/server'\n * import type { NextApiRequest, NextApiResponse } from 'next'\n *\n * export default async function handler(req: NextApiRequest, res: NextApiResponse) {\n * const { userId } = getAuth(req)\n *\n * const client = await clerkClient()\n *\n * const user = userId ? await client.users.getUser(userId) : null\n *\n * return res.status(200).json({})\n * }\n * ```\n */\nexport const getAuth = createSyncGetAuth({\n debugLoggerName: 'getAuth()',\n noAuthStatusMessage: getAuthAuthHeaderMissing(),\n});\n"],"mappings":";AACA,SAAS,iBAAiB;AAC1B,SAAS,gBAAgB;AAEzB,SAAS,kBAAkB;AAC3B,SAAS,uCAAuC;AAChD,SAAS,8BAA8B;AACvC,SAAS,gCAAgC;AACzC,SAAS,uBAAuB,iBAAiB;AAEjD,SAAS,wBAAwB;AAM1B,MAAM,qBAAqB,CAAC;AAAA,EACjC;AAAA,EACA;AACF,MAIE,WAAW,iBAAiB,YAAU;AACpC,SAAO,OAAO,KAAkB,SAAuD;AACrF,QAAI,SAAS,UAAU,KAAK,UAAU,QAAQ,WAAW,CAAC,GAAG;AAC3D,aAAO,OAAO;AAAA,IAChB;AAEA,QAAI,CAAC,sBAAsB,GAAG,GAAG;AAE/B,UAAI,iCAAiC;AACnC,yBAAiB,KAAK,mBAAmB;AAAA,MAC3C;AAEA,YAAM,mCAAmC,MAAM,OAAO,6BAA6B,EAChF,KAAK,OAAK,EAAE,0BAA0B,CAAC,EACvC,MAAM,MAAM,MAAS;AAExB,UAAI,kCAAkC;AACpC,cAAM,IAAI,MAAM,gCAAgC;AAAA,MAClD;AAGA,uBAAiB,KAAK,mBAAmB;AAAA,IAC3C;AAEA,WAAO,uBAAuB,KAAK,EAAE,GAAG,MAAM,OAAO,CAAC;AAAA,EACxD;AACF,CAAC;AAOI,MAAM,oBAAoB,CAAC;AAAA,EAChC;AAAA,EACA;AACF,MAIE,WAAW,iBAAiB,YAAU;AACpC,SAAO,CAAC,KAAkB,SAA8C;AACtE,QAAI,SAAS,UAAU,KAAK,UAAU,QAAQ,WAAW,CAAC,GAAG;AAC3D,aAAO,OAAO;AAAA,IAChB;AAEA,qBAAiB,KAAK,mBAAmB;AACzC,WAAO,uBAAuB,KAAK,EAAE,GAAG,MAAM,OAAO,CAAC;AAAA,EACxD;AACF,CAAC;AAiFI,MAAM,UAAU,kBAAkB;AAAA,EACvC,iBAAiB;AAAA,EACjB,qBAAqB,yBAAyB;AAChD,CAAC;","names":[]}