51aa8df010
* Set up read API using Vercel serverless functions Featuring: /api/v0/markets /api/v0/market/[contractId] /api/v0/slug/[contractSlug] * Include tags in API
33 lines
950 B
TypeScript
33 lines
950 B
TypeScript
import { NextApiRequest, NextApiResponse } from 'next'
|
|
import { listAllBets } from '../../../../lib/firebase/bets'
|
|
import { listAllComments } from '../../../../lib/firebase/comments'
|
|
import { getContractFromId } from '../../../../lib/firebase/contracts'
|
|
import { FullContract, ApiError, toLiteContract } from '../_types'
|
|
|
|
export default async function handler(
|
|
req: NextApiRequest,
|
|
res: NextApiResponse<FullContract | ApiError>
|
|
) {
|
|
const { id } = req.query
|
|
const contractId = id as string
|
|
|
|
const [contract, bets, comments] = await Promise.all([
|
|
getContractFromId(contractId),
|
|
listAllBets(contractId),
|
|
listAllComments(contractId),
|
|
])
|
|
|
|
if (!contract) {
|
|
res.status(404).json({ error: 'Contract not found' })
|
|
return
|
|
}
|
|
|
|
// Cache on Vercel edge servers for 2min
|
|
res.setHeader('Cache-Control', 'max-age=0, s-maxage=120')
|
|
return res.status(200).json({
|
|
...toLiteContract(contract),
|
|
bets,
|
|
comments,
|
|
})
|
|
}
|