headplane/app/routes/login.tsx

169 lines
4.5 KiB
TypeScript
Raw Normal View History

2024-03-26 11:11:12 -04:00
import { type ActionFunctionArgs, json, type LoaderFunctionArgs, redirect } from '@remix-run/node'
2024-03-30 02:44:06 -04:00
import { Form, useActionData, useLoaderData } from '@remix-run/react'
2024-03-25 17:51:11 -04:00
import { useMemo } from 'react'
2024-03-30 02:46:21 -04:00
import Button from '~/components/Button'
import Card from '~/components/Card'
import Code from '~/components/Code'
import TextField from '~/components/TextField'
2024-03-30 02:44:06 -04:00
import { type Key } from '~/types'
import { getContext } from '~/utils/config'
2024-03-26 11:11:12 -04:00
import { pull } from '~/utils/headscale'
2024-03-25 17:51:11 -04:00
import { startOidc } from '~/utils/oidc'
2024-03-26 11:11:12 -04:00
import { commitSession, getSession } from '~/utils/sessions'
2024-03-25 17:51:11 -04:00
export async function loader({ request }: LoaderFunctionArgs) {
2024-03-26 11:11:12 -04:00
const session = await getSession(request.headers.get('Cookie'))
if (session.has('hsApiKey')) {
return redirect('/machines', {
headers: {
// eslint-disable-next-line @typescript-eslint/naming-convention
'Set-Cookie': await commitSession(session)
}
})
}
const context = await getContext()
const issuer = context.oidcConfig?.issuer
const id = context.oidcConfig?.client
const secret = context.oidcConfig?.secret
2024-03-25 17:51:11 -04:00
const normal = process.env.DISABLE_API_KEY_LOGIN
if (issuer && (!id || !secret)) {
throw new Error('An invalid OIDC configuration was provided')
}
const data = {
oidc: issuer,
apiKey: normal === undefined
}
if (!data.oidc && !data.apiKey) {
throw new Error('No authentication method is enabled')
}
if (data.oidc && !data.apiKey) {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
return startOidc(data.oidc, id!, request)
}
return data
}
2024-03-26 11:11:12 -04:00
export async function action({ request }: ActionFunctionArgs) {
const formData = await request.formData()
const oidcStart = formData.get('oidc-start')
2024-03-30 02:44:06 -04:00
if (oidcStart) {
const context = await getContext()
const issuer = context.oidcConfig?.issuer
const id = context.oidcConfig?.client
// We know it exists here because this action only happens on OIDC
2024-03-30 02:44:06 -04:00
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
return startOidc(issuer!, id!, request)
}
2024-03-26 11:11:12 -04:00
const apiKey = String(formData.get('api-key'))
const session = await getSession(request.headers.get('Cookie'))
// Test the API key
try {
2024-03-30 02:44:06 -04:00
const apiKeys = await pull<{ apiKeys: Key[] }>('v1/apikey', apiKey)
const key = apiKeys.apiKeys.find(k => apiKey.startsWith(k.prefix))
if (!key) {
throw new Error('Invalid API key')
}
const expiry = new Date(key.expiration)
const expiresIn = expiry.getTime() - Date.now()
const expiresDays = Math.round(expiresIn / 1000 / 60 / 60 / 24)
session.set('hsApiKey', apiKey)
session.set('user', {
name: key.prefix,
email: `${expiresDays} days`
})
return redirect('/machines', {
headers: {
// eslint-disable-next-line @typescript-eslint/naming-convention
'Set-Cookie': await commitSession(session, {
maxAge: expiresIn
})
2024-03-30 02:44:06 -04:00
}
})
2024-03-26 11:11:12 -04:00
} catch (error) {
console.error(error)
return json({
error: 'Invalid API key'
})
}
}
2024-03-25 17:51:11 -04:00
export default function Page() {
const data = useLoaderData<typeof loader>()
2024-03-26 11:11:12 -04:00
const actionData = useActionData<typeof action>()
2024-03-25 17:51:11 -04:00
const showOr = useMemo(() => data.oidc && data.apiKey, [data])
return (
<div className='flex min-h-screen items-center justify-center'>
<Card className='max-w-sm m-4 sm:m-0 rounded-2xl'>
<Card.Title>
Welcome to Headplane
</Card.Title>
2024-03-25 17:51:11 -04:00
{data.apiKey ? (
2024-03-26 11:11:12 -04:00
<Form method='post'>
<Card.Text className='mb-8 text-sm'>
2024-03-25 17:51:11 -04:00
Enter an API key to authenticate with Headplane. You can generate
one by running
{' '}
<Code>
2024-03-25 17:51:11 -04:00
headscale apikeys create
</Code>
2024-03-25 17:51:11 -04:00
{' '}
in your terminal.
</Card.Text>
2024-03-25 17:51:11 -04:00
2024-03-26 11:11:12 -04:00
{actionData?.error ? (
<p className='text-red-500 text-sm mb-2'>{actionData.error}</p>
) : undefined}
<TextField
isRequired
label='API Key'
2024-03-26 11:11:12 -04:00
name='api-key'
2024-03-25 17:51:11 -04:00
placeholder='API Key'
/>
2024-03-30 02:46:21 -04:00
<Button
className='w-full mt-2.5'
variant='heavy'
2024-03-26 11:11:12 -04:00
type='submit'
>
Login
2024-03-30 02:46:21 -04:00
</Button>
2024-03-26 11:11:12 -04:00
</Form>
2024-03-25 17:51:11 -04:00
) : undefined}
{showOr ? (
<div className='flex items-center gap-x-1.5 py-1'>
<hr className='flex-1 border-ui-300 dark:border-ui-800'/>
<span className='text-gray-500 text-sm'>or</span>
<hr className='flex-1 border-ui-300 dark:border-ui-800'/>
2024-03-25 17:51:11 -04:00
</div>
) : undefined}
{data.oidc ? (
2024-03-30 02:44:06 -04:00
<Form method='POST'>
<input type='hidden' name='oidc-start' value='true'/>
2024-03-30 02:46:21 -04:00
<Button
className='w-full'
variant='heavy'
2024-03-30 02:46:21 -04:00
type='submit'
>
2024-03-25 17:51:11 -04:00
Login with SSO
2024-03-30 02:46:21 -04:00
</Button>
2024-03-30 02:44:06 -04:00
</Form>
2024-03-25 17:51:11 -04:00
) : undefined}
2024-03-30 02:46:21 -04:00
</Card>
2024-03-25 17:51:11 -04:00
</div>
)
}