UNPKG

next-auth

Version:

Authentication for Next.js

34 lines (33 loc) 1.2 kB
import { InternalOptions } from "../../lib/types"; import { AdapterSession, AdapterUser } from "../../adapters"; import { JWT } from "../../jwt"; import { Account, User } from "../.."; import { SessionToken } from "./cookie"; /** * This function handles the complex flow of signing users in, and either creating, * linking (or not linking) accounts depending on if the user is currently logged * in, if they have account already and the authentication mechanism they are using. * * It prevents insecure behaviour, such as linking OAuth accounts unless a user is * signed in and authenticated with an existing valid account. * * All verification (e.g. OAuth flows or email address verificaiton flows) are * done prior to this handler being called to avoid additonal complexity in this * handler. */ export default function callbackHandler(params: { sessionToken?: SessionToken; profile: User; account: Account; options: InternalOptions; }): Promise<{ user: User; account: Account; session: {}; isNewUser?: undefined; } | { session: JWT | AdapterSession | null; user: AdapterUser; isNewUser: boolean; account?: undefined; } | undefined>;