- api-auth.ts was al aanwezig; demo-check toegevoegd per endpoint (ST-401) - Token aanmaken (SHA-256 hash, eenmalig tonen), intrekken, max 10 (ST-402) - GET /api/products actieve productenlijst (ST-403) - GET /api/products/:id/next-story hoogst geprioriteerde open story (ST-404) - GET /api/sprints/:id/tasks met limit parameter (ST-405) - PATCH /api/stories/:id/tasks/reorder met ID-validatie (ST-406) - POST /api/stories/:id/log met discriminatedUnion per type (ST-407) - PATCH /api/tasks/:id status bijwerken met cross-user bescherming (ST-408) - POST /api/todos via API aanmaken (ST-409) - StoryLog component met kleurcodering per type in story slide-over (ST-410) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
'use server'
|
|
|
|
import { revalidatePath } from 'next/cache'
|
|
import { cookies } from 'next/headers'
|
|
import { getIronSession } from 'iron-session'
|
|
import { createHash, randomBytes } from 'crypto'
|
|
import { prisma } from '@/lib/prisma'
|
|
import { SessionData, sessionOptions } from '@/lib/session'
|
|
|
|
async function getSession() {
|
|
return getIronSession<SessionData>(await cookies(), sessionOptions)
|
|
}
|
|
|
|
export async function createApiTokenAction(_prevState: unknown, formData: FormData) {
|
|
const session = await getSession()
|
|
if (!session.userId) return { error: 'Niet ingelogd' }
|
|
if (session.isDemo) return { error: 'Niet beschikbaar in demo-modus' }
|
|
|
|
const label = (formData.get('label') as string | null)?.trim() || null
|
|
|
|
// Max 10 active tokens
|
|
const activeCount = await prisma.apiToken.count({
|
|
where: { user_id: session.userId, revoked_at: null },
|
|
})
|
|
if (activeCount >= 10) return { error: 'Maximaal 10 actieve tokens toegestaan' }
|
|
|
|
const rawToken = randomBytes(32).toString('hex')
|
|
const tokenHash = createHash('sha256').update(rawToken).digest('hex')
|
|
|
|
await prisma.apiToken.create({
|
|
data: {
|
|
user_id: session.userId,
|
|
token_hash: tokenHash,
|
|
label,
|
|
},
|
|
})
|
|
|
|
revalidatePath('/settings/tokens')
|
|
// Return the raw token once — it won't be retrievable later
|
|
return { success: true, token: rawToken }
|
|
}
|
|
|
|
export async function revokeApiTokenAction(id: string) {
|
|
const session = await getSession()
|
|
if (!session.userId) return { error: 'Niet ingelogd' }
|
|
if (session.isDemo) return { error: 'Niet beschikbaar in demo-modus' }
|
|
|
|
const token = await prisma.apiToken.findFirst({
|
|
where: { id, user_id: session.userId },
|
|
})
|
|
if (!token) return { error: 'Token niet gevonden' }
|
|
|
|
await prisma.apiToken.update({
|
|
where: { id },
|
|
data: { revoked_at: new Date() },
|
|
})
|
|
|
|
revalidatePath('/settings/tokens')
|
|
return { success: true }
|
|
}
|