Files
amaoke.app/src/routes/api/auth/login/+server.ts
T
2025-11-25 10:16:59 +08:00

23 lines
692 B
TypeScript

import { error, json } from '@sveltejs/kit'
import { loginWithSyncCode } from '$lib/server/user'
import type { RequestHandler } from './$types'
export const POST: RequestHandler = async ({ request, cookies }) => {
const { code } = await request.json()
if (!code) throw error(400, 'Missing sync code')
const ua = request.headers.get('user-agent') || 'unknown'
console.log(`Login attempt with sync code from UA: ${ua}`)
const session = await loginWithSyncCode(code, ua)
// Set session cookie
cookies.set('session', session, {
path: '/',
httpOnly: true,
sameSite: 'strict',
maxAge: 60 * 60 * 24 * 365 // 1 year
})
return json({ success: true })
}