revert: purchase/analysis NAS 기반으로 원복 (maxDuration 추가)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-20 02:23:24 +09:00
parent f8bfc74d02
commit d29cdbcd82
4 changed files with 31 additions and 194 deletions

View File

@@ -1,50 +1,25 @@
import { NextResponse } from 'next/server';
import { createClient } from '@/lib/supabase/server';
import { requireSubscription } from '../../_nas';
import { nasPut, nasDelete, requireSubscription, handleNasError } from '../../_nas';
export const maxDuration = 60;
export async function PUT(request: Request, { params }: { params: Promise<{ id: string }> }) {
try {
const auth = await requireSubscription();
if (auth instanceof NextResponse) return auth;
const supabase = await createClient();
const { id } = await params;
const body = await request.json();
const { data, error } = await supabase
.from('lotto_purchases')
.update({ prize: body.prize, note: body.note })
.eq('id', parseInt(id))
.eq('user_id', auth.userId) // 본인 데이터만 수정
.select()
.single();
if (error) throw error;
const data = await nasPut(`/api/lotto/purchase/${id}`, body);
return NextResponse.json(data);
} catch (err) {
console.error('[purchase PUT]', err);
return NextResponse.json({ error: 'DB_ERROR' }, { status: 500 });
}
} catch (err) { return handleNasError(err); }
}
export async function DELETE(_req: Request, { params }: { params: Promise<{ id: string }> }) {
try {
const auth = await requireSubscription();
if (auth instanceof NextResponse) return auth;
const supabase = await createClient();
const { id } = await params;
const { error } = await supabase
.from('lotto_purchases')
.delete()
.eq('id', parseInt(id))
.eq('user_id', auth.userId); // 본인 데이터만 삭제
if (error) throw error;
return NextResponse.json({ ok: true });
} catch (err) {
console.error('[purchase DELETE]', err);
return NextResponse.json({ error: 'DB_ERROR' }, { status: 500 });
}
const data = await nasDelete(`/api/lotto/purchase/${id}`);
return NextResponse.json(data);
} catch (err) { return handleNasError(err); }
}