mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-12 23:33:43 +08:00
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import {
|
|
createManagedAccount,
|
|
getPublicAuthConfig,
|
|
getServerSession,
|
|
isSuperAdminSession,
|
|
listAccountInfo,
|
|
} from '@/lib/server/auth';
|
|
|
|
export const runtime = 'edge';
|
|
|
|
async function requireSuperAdmin(request: NextRequest) {
|
|
const session = await getServerSession(request);
|
|
if (!session) {
|
|
return { error: NextResponse.json({ error: 'Authentication required' }, { status: 401 }) };
|
|
}
|
|
|
|
if (!isSuperAdminSession(session)) {
|
|
return { error: NextResponse.json({ error: 'Super admin required' }, { status: 403 }) };
|
|
}
|
|
|
|
return { session };
|
|
}
|
|
|
|
export async function GET(request: NextRequest) {
|
|
const auth = await requireSuperAdmin(request);
|
|
if ('error' in auth) {
|
|
return auth.error;
|
|
}
|
|
|
|
const config = await getPublicAuthConfig();
|
|
const accounts = await listAccountInfo();
|
|
|
|
return NextResponse.json({
|
|
loginMode: config.loginMode,
|
|
managed: config.loginMode === 'managed',
|
|
accounts,
|
|
totalCount: accounts.length,
|
|
});
|
|
}
|
|
|
|
export async function POST(request: NextRequest) {
|
|
const auth = await requireSuperAdmin(request);
|
|
if ('error' in auth) {
|
|
return auth.error;
|
|
}
|
|
|
|
const config = await getPublicAuthConfig();
|
|
if (config.loginMode !== 'managed') {
|
|
return NextResponse.json({ error: 'Managed account mode is not enabled' }, { status: 400 });
|
|
}
|
|
|
|
try {
|
|
const body = await request.json();
|
|
const account = await createManagedAccount(body);
|
|
return NextResponse.json({ account }, { status: 201 });
|
|
} catch (error) {
|
|
return NextResponse.json(
|
|
{ error: error instanceof Error ? error.message : 'Failed to create account' },
|
|
{ status: 400 }
|
|
);
|
|
}
|
|
}
|