next-cas-client
v1.1.1
Published
A CAS client built for Next.js to authenticate, validate tickets, and provide session management to a CAS server
Downloads
410
Maintainers
Readme
next-cas-client
Maintained by the University of Hawaiʻi.
Designed for Next.js, next-cas-client
serves as an API platform to interact with a CAS server to authenticate, validate tickets, and provide session management (powered by iron-session).
Currently supports CAS 2.0, CAS 3.0 and SAML 1.1 service validation methods.
Contributions to this repo to support more validation protocols is highly encouraged! (See contributing)
Table of Contents
Getting Started
1. Installation
# Using npm:
npm i next-cas-client
# Using pnpm:
pnpm add next-cas-client
# Using yarn:
yarn add next-cas-client
2. Set Environment Variables
.env
:
NEXT_PUBLIC_BASE_URL=https://example.com
NEXT_PUBLIC_CAS_URL=https://cas.example.com/cas
NEXT_CAS_CLIENT_SAML_TOLERANCE=18000
NEXT_PUBLIC_BASE_URL
(Required): The URL to redirect to after logging-in/outNEXT_PUBLIC_CAS_URL
(Required): The URL prefix of your CAS serverNEXT_CAS_CLIENT_SAML_TOLERANCE
(Optional): The tolerance in milliseconds for drifting clocks when validating SAML tickets. Only applies to SAML 1.1 validation. Defaults to 1000 milliseconds.
.env.local
:
NEXT_CAS_CLIENT_SECRET=GenerateA32CharacterLongPassword
NEXT_CAS_CLIENT_SECRET
(Required): The secret used to encrypt/decrypt the session stored as a cookie. It must be greater than 32 characters long. Use https://1password.com/password-generator to generate a password.
3. Add API Route
App Router: app/api/cas/[client]/route.ts
:
import { handleAuth, ValidatorProtocol } from 'next-cas-client';
export const GET = handleAuth({ validator: ValidatorProtocol.SAML11 });
Page Router: pages/api/cas/[client].ts
:
import { handleAuth, ValidatorProtocol } from 'next-cas-client';
export default handleAuth({ validator: ValidatorProtocol.SAML11 });
handleAuth() Options:
validator
(Required): The ValidatorProtocol enumValidatorProtocol.CAS20
for CAS 2.0 service validationValidatorProtocol.CAS20
for CAS 3.0 service validationValidatorProtocol.SAML11
for SAML 1.1 validation
loadUser
(Optional): Function to redefine the user object stored in session.Parameters:
casUser: CasUser
Returns:
any | promise<any>
If a
loadUser
function is not passed in, the stored user in session defaults to a object of typeCasUser
:type CasUser = { user: string; attributes: record<string, string | string[]>; };
Example: Using
loadUser
to redefine the user and store authorization roles:import { handleAuth, ValidatorProtocol } from 'next-cas-client'; async function loadUser(casUser: CasUser) { const user = { uid: casUser.user name: casUser.attributes.name, email: casUser.attributes.email, roles: [] } await setRoles(user); // Makes API call(s) to retrieve and set the user's roles return user; } export default handleAuth({ loadUser, validator: ValidatorProtocol.SAML11 });
Usage
login(): void
(Client-Side Only)
Visits the CAS login page.
'use client';
import { login } from 'next-cas-client/client';
<button onClick={() => login()}>Login</button>;
login() Options:
renew
(Optional): Boolean,true
to disallow SSO. Defaults tofalse
.
logout(): void
(Client-Side Only)
Visits the CAS logout page.
'use client';
import { login } from 'next-cas-client/client';
<button onClick={() => logout()}>Logout</button>;
logout() Options:
enableSLO
(Optional): Boolean,true
to enable SLO (Single Logout). Destroys current SSO session. Defaults tofalse
.
getCurrentUser<T>(): Promise<T = CasUser | null>
(Server-Side Only)
Gets the current user. Returns null
if no user is logged-in.
const currentUser = await getCurrentUser();
Returns an object of type CasUser
by default. Define the generic type of getCurrentUser()
if you used the loadUser
option in handleAuth()
. The type should match the return of the loadUser
function you defined.
Example:
type User = { uid: string; name: string; email: string; roles: string[]; }; const currentUser = await getCurrentUser<User>();
isLoggedIn(): Promise<boolean>
(Server-Side Only)
Returns true
if a user is logged-in.
const isLoggedIn = await isLoggedIn();
Examples
For the full demo, Docker is required.
Contributing
Please open a new issue before creating a PR. This project is currently focusing on supporting more ticket validation protocols. Any other issues and PRs created out of this scope may be rejected.
For more information on how to contribute, view here.
FAQ
Is there support for other React frameworks like Vite and Remix?
No, not at this moment.
How do I use getCurrentUser()
and isLoggedIn()
in a client component?
It is recommended to use those functions inside a server component then pass them as props into a client component.
How do I resolve the error when importing login()
and logout()
from 'next-cas-client/client'
?
In your project's tsconfig.json
, set compilerOptions.moduleResolution
to "bundler".