d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
66 lines
1.9 KiB
TypeScript
66 lines
1.9 KiB
TypeScript
import { useContext } from 'react'
|
|
import { ssoClient } from '@better-auth/sso/client'
|
|
import { stripeClient } from '@better-auth/stripe/client'
|
|
import {
|
|
adminClient,
|
|
customSessionClient,
|
|
emailOTPClient,
|
|
genericOAuthClient,
|
|
organizationClient,
|
|
} from 'better-auth/client/plugins'
|
|
import { createAuthClient } from 'better-auth/react'
|
|
import type { auth } from '@/lib/auth'
|
|
import { env } from '@/lib/core/config/env'
|
|
import { isBillingEnabled, isOrganizationsEnabled } from '@/lib/core/config/env-flags'
|
|
import { getBaseUrl, getBrowserOrigin } from '@/lib/core/utils/urls'
|
|
import { SessionContext, type SessionHookResult } from '@/app/_shell/providers/session-provider'
|
|
|
|
function getAuthBaseUrl(): string {
|
|
return getBrowserOrigin() ?? getBaseUrl()
|
|
}
|
|
|
|
export const client = createAuthClient({
|
|
baseURL: getAuthBaseUrl(),
|
|
plugins: [
|
|
adminClient(),
|
|
emailOTPClient(),
|
|
genericOAuthClient(),
|
|
customSessionClient<typeof auth>(),
|
|
...(isBillingEnabled
|
|
? [
|
|
stripeClient({
|
|
subscription: true, // Enable subscription management
|
|
}),
|
|
]
|
|
: []),
|
|
...(isOrganizationsEnabled ? [organizationClient()] : []),
|
|
...(env.NEXT_PUBLIC_SSO_ENABLED ? [ssoClient()] : []),
|
|
],
|
|
})
|
|
|
|
export function useSession(): SessionHookResult {
|
|
const ctx = useContext(SessionContext)
|
|
if (!ctx) {
|
|
throw new Error(
|
|
'SessionProvider is not mounted. Wrap your app with <SessionProvider> in app/layout.tsx.'
|
|
)
|
|
}
|
|
return ctx
|
|
}
|
|
|
|
export const useActiveOrganization = isOrganizationsEnabled
|
|
? client.useActiveOrganization
|
|
: () => ({ data: undefined, isPending: false, error: null })
|
|
|
|
export const useSubscription = () => {
|
|
return {
|
|
list: client.subscription?.list,
|
|
upgrade: client.subscription?.upgrade,
|
|
cancel: client.subscription?.cancel,
|
|
restore: client.subscription?.restore,
|
|
}
|
|
}
|
|
|
|
const { signIn, signUp, signOut } = client
|
|
export { signOut }
|