Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: adding okta oauth support #353

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ It can also be set using environment variables:
- Linear
- LinkedIn
- Microsoft
- Okta
- PayPal
- Polar
- Seznam
Expand Down
6 changes: 6 additions & 0 deletions playground/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,12 @@ const providers = computed(() =>
disabled: Boolean(user.value?.apple),
icon: 'i-simple-icons-apple',
},
{
label: user.value?.okta || 'Okta',
to: '/auth/okta',
disabled: Boolean(user.value?.okta),
icon: 'i-simple-icons-okta',
},
].map(p => ({
...p,
prefetch: false,
Expand Down
1 change: 1 addition & 0 deletions playground/auth.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ declare module '#auth-utils' {
hubspot?: string
atlassian?: string
apple?: string
okta?: string
}

interface UserSession {
Expand Down
15 changes: 15 additions & 0 deletions playground/server/routes/auth/okta.get.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
export default defineOAuthOktaEventHandler({
config: {
emailRequired: true,
},
async onSuccess(event, { user }) {
await setUserSession(event, {
user: {
email: user.email,
},
loggedInAt: Date.now(),
})

return sendRedirect(event, '/')
},
})
7 changes: 7 additions & 0 deletions src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,13 @@ export default defineNuxtModule<ModuleOptions>({
clientSecret: '',
redirectURL: '',
})
// Okta OAuth
runtimeConfig.oauth.okta = defu(runtimeConfig.oauth.okta, {
clientId: '',
clientSecret: '',
domain: '',
redirectURL: '',
})

// Atproto OAuth
for (const provider of atprotoProviders) {
Expand Down
111 changes: 111 additions & 0 deletions src/runtime/server/lib/oauth/okta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
import type { H3Event } from 'h3'
import { eventHandler, getQuery, sendRedirect } from 'h3'
import { withQuery } from 'ufo'
import { defu } from 'defu'
import { handleMissingConfiguration, handleAccessTokenErrorResponse, getOAuthRedirectURL, requestAccessToken } from '../utils'
import { useRuntimeConfig } from '#imports'
import type { OAuthConfig } from '#auth-utils'

export interface OAuthOktaConfig {
/**
* Okta OAuth Client ID
* @default process.env.NUXT_OAUTH_OKTA_CLIENT_ID
*/
clientId?: string
/**
* Okta OAuth Client Secret
* @default process.env.NUXT_OAUTH_OKTA_CLIENT_SECRET
*/
clientSecret?: string
/**
* Okta OAuth Client Secret
* @default process.env.NUXT_OAUTH_OKTA_DOMAIN
*/
domain?: string
/**
* Okta OAuth Scope
* @default []
* @see https://developer.okta.com/docs/guides/implement-oauth-for-okta/main/#scopes-and-supported-endpoints
* @example ['okta.myAccount.email.read']
*/
scope?: string[]
/**
* Require email from user, adds the ['okta.myAccount.email.read'] scope if not present
* @default false
*/
emailRequired?: boolean

/**
* Redirect URL to to allow overriding for situations like prod failing to determine public hostname
* @default process.env.NUXT_OAUTH_OKTA_REDIRECT_URL
*/
redirectURL?: string
}

export function defineOAuthOktaEventHandler({ config, onSuccess, onError }: OAuthConfig<OAuthOktaConfig>) {
return eventHandler(async (event: H3Event) => {
config = defu(config, useRuntimeConfig(event).oauth?.okta, {
authorizationParams: {},
}) as OAuthOktaConfig

if (!config.clientId || !config.clientSecret || !config.domain) {
return handleMissingConfiguration(event, 'okta', ['clientId', 'clientSecret', 'domain'], onError)
}
const authorizationURL = `https://${config.domain}.okta.com/oauth2/v1/authorize`
const tokenURL = `https://${config.domain}.okta.com/oauth2/v1/token`

const query = getQuery<{ code?: string }>(event)
const redirectURL = config.redirectURL || getOAuthRedirectURL(event)

if (!query.code) {
config.scope = config.scope || []
if (config.emailRequired && !config.scope.includes('okta.myAccount.email.read')) {
config.scope.push('okta.myAccount.email.read')
}

return sendRedirect(
event,
withQuery(authorizationURL as string, {
client_id: config.clientId,
redirect_uri: redirectURL,
response_type: 'code',
scope: config.scope.join(' '),
state: 'foo',
}),
)
}

const tokens = await requestAccessToken(tokenURL as string, {
body: {
grant_type: 'authorization_code',
client_id: config.clientId,
client_secret: config.clientSecret,
redirect_uri: redirectURL,
code: query.code,
},
})

if (tokens.error) {
return handleAccessTokenErrorResponse(event, 'okta', tokens, onError)
}

const accessToken = tokens.access_token
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const emails: any[] = await $fetch(`https://${config.domain}.okta.com/idp/myaccount/emails`, {
headers: {
Accept: 'application/json; okta-version=1.0.0',
Authorization: `Bearer ${accessToken}`,
},
})

// eslint-disable-next-line @typescript-eslint/no-explicit-any
const user: any = {
email: emails[0]?.profile?.email,
}

return onSuccess(event, {
user,
tokens,
})
})
}
2 changes: 1 addition & 1 deletion src/runtime/types/oauth-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { H3Event, H3Error } from 'h3'

export type ATProtoProvider = 'bluesky'

export type OAuthProvider = ATProtoProvider | 'atlassian' | 'auth0' | 'authentik' | 'battledotnet' | 'cognito' | 'discord' | 'dropbox' | 'facebook' | 'gitea' | 'github' | 'gitlab' | 'google' | 'hubspot' | 'instagram' | 'keycloak' | 'line' | 'linear' | 'linkedin' | 'microsoft' | 'paypal' | 'polar' | 'spotify' | 'seznam' | 'steam' | 'strava' | 'tiktok' | 'twitch' | 'vk' | 'workos' | 'x' | 'xsuaa' | 'yandex' | 'zitadel' | 'apple' | (string & {})
export type OAuthProvider = ATProtoProvider | 'atlassian' | 'auth0' | 'authentik' | 'battledotnet' | 'cognito' | 'discord' | 'dropbox' | 'facebook' | 'gitea' | 'github' | 'gitlab' | 'google' | 'hubspot' | 'instagram' | 'keycloak' | 'line' | 'linear' | 'linkedin' | 'microsoft' | 'paypal' | 'polar' | 'spotify' | 'seznam' | 'steam' | 'strava' | 'tiktok' | 'twitch' | 'vk' | 'workos' | 'x' | 'xsuaa' | 'yandex' | 'zitadel' | 'apple' | 'okta' | (string & {})

export type OnError = (event: H3Event, error: H3Error) => Promise<void> | void

Expand Down
Loading