Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!
Go to file
2021-05-24 16:37:12 +02:00
.github/workflows 💚 Disable publishing to GH package repository 2021-05-23 17:51:37 +02:00
app [ENHANCEMENT] Enhanced Types, Improved OAuth2 Configuration and Bug Fixes (#16) 2021-05-24 16:30:17 +02:00
client [ENHANCEMENT] Distributable Bundle with Rollup and ESBuild (#11) 2021-05-23 17:32:42 +02:00
providers [ENHANCEMENT] Distributable Bundle with Rollup and ESBuild (#11) 2021-05-23 17:32:42 +02:00
res 🍱 Add banner.png 2021-05-23 18:00:00 +02:00
src [ENHANCEMENT] Enhanced Types, Improved OAuth2 Configuration and Bug Fixes (#16) 2021-05-24 16:30:17 +02:00
.eslintrc.cjs [ENHANCEMENT] Demo / Testing App, Updated Build Configuration (#8) 2021-05-21 17:59:21 +02:00
.gitattributes Initial commit 2021-05-17 18:34:30 +02:00
.gitignore 🙈 Add dist/ folder to .gitignore 2021-05-17 19:01:16 +02:00
.npmrc 🎉 Initialize NPM project and install dependencies 2021-05-17 18:47:18 +02:00
.prettierignore 🎉 Initialize NPM project and install dependencies 2021-05-17 18:47:18 +02:00
.prettierrc 🎉 Initialize NPM project and install dependencies 2021-05-17 18:47:18 +02:00
LICENSE Initial commit 2021-05-17 18:34:30 +02:00
package.json 🔖 Bump version to 0.2.0 2021-05-23 22:10:47 +02:00
README.md 📝 Update documentation texts, add callbacks documentation, OAuth implementation and remove jwt() callback from example 2021-05-24 16:37:12 +02:00
rollup.config.js 🎨 Format and lint code 2021-05-23 22:30:34 +02:00
tsconfig.json [ENHANCEMENT] Distributable Bundle with Rollup and ESBuild (#11) 2021-05-23 17:32:42 +02:00
yarn.lock [ENHANCEMENT] Distributable Bundle with Rollup and ESBuild (#11) 2021-05-23 17:32:42 +02:00

SvelteKitAuth Banner

SvelteKitAuth

License: MIT NPM Release NPM Downloads NPM Type Definitions

Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!

Getting Started

SvelteKitAuth is very easy to setup! All you need to do is instantiate the SvelteKitAuth class, and configure it with some default providers, as well as a JWT secret key used to verify the cookies:

export const appAuth = new SvelteKitAuth({
  providers: [
    new GoogleOAuthProvider({
      clientId: import.meta.env.VITE_GOOGLE_OAUTH_CLIENT_ID,
      clientSecret: import.meta.env.VITE_GOOGLE_OAUTH_CLIENT_SECRET,
      profile(profile) {
        return { ...profile, provider: "google" };
      },
    }),
  ],
  jwtSecret: import.meta.env.JWT_SECRET_KEY,
});

If you want to override or augment the default SvelteKit session to get access to the user in the session store, you can use the getSession hook:

// overriding the default session
export const { getSession } = appAuth;

// augmenting it
export const getSession: GetSession = async (request) => {
  const { user } = await appAuth.getSession(request);

  return { user };
};

Callbacks

SvelteKitAuth provides some callbacks, similar to NextAuth.js. Their call signatures are:

interface AuthCallbacks {
  signIn?: () => boolean | Promise<boolean>;
  jwt?: (token: JWT, profile?: any) => JWT | Promise<JWT>;
  session?: (token: JWT, session: Session) => Session | Promise<Session>;
  redirect?: (url: string) => string | Promise<string>;
}

Adding more Providers

SvelteKitAuth uses a object-oriented approach towards creating providers. It is unopionated and allows you to implement any three-legged authentication flow such as OAuth, SAML SSO, and even regular credential logins by omitting the signin() route.

You can implement your own using the Provider base provider class, and by implementing the signin() and callback() methods:

export abstract class Provider<T extends ProviderConfig = ProviderConfig> {
  abstract signin<Locals extends Record<string, any> = Record<string, any>, Body = unknown>(
    request: ServerRequest<Locals, Body>,
  ): EndpointOutput | Promise<EndpointOutput>;

  abstract callback<Locals extends Record<string, any> = Record<string, any>, Body = unknown>(
    request: ServerRequest<Locals, Body>,
  ): CallbackResult | Promise<CallbackResult>;
}

signin() must return a generic endpoint output, this can be a redirect, or the path to the provider's sign-in page. When implementing a HTTP POST route, signin() can simply return an empty body and callback() should handle the user login flow.

callback() takes a ServerRequest and must return a CallbackResult which is a custom type exported by svelte-kit-auth:

export type Profile = any;
export type CallbackResult = [Profile, string | null];

The first item in the tuple is the user profile, which gets stored in the token, and is provided to the jwt() callback as the second argument. The second item is a redirect route, which may be tracked using the state query parameter for OAuth providers, or other implementations depending on the sign-in method.

OAuth2

SvelteKitAuth comes with a built-in OAuth2 provider that takes extensive configuration parameters to support almost any common OAuth2 provider which follows the OAuth2 spec. It can be imported from sk-auth/providers and configured with the following configuration object:

export interface OAuth2ProviderConfig<ProfileType = any, TokensType extends OAuth2Tokens = any>
  extends OAuth2BaseProviderConfig<ProfileType, TokensType> {
  accessTokenUrl?: string;
  authorizationUrl?: string;
  profileUrl?: string;
  clientId?: string;
  clientSecret?: string;
  scope: string | string[];
  headers?: any;
  authorizationParams?: any;
  params: any;
  grantType?: string;
  responseType?: string;
  contentType?: "application/json" | "application/x-www-form-urlencoded";
}

Some values have defaults which can be seen below:

const defaultConfig: Partial<OAuth2ProviderConfig> = {
  responseType: "code",
  grantType: "authorization_code",
  contentType: "application/json",
};

The OAuth2Provider class can then be instantiated with the configuration to support the OAuth2 flow, including authorization redirect, token retrieval and profile fetching. It will also automatically handle the state and nonce params for you.

Motivation

SvelteKitAuth is inspired by the NextAuth.js package built for the Next.js SSR framework for React. Unlike NextAuth.js it is completely unopinionated and only provides implementations for default flows, while still empowering users to add their own providers.

As it leverages classes and Typescript, the implementation of such providers is very straightforward, and in the future it will even be possible to register multiple SvelteKitAuth handlers in the same project, should the need arise, by leveraging a class-based client and server setup.

Contributing

🚧 Work in Progress!

License

This project is licensed under the terms of the MIT license.