71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server'
|
|
import { PrismaClient } from '@prisma/client'
|
|
|
|
const prisma = new PrismaClient()
|
|
|
|
export async function GET(request: NextRequest) {
|
|
try {
|
|
const { searchParams } = new URL(request.url)
|
|
const type = searchParams.get('type') || 'all'
|
|
|
|
console.log(`🔍 使用 SQL 即時數據獲取: type=${type}`)
|
|
|
|
// 使用原始 SQL 查詢避免 Prisma 的排序問題
|
|
let wishes
|
|
if (type === 'public') {
|
|
wishes = await prisma.$queryRaw`
|
|
SELECT id, title, current_pain, expected_solution, expected_effect,
|
|
is_public, email, images, user_session, status, category, priority,
|
|
created_at, updated_at
|
|
FROM wishes
|
|
WHERE is_public = true AND status = 'active'
|
|
LIMIT 100
|
|
`
|
|
} else {
|
|
wishes = await prisma.$queryRaw`
|
|
SELECT id, title, current_pain, expected_solution, expected_effect,
|
|
is_public, email, images, user_session, status, category, priority,
|
|
created_at, updated_at
|
|
FROM wishes
|
|
WHERE status = 'active'
|
|
LIMIT 100
|
|
`
|
|
}
|
|
|
|
console.log(`✅ 成功獲取 ${(wishes as any[]).length} 筆困擾案例 (type: ${type})`)
|
|
|
|
// 轉換數據格式
|
|
const formattedWishes = (wishes as any[]).map((wish) => ({
|
|
id: Number(wish.id),
|
|
title: wish.title,
|
|
current_pain: wish.current_pain,
|
|
expected_solution: wish.expected_solution,
|
|
expected_effect: wish.expected_effect,
|
|
is_public: Boolean(wish.is_public),
|
|
email: wish.email,
|
|
images: wish.images,
|
|
user_session: wish.user_session,
|
|
status: wish.status,
|
|
category: wish.category,
|
|
priority: Number(wish.priority),
|
|
like_count: 0, // 暫時設為 0
|
|
created_at: wish.created_at ? new Date(wish.created_at).toISOString() : new Date().toISOString(),
|
|
updated_at: wish.updated_at ? new Date(wish.updated_at).toISOString() : new Date().toISOString()
|
|
}))
|
|
|
|
console.log(`✅ 成功從資料庫獲取 ${formattedWishes.length} 筆即時數據`)
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
data: formattedWishes
|
|
})
|
|
|
|
} catch (error) {
|
|
console.error('API Error:', error)
|
|
return NextResponse.json(
|
|
{ success: false, error: error.message },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
}
|