2.0.2 • Published 1 year ago

@authok/nextjs-authok v2.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

nextjs-authok

The Authok Next.js SDK is a library for implementing user authentication in Next.js applications.

Release Coverage Downloads License CircleCI

📚 文档 - 🚀 快速开始- 💻 API 参考 - 💬 反馈

文档

  • 快速开始- 在您的 Next.js 应用中引入 authok.
  • FAQs - 关于 nextjs-authok 的常见问题.
  • 示例 - 不同使用场景的示例.
  • 安全 - 一些重要的安全注意事项.
  • 架构 - SDK 的架构.
  • 测试 - 测试 nextjs-authok 应用的一些辅助.
  • 部署 - 如何将示例应用程序部署到 Vercel.
  • 文档网站 - 浏览我们的文档网站,了解有关Authok的更多信息.

快速开始

安装

使用 npm:

npm install @authok/nextjs-authok

本模块支持以下核心库版本:

  • Node.js: 12 LTS and newer LTS releases are supported.
  • Next.js: >=10

Authok 配置

Authok 仪表盘 创建一个 常规 Web 应用.

If you're using an existing application, verify that you have configured the following settings in your Regular Web Application:

  • 在应用页面点击 "设置" 标签.
  • 点击 "显示高级设置" 链接.
  • 在 "高级设置" 中, 点击 "OAuth" 标签页.
  • 确保 "JsonWebToken 签名算法" 设置为 RS256 还有 "OIDC Conformant" 被启用.

接下来, 在 "设置" 页面 的 "应用 URIs" 部分配置如下 URL:

  • Allowed Callback URLs: http://localhost:3000/api/auth/callback
  • Allowed Logout URLs: http://localhost:3000/

在 "基本信息" 部分 获取 Client ID, Client Secret, 和 Domain . 你将会在后续步骤用到这些配置.

基本设置

配置应用

你需要允许你的 Next.js 应用 与 Authok 正确通信. 你可以在项目根目录下创建 .env.local 文件, 该文件定义了必要的 Authok 配置:

# A long, secret value used to encrypt the session cookie
AUTHOK_SECRET='LONG_RANDOM_VALUE'
# The base url of your application
AUTHOK_BASE_URL='http://localhost:3000'
# The url of your Authok tenant domain
AUTHOK_ISSUER_BASE_URL='https://YOUR_AUTHOK_DOMAIN.authok.cn'
# Your Authok application's Client ID
AUTHOK_CLIENT_ID='YOUR_AUTHOK_CLIENT_ID'
# Your Authok application's Client Secret
AUTHOK_CLIENT_SECRET='YOUR_AUTHOK_CLIENT_SECRET'

你可以执行以下命令来为 AUTHOK_SECRET 生成合适的值:

node -e "console.log(crypto.randomBytes(32).toString('hex'))"

你可以在 "模块配置" 文档的 "Configuration properties"章节查看 Authok 配置选项的完整列表.

For more details about loading environment variables in Next.js, visit the "Environment Variables" document.

添加动态 API 路由

在 Next.js 应用的 /pages/api 目录中创建一个 catch-all, dynamic API route handler:

  • /pages/api/ 下创建一个 auth 目录.

  • auth 目录下 创建一个 [...authok].js 文件.

访问 动态 API 路由文件 的路径为 /pages/api/auth/[...authok].js. 按如下方式填充该文件:

import { handleAuth } from '@authok/nextjs-authok';

export default handleAuth();

执行 handleAuth() 将在后台创建以下路由处理器,以之行身份验证流的不同部分:

  • /api/auth/login: 你的 Next.js 应用重定向用户到身份提供者进行登录 (你可以传递一个可选参数 returnTo,用于在登录后跳转到自定义的相对URL, 例如 /api/auth/login?returnTo=/profile).
  • /api/auth/callback: 登录成功后,身份提供者重定向用户到此路由.
  • /api/auth/logout: Next.js 应用退登用户.
  • /api/auth/me: 用于获取JSON格式的用户详情.

把 UserProvider 添加到 自定义 App

UserProvider 组件来包装 pages/_app.js 组件:

// pages/_app.js
import React from 'react';
import { UserProvider } from '@authok/nextjs-authok/client';

export default function App({ Component, pageProps }) {
  return (
    <UserProvider>
      <Component {...pageProps} />
    </UserProvider>
  );
}

使用身份认证

现在,你可以通过检查 useUser() 返回的 user 对象是否已定义来确定用户是否通过身份验证. 你还可以从 Next.js 应用的前端来 登录 或 注销用户(通过重定向到对应的自动生成的路由):

// pages/index.js
import { useUser } from '@authok/nextjs-authok/client';

export default function Index() {
  const { user, error, isLoading } = useUser();

  if (isLoading) return <div>Loading...</div>;
  if (error) return <div>{error.message}</div>;

  if (user) {
    return (
      <div>
        Welcome {user.name}! <a href="/api/auth/logout">Logout</a>
      </div>
    );
  }

  return <a href="/api/auth/login">Login</a>;
}

Next linting rules 可以能建议使用 Link 组件来替代 a 标签. Link 组件会执行 client-side transitions between pages. 而链接指向的是 API 路由而不是页面, 因此你需要使用 a 标签.

There are two additional ways to check for an authenticated user; one for Next.js pages using withPageAuthRequired and one for Next.js API routes using withAPIAuthRequired.

其它综合示例, 参考 EXAMPLES.md 文档.

API 参考

Server (for Node.js)

import * from @authok/nextjs-authok

Edge (for Middleware and the Edge runtime)

import * from @authok/nextjs-authok/edge

Client (for the Browser)

import * from @authok/nextjs-authok/client

Testing helpers

import * from @authok/nextjs-authok/testing

参考自动生成的 API 文档 获取更多细节

Cookies and Security

All cookies will be set to HttpOnly, SameSite=Lax and will be set to Secure if the application's AUTHOK_BASE_URL is https.

The HttpOnly setting will make sure that client-side JavaScript is unable to access the cookie to reduce the attack surface of XSS attacks.

The SameSite=Lax setting will help mitigate CSRF attacks. Learn more about SameSite by reading the "Upcoming Browser Behavior Changes: What Developers Need to Know" blog post.

Caching and Security

Many hosting providers will offer to cache your content at the edge in order to serve data to your users as fast as possible. For example Vercel will cache your content on the Vercel Edge Network for all static content and Serverless Functions if you provide the necessary caching headers on your response.

It's generally a bad idea to cache any response that requires authentication, even if the response's content appears safe to cache there may be other data in the response that isn't.

This SDK offers a rolling session by default, which means that any response that reads the session will have a Set-Cookie header to update the cookie's expiry. Vercel and potentially other hosting providers include the Set-Cookie header in the cached response, so even if you think the response's content can be cached publicly, the responses Set-Cookie header cannot.

Check your hosting provider's caching rules, but in general you should never cache responses that either require authentication or even touch the session to check authentication (eg when using withApiAuthRequired, withPageAuthRequired or even just getSession or getAccessToken).

Error Handling and Security

Errors that come from Authok in the redirect_uri callback may contain reflected user input via the OpenID Connect error and error_description query parameter. Because of this, we do some basic escaping on the message, error and error_description properties of the IdentityProviderError.

But, if you write your own error handler, you should not render the error message, or error and error_description properties without using a templating engine that will properly escape them for other HTML contexts first.

Base Path and Internationalized Routing

With Next.js you can deploy a Next.js application under a sub-path of a domain using Base Path and serve internationalized (i18n) routes using Internationalized Routing.

If you use these features the urls of your application will change and so the urls to the nextjs-authok routes will change. To accommodate this there are various places in the SDK that you can customise the url.

For example, if basePath: '/foo' you should prepend this to the loginUrl and profileUrl specified in your AuthokProvider:

// _app.jsx
function App({ Component, pageProps }) {
  return (
    <UserProvider loginUrl="/foo/api/auth/login" profileUrl="/foo/api/auth/me">
      <Component {...pageProps} />
    </UserProvider>
  );
}

Also, any links to login or logout should include the basePath:

<a href="/foo/api/auth/login">Login</a><br />
<a href="/foo/api/auth/logout">Logout</a>

You should configure the baseUrl (or the AUTHOK_BASE_URL environment variable). For example:

# .env.local
AUTHOK_BASE_URL=http://localhost:3000/foo

For any pages that are protected with the Server Side withPageAuthRequired you should update the returnTo parameter depending on the basePath and locale if necessary.

// ./pages/my-ssr-page.jsx
export default MySsrPage = () => <></>;

const getFullReturnTo = (ctx) => {
  // TODO: implement getFullReturnTo based on the ctx.resolvedUrl, ctx.locale
  // and your next.config.js's basePath and i18n settings.
  return '/foo/en-US/my-ssr-page';
};

export const getServerSideProps = (ctx) => {
  const returnTo = getFullReturnTo(ctx.req);
  return withPageAuthRequired({ returnTo })(ctx);
};

对比 Authok React SDK

We also provide an Authok React SDK, authok-react, which may be suitable for your Next.js application.

The SPA security model used by authok-react is different from the Web Application security model used by this SDK. In short, this SDK protects pages and API routes with a cookie session (see "Cookies and Security"). A SPA library like authok-react will store the user's ID token and access token directly in the browser and use them to access external APIs directly.

You should be aware of the security implications of both models. However, authok-react may be more suitable for your needs if you meet any of the following scenarios:

  • You are using Static HTML Export with Next.js.
  • You do not need to access user data during server-side rendering.
  • You want to get the access token and call external API's directly from the frontend layer rather than using Next.js API routes as a proxy to call external APIs.

Testing

By default, the SDK creates and manages a singleton instance to run for the lifetime of the application. When testing your application, you may need to reset this instance, so its state does not leak between tests.

If you're using Jest, we recommend using jest.resetModules() after each test. Alternatively, you can look at creating your own instance of the SDK, so it can be recreated between tests.

For end to end tests, have a look at how we use a mock OIDC Provider.

部署

参考 如何将示例应用程序部署到 Vercel.

捐献

We appreciate feedback and contribution to this repo! Before you get started, please read the following:

Vulnerability Reporting

Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.

Authok 是什么?